google-apis-discoveryengine_v1alpha 0.16.0 → 0.17.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: a243d8afd14a1c706d7b48985e19e4d04cc1eb7c7fc2cf3049c1f7e66294f4fb
4
- data.tar.gz: 96228ad293e85f752c57725becbc6e1c5c4083abc37b33fccc757a14c912264b
3
+ metadata.gz: 3d6d6f3b5ba9ca11fba36756e70de7db286b0b564c7adbb802147467787c22ec
4
+ data.tar.gz: 60498eaae73164e01a2e0d4a394ee049c7156b830934ea17ce33c4d97be89df8
5
5
  SHA512:
6
- metadata.gz: 0fedd914dd1f27e3d1e6f8ef9f9abb5c4a54efea11da2d61f974a575e0c216dbdbf5e1fe3018e773fa9543331c12a8324e02135f80ee31001d10b48ff55a424d
7
- data.tar.gz: c50619ab9a4829b900498cd29246ba91f352d798157794ea6c131a9a371b9f1149380e7bb9f59f31bc39ac3df5e52418dcb9fb7aadd50d7ebba0e322c37460c2
6
+ metadata.gz: ffe81e722b6d096c6ea89b43468f7de1bbc9eba4e0b2aee4e841f0d9b16b0aa7cf37b613d990bd15c5a79e7d4fb6b8b049b95d0ef35fa667ae8add034e7fe355
7
+ data.tar.gz: 9df50482177018ac66a285cf00274a6155c60eed6b416a7d8e1df2c4948f0da5b1a652fb0d41ead2a77addb8c5f0be981595360ceed163de0b40b9b4b3a14570
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.17.0 (2023-08-06)
4
+
5
+ * Regenerated from discovery document revision 20230801
6
+
3
7
  ### v0.16.0 (2023-07-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230713
@@ -1747,6 +1747,31 @@ module Google
1747
1747
  end
1748
1748
  end
1749
1749
 
1750
+ # Verification information for target sites in advanced site search.
1751
+ class GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
1752
+ include Google::Apis::Core::Hashable
1753
+
1754
+ # Site verification state indicating the ownership and validity.
1755
+ # Corresponds to the JSON property `siteVerificationState`
1756
+ # @return [String]
1757
+ attr_accessor :site_verification_state
1758
+
1759
+ # Latest site verification time.
1760
+ # Corresponds to the JSON property `verifyTime`
1761
+ # @return [String]
1762
+ attr_accessor :verify_time
1763
+
1764
+ def initialize(**args)
1765
+ update!(**args)
1766
+ end
1767
+
1768
+ # Update properties of this object
1769
+ def update!(**args)
1770
+ @site_verification_state = args[:site_verification_state] if args.key?(:site_verification_state)
1771
+ @verify_time = args[:verify_time] if args.key?(:verify_time)
1772
+ end
1773
+ end
1774
+
1750
1775
  # A target site for the SiteSearchEngine.
1751
1776
  class GoogleCloudDiscoveryengineV1alphaTargetSite
1752
1777
  include Google::Apis::Core::Hashable
@@ -1781,6 +1806,11 @@ module Google
1781
1806
  # @return [String]
1782
1807
  attr_accessor :provided_uri_pattern
1783
1808
 
1809
+ # Verification information for target sites in advanced site search.
1810
+ # Corresponds to the JSON property `siteVerificationInfo`
1811
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo]
1812
+ attr_accessor :site_verification_info
1813
+
1784
1814
  # The type of the target site, e.g. whether the site is to be included or
1785
1815
  # excluded.
1786
1816
  # Corresponds to the JSON property `type`
@@ -1802,6 +1832,7 @@ module Google
1802
1832
  @generated_uri_pattern = args[:generated_uri_pattern] if args.key?(:generated_uri_pattern)
1803
1833
  @name = args[:name] if args.key?(:name)
1804
1834
  @provided_uri_pattern = args[:provided_uri_pattern] if args.key?(:provided_uri_pattern)
1835
+ @site_verification_info = args[:site_verification_info] if args.key?(:site_verification_info)
1805
1836
  @type = args[:type] if args.key?(:type)
1806
1837
  @update_time = args[:update_time] if args.key?(:update_time)
1807
1838
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1alpha
18
18
  # Version of the google-apis-discoveryengine_v1alpha gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.17.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 = "20230801"
26
26
  end
27
27
  end
28
28
  end
@@ -298,6 +298,12 @@ module Google
298
298
  include Google::Apis::Core::JsonObjectSupport
299
299
  end
300
300
 
301
+ class GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
301
307
  class GoogleCloudDiscoveryengineV1alphaTargetSite
302
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
309
 
@@ -848,6 +854,14 @@ module Google
848
854
  end
849
855
  end
850
856
 
857
+ class GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
858
+ # @private
859
+ class Representation < Google::Apis::Core::JsonRepresentation
860
+ property :site_verification_state, as: 'siteVerificationState'
861
+ property :verify_time, as: 'verifyTime'
862
+ end
863
+ end
864
+
851
865
  class GoogleCloudDiscoveryengineV1alphaTargetSite
852
866
  # @private
853
867
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -855,6 +869,8 @@ module Google
855
869
  property :generated_uri_pattern, as: 'generatedUriPattern'
856
870
  property :name, as: 'name'
857
871
  property :provided_uri_pattern, as: 'providedUriPattern'
872
+ property :site_verification_info, as: 'siteVerificationInfo', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo::Representation
873
+
858
874
  property :type, as: 'type'
859
875
  property :update_time, as: 'updateTime'
860
876
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.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-06 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []