Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Request message for SiteSearchEngineService.RecrawlUris method.
Instance Attribute Summary collapse
-
#site_credential ⇒ String
Optional.
-
#uris ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest
constructor
A new instance of GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest
Returns a new instance of GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest.
16975 16976 16977 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16975 def initialize(**args) update!(**args) end |
Instance Attribute Details
#site_credential ⇒ String
Optional. Full resource name of the SiteCredential, such as projects/*/
locations/*/collections/*/dataStores/*/siteSearchEngine/siteCredentials/*.
Only set to crawl private URIs.
Corresponds to the JSON property siteCredential
16966 16967 16968 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16966 def site_credential @site_credential end |
#uris ⇒ Array<String>
Required. List of URIs to crawl. At most 10K URIs are supported, otherwise an
INVALID_ARGUMENT error is thrown. Each URI should match at least one
TargetSite in site_search_engine.
Corresponds to the JSON property uris
16973 16974 16975 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16973 def uris @uris end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16980 16981 16982 16983 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 16980 def update!(**args) @site_credential = args[:site_credential] if args.key?(:site_credential) @uris = args[:uris] if args.key?(:uris) end |