google-apis-discoveryengine_v1beta 0.18.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2bd83417a240d66599c9dc7184c3d49b9ead22a3afc45121b839d9e1f5306b2
4
- data.tar.gz: d00743c987d9559ae085ad15581a238431459394cb3d01695e0e2e8593f2de5c
3
+ metadata.gz: 115999d4dad12702a6bca4c86ba0eb63f23b5092e12cfaaccf2e5091fe96c16b
4
+ data.tar.gz: e3fe9cf08a151f85d4c9b6a97c3c580f22eb9a18568dd6791b525278e5c880d9
5
5
  SHA512:
6
- metadata.gz: 501b2fc38488e08ed4661f70f5b379589b511585bf8b45a56406919b28b8fe6ae0599ba2f7170b2a9c55b4a8a825081dde5e1a0a9cdf868dd654823bacfdcea6
7
- data.tar.gz: 690453477073ac733e964346a42fcaf48b46549295b0563c6f4c2d96f1b28024202fdf6c7fb57ee27921aa59f1955f3ced2a0e449b9e2c58851e900ebaa8713b
6
+ metadata.gz: 81df4d76d084af8b8c79ed741afb85246552ecd9e86c21289b4c4295844cde9b572bdc97e054873d40c71283e87b5126a46414f4497e5cd6dbc50db000aebafe
7
+ data.tar.gz: 4dc40323b0c1a896ab94edba16db5d4005a89fe19b1b92db88fe31c2ac577a0a44c1fdffe49a74627d70c23e296b5b28faa922fe85808caf3f31432a7f18c3fc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.19.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230803
6
+
3
7
  ### v0.18.0 (2023-07-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230713
@@ -891,6 +891,31 @@ module Google
891
891
  end
892
892
  end
893
893
 
894
+ # Verification information for target sites in advanced site search.
895
+ class GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
896
+ include Google::Apis::Core::Hashable
897
+
898
+ # Site verification state indicating the ownership and validity.
899
+ # Corresponds to the JSON property `siteVerificationState`
900
+ # @return [String]
901
+ attr_accessor :site_verification_state
902
+
903
+ # Latest site verification time.
904
+ # Corresponds to the JSON property `verifyTime`
905
+ # @return [String]
906
+ attr_accessor :verify_time
907
+
908
+ def initialize(**args)
909
+ update!(**args)
910
+ end
911
+
912
+ # Update properties of this object
913
+ def update!(**args)
914
+ @site_verification_state = args[:site_verification_state] if args.key?(:site_verification_state)
915
+ @verify_time = args[:verify_time] if args.key?(:verify_time)
916
+ end
917
+ end
918
+
894
919
  # A target site for the SiteSearchEngine.
895
920
  class GoogleCloudDiscoveryengineV1alphaTargetSite
896
921
  include Google::Apis::Core::Hashable
@@ -925,6 +950,11 @@ module Google
925
950
  # @return [String]
926
951
  attr_accessor :provided_uri_pattern
927
952
 
953
+ # Verification information for target sites in advanced site search.
954
+ # Corresponds to the JSON property `siteVerificationInfo`
955
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo]
956
+ attr_accessor :site_verification_info
957
+
928
958
  # The type of the target site, e.g. whether the site is to be included or
929
959
  # excluded.
930
960
  # Corresponds to the JSON property `type`
@@ -946,6 +976,7 @@ module Google
946
976
  @generated_uri_pattern = args[:generated_uri_pattern] if args.key?(:generated_uri_pattern)
947
977
  @name = args[:name] if args.key?(:name)
948
978
  @provided_uri_pattern = args[:provided_uri_pattern] if args.key?(:provided_uri_pattern)
979
+ @site_verification_info = args[:site_verification_info] if args.key?(:site_verification_info)
949
980
  @type = args[:type] if args.key?(:type)
950
981
  @update_time = args[:update_time] if args.key?(:update_time)
951
982
  end
@@ -2387,13 +2418,13 @@ module Google
2387
2418
  # @return [String]
2388
2419
  attr_accessor :name
2389
2420
 
2390
- # The normal response of the operation in case of success. If the original
2391
- # method returns no data on success, such as `Delete`, the response is `google.
2392
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
2393
- # the response should be the resource. For other methods, the response should
2394
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
2395
- # example, if the original method name is `TakeSnapshot()`, the inferred
2396
- # response type is `TakeSnapshotResponse`.
2421
+ # The normal, successful response of the operation. If the original method
2422
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
2423
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
2424
+ # response should be the resource. For other methods, the response should have
2425
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
2426
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
2427
+ # `TakeSnapshotResponse`.
2397
2428
  # Corresponds to the JSON property `response`
2398
2429
  # @return [Hash<String,Object>]
2399
2430
  attr_accessor :response
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1beta
18
18
  # Version of the google-apis-discoveryengine_v1beta gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230713"
25
+ REVISION = "20230803"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class GoogleCloudDiscoveryengineV1alphaTargetSite
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -639,6 +645,14 @@ module Google
639
645
  end
640
646
  end
641
647
 
648
+ class GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
649
+ # @private
650
+ class Representation < Google::Apis::Core::JsonRepresentation
651
+ property :site_verification_state, as: 'siteVerificationState'
652
+ property :verify_time, as: 'verifyTime'
653
+ end
654
+ end
655
+
642
656
  class GoogleCloudDiscoveryengineV1alphaTargetSite
643
657
  # @private
644
658
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -646,6 +660,8 @@ module Google
646
660
  property :generated_uri_pattern, as: 'generatedUriPattern'
647
661
  property :name, as: 'name'
648
662
  property :provided_uri_pattern, as: 'providedUriPattern'
663
+ property :site_verification_info, as: 'siteVerificationInfo', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo::Representation
664
+
649
665
  property :type, as: 'type'
650
666
  property :update_time, as: 'updateTime'
651
667
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-23 00:00:00.000000000 Z
11
+ date: 2023-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []