Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaTargetSite
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaTargetSite
- 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
A target site for the SiteSearchEngine.
Instance Attribute Summary collapse
-
#exact_match ⇒ Boolean
(also: #exact_match?)
Input only.
-
#failure_reason ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaTargetSiteFailureReason
Site search indexing failure reasons.
-
#generated_uri_pattern ⇒ String
Output only.
-
#indexing_status ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#provided_uri_pattern ⇒ String
Required.
-
#site_verification_info ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSiteVerificationInfo
Verification information for target sites in advanced site search.
-
#type ⇒ String
The type of the target site, e.g., whether the site is to be included or excluded.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaTargetSite
constructor
A new instance of GoogleCloudDiscoveryengineV1betaTargetSite.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaTargetSite
Returns a new instance of GoogleCloudDiscoveryengineV1betaTargetSite.
8313 8314 8315 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8313 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exact_match ⇒ Boolean Also known as: exact_match?
Input only. If set to false, a uri_pattern is generated to include all pages
whose address contains the provided_uri_pattern. If set to true, an
uri_pattern is generated to try to be an exact match of the
provided_uri_pattern or just the specific page if the provided_uri_pattern is
a specific one. provided_uri_pattern is always normalized to generate the URI
pattern to be used by the search engine.
Corresponds to the JSON property exactMatch
8265 8266 8267 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8265 def exact_match @exact_match end |
#failure_reason ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaTargetSiteFailureReason
Site search indexing failure reasons.
Corresponds to the JSON property failureReason
8271 8272 8273 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8271 def failure_reason @failure_reason end |
#generated_uri_pattern ⇒ String
Output only. This is system-generated based on the provided_uri_pattern.
Corresponds to the JSON property generatedUriPattern
8276 8277 8278 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8276 def generated_uri_pattern @generated_uri_pattern end |
#indexing_status ⇒ String
Output only. Indexing status.
Corresponds to the JSON property indexingStatus
8281 8282 8283 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8281 def indexing_status @indexing_status end |
#name ⇒ String
Output only. The fully qualified resource name of the target site. projects/
project/locations/location/collections/collection/dataStores/data_store/
siteSearchEngine/targetSites/target_site`Thetarget_site_idis system-
generated.
Corresponds to the JSON propertyname`
8289 8290 8291 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8289 def name @name end |
#provided_uri_pattern ⇒ String
Required. Input only. The user provided URI pattern from which the
generated_uri_pattern is generated.
Corresponds to the JSON property providedUriPattern
8295 8296 8297 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8295 def provided_uri_pattern @provided_uri_pattern end |
#site_verification_info ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSiteVerificationInfo
Verification information for target sites in advanced site search.
Corresponds to the JSON property siteVerificationInfo
8300 8301 8302 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8300 def site_verification_info @site_verification_info end |
#type ⇒ String
The type of the target site, e.g., whether the site is to be included or
excluded.
Corresponds to the JSON property type
8306 8307 8308 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8306 def type @type end |
#update_time ⇒ String
Output only. The target site's last updated time.
Corresponds to the JSON property updateTime
8311 8312 8313 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8311 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8318 def update!(**args) @exact_match = args[:exact_match] if args.key?(:exact_match) @failure_reason = args[:failure_reason] if args.key?(:failure_reason) @generated_uri_pattern = args[:generated_uri_pattern] if args.key?(:generated_uri_pattern) @indexing_status = args[:indexing_status] if args.key?(:indexing_status) @name = args[:name] if args.key?(:name) @provided_uri_pattern = args[:provided_uri_pattern] if args.key?(:provided_uri_pattern) @site_verification_info = args[:site_verification_info] if args.key?(:site_verification_info) @type = args[:type] if args.key?(:type) @update_time = args[:update_time] if args.key?(:update_time) end |