google-apis-discoveryengine_v1beta 0.18.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 115999d4dad12702a6bca4c86ba0eb63f23b5092e12cfaaccf2e5091fe96c16b
|
4
|
+
data.tar.gz: e3fe9cf08a151f85d4c9b6a97c3c580f22eb9a18568dd6791b525278e5c880d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81df4d76d084af8b8c79ed741afb85246552ecd9e86c21289b4c4295844cde9b572bdc97e054873d40c71283e87b5126a46414f4497e5cd6dbc50db000aebafe
|
7
|
+
data.tar.gz: 4dc40323b0c1a896ab94edba16db5d4005a89fe19b1b92db88fe31c2ac577a0a44c1fdffe49a74627d70c23e296b5b28faa922fe85808caf3f31432a7f18c3fc
|
data/CHANGELOG.md
CHANGED
@@ -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
|
2391
|
-
#
|
2392
|
-
#
|
2393
|
-
#
|
2394
|
-
#
|
2395
|
-
#
|
2396
|
-
#
|
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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|