Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaTargetSite
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaTargetSite
- 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.
-
#generated_uri_pattern ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#provided_uri_pattern ⇒ String
Required.
-
#type ⇒ String
The type of the target site, e.g.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaTargetSite
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaTargetSite.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaTargetSite
Returns a new instance of GoogleCloudDiscoveryengineV1alphaTargetSite.
939 940 941 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 939 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
906 907 908 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 906 def exact_match @exact_match end |
#generated_uri_pattern ⇒ String
Output only. This is system-generated based on the provided_uri_pattern.
Corresponds to the JSON property generatedUriPattern
912 913 914 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 912 def generated_uri_pattern @generated_uri_pattern 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`
920 921 922 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 920 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
926 927 928 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 926 def provided_uri_pattern @provided_uri_pattern 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
932 933 934 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 932 def type @type end |
#update_time ⇒ String
Output only. The target site's last updated time.
Corresponds to the JSON property updateTime
937 938 939 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 937 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
944 945 946 947 948 949 950 951 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 944 def update!(**args) @exact_match = args[:exact_match] if args.key?(:exact_match) @generated_uri_pattern = args[:generated_uri_pattern] if args.key?(:generated_uri_pattern) @name = args[:name] if args.key?(:name) @provided_uri_pattern = args[:provided_uri_pattern] if args.key?(:provided_uri_pattern) @type = args[:type] if args.key?(:type) @update_time = args[:update_time] if args.key?(:update_time) end |