google-apis-discoveryengine_v1beta 0.67.0 → 0.68.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/discoveryengine_v1beta/classes.rb +228 -13
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +85 -2
- data/lib/google/apis/discoveryengine_v1beta/service.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec504f63a249aa30f6f863cb389c41d7b69bc0716f58fa9b5bb6d859b4bef039
|
4
|
+
data.tar.gz: 97e2925e978a6c2fca42f2f366c10babcfa67ca3af3038381ea3275bb8ebc9e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ab707a06de964de12ecf6b1f06b10c551c81e01c9ef52348796d1114ab502fa16838bd94718fcd8f7bfab173739c84c624aaf3967f16e758d73bc9beb79d09e
|
7
|
+
data.tar.gz: 938ecf02895fe4490e574d8207564830df4d18fcff2ace125fc7ff10aa3f3296d52b9f3945ec269ba6bf742663395728322110da5a7d9a34611ad205831e96cd
|
data/CHANGELOG.md
CHANGED
@@ -914,6 +914,71 @@ module Google
|
|
914
914
|
end
|
915
915
|
end
|
916
916
|
|
917
|
+
# Metadata related to the progress of the UserLicenseService.
|
918
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
919
|
+
# longrunning.Operation.metadata field.
|
920
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
921
|
+
include Google::Apis::Core::Hashable
|
922
|
+
|
923
|
+
# Operation create time.
|
924
|
+
# Corresponds to the JSON property `createTime`
|
925
|
+
# @return [String]
|
926
|
+
attr_accessor :create_time
|
927
|
+
|
928
|
+
# Count of user licenses that failed to be updated.
|
929
|
+
# Corresponds to the JSON property `failureCount`
|
930
|
+
# @return [Fixnum]
|
931
|
+
attr_accessor :failure_count
|
932
|
+
|
933
|
+
# Count of user licenses successfully updated.
|
934
|
+
# Corresponds to the JSON property `successCount`
|
935
|
+
# @return [Fixnum]
|
936
|
+
attr_accessor :success_count
|
937
|
+
|
938
|
+
# Operation last update time. If the operation is done, this is also the finish
|
939
|
+
# time.
|
940
|
+
# Corresponds to the JSON property `updateTime`
|
941
|
+
# @return [String]
|
942
|
+
attr_accessor :update_time
|
943
|
+
|
944
|
+
def initialize(**args)
|
945
|
+
update!(**args)
|
946
|
+
end
|
947
|
+
|
948
|
+
# Update properties of this object
|
949
|
+
def update!(**args)
|
950
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
951
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
952
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
953
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
954
|
+
end
|
955
|
+
end
|
956
|
+
|
957
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
958
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
959
|
+
include Google::Apis::Core::Hashable
|
960
|
+
|
961
|
+
# A sample of errors encountered while processing the request.
|
962
|
+
# Corresponds to the JSON property `errorSamples`
|
963
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
|
964
|
+
attr_accessor :error_samples
|
965
|
+
|
966
|
+
# UserLicenses successfully updated.
|
967
|
+
# Corresponds to the JSON property `userLicenses`
|
968
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1UserLicense>]
|
969
|
+
attr_accessor :user_licenses
|
970
|
+
|
971
|
+
def initialize(**args)
|
972
|
+
update!(**args)
|
973
|
+
end
|
974
|
+
|
975
|
+
# Update properties of this object
|
976
|
+
def update!(**args)
|
977
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
978
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
979
|
+
end
|
980
|
+
end
|
981
|
+
|
917
982
|
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
918
983
|
class GoogleCloudDiscoveryengineV1CmekConfig
|
919
984
|
include Google::Apis::Core::Hashable
|
@@ -943,7 +1008,7 @@ module Google
|
|
943
1008
|
|
944
1009
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
945
1010
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
946
|
-
# `
|
1011
|
+
# `cmek_config``.
|
947
1012
|
# Corresponds to the JSON property `name`
|
948
1013
|
# @return [String]
|
949
1014
|
attr_accessor :name
|
@@ -4394,6 +4459,69 @@ module Google
|
|
4394
4459
|
end
|
4395
4460
|
end
|
4396
4461
|
|
4462
|
+
# User License information assigned by the admin.
|
4463
|
+
class GoogleCloudDiscoveryengineV1UserLicense
|
4464
|
+
include Google::Apis::Core::Hashable
|
4465
|
+
|
4466
|
+
# Output only. User created timestamp.
|
4467
|
+
# Corresponds to the JSON property `createTime`
|
4468
|
+
# @return [String]
|
4469
|
+
attr_accessor :create_time
|
4470
|
+
|
4471
|
+
# Output only. User last logged in time. If the user has not logged in yet, this
|
4472
|
+
# field will be empty.
|
4473
|
+
# Corresponds to the JSON property `lastLoginTime`
|
4474
|
+
# @return [String]
|
4475
|
+
attr_accessor :last_login_time
|
4476
|
+
|
4477
|
+
# Output only. License assignment state of the user. If the user is assigned
|
4478
|
+
# with a license config, the user loggin will be assigned with the license; If
|
4479
|
+
# the user's license assignment state is unassigned or unspecified, no license
|
4480
|
+
# config will be associated to the user;
|
4481
|
+
# Corresponds to the JSON property `licenseAssignmentState`
|
4482
|
+
# @return [String]
|
4483
|
+
attr_accessor :license_assignment_state
|
4484
|
+
|
4485
|
+
# Optional. The full resource name of the Subscription(LicenseConfig) assigned
|
4486
|
+
# to the user.
|
4487
|
+
# Corresponds to the JSON property `licenseConfig`
|
4488
|
+
# @return [String]
|
4489
|
+
attr_accessor :license_config
|
4490
|
+
|
4491
|
+
# Output only. User update timestamp.
|
4492
|
+
# Corresponds to the JSON property `updateTime`
|
4493
|
+
# @return [String]
|
4494
|
+
attr_accessor :update_time
|
4495
|
+
|
4496
|
+
# Required. Immutable. The user principal of the User, could be email address or
|
4497
|
+
# other prinical identifier. This field is immutable. Admin assign licenses
|
4498
|
+
# based on the user principal.
|
4499
|
+
# Corresponds to the JSON property `userPrincipal`
|
4500
|
+
# @return [String]
|
4501
|
+
attr_accessor :user_principal
|
4502
|
+
|
4503
|
+
# Optional. The user profile. We user user full name(First name + Last name) as
|
4504
|
+
# user profile.
|
4505
|
+
# Corresponds to the JSON property `userProfile`
|
4506
|
+
# @return [String]
|
4507
|
+
attr_accessor :user_profile
|
4508
|
+
|
4509
|
+
def initialize(**args)
|
4510
|
+
update!(**args)
|
4511
|
+
end
|
4512
|
+
|
4513
|
+
# Update properties of this object
|
4514
|
+
def update!(**args)
|
4515
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
4516
|
+
@last_login_time = args[:last_login_time] if args.key?(:last_login_time)
|
4517
|
+
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
4518
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
4519
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
4520
|
+
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
4521
|
+
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
4522
|
+
end
|
4523
|
+
end
|
4524
|
+
|
4397
4525
|
# Config to store data store type configuration for workspace data
|
4398
4526
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
4399
4527
|
include Google::Apis::Core::Hashable
|
@@ -5499,7 +5627,7 @@ module Google
|
|
5499
5627
|
|
5500
5628
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
5501
5629
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
5502
|
-
# `
|
5630
|
+
# `cmek_config``.
|
5503
5631
|
# Corresponds to the JSON property `name`
|
5504
5632
|
# @return [String]
|
5505
5633
|
attr_accessor :name
|
@@ -6500,13 +6628,13 @@ module Google
|
|
6500
6628
|
|
6501
6629
|
# Optional. The refresh interval specifically for incremental data syncs. If
|
6502
6630
|
# unset, incremental syncs will use the default from env, set to 3hrs. The
|
6503
|
-
# minimum is 30 minutes and maximum is 7 days.
|
6631
|
+
# minimum is 30 minutes and maximum is 7 days. Applicable to only 3P connectors.
|
6504
6632
|
# Corresponds to the JSON property `incrementalRefreshInterval`
|
6505
6633
|
# @return [String]
|
6506
6634
|
attr_accessor :incremental_refresh_interval
|
6507
6635
|
|
6508
6636
|
# Optional. Indicates whether incremental syncs are paused for this connector.
|
6509
|
-
# This is independent of auto_run_disabled.
|
6637
|
+
# This is independent of auto_run_disabled. Applicable to only 3P connectors.
|
6510
6638
|
# Corresponds to the JSON property `incrementalSyncDisabled`
|
6511
6639
|
# @return [Boolean]
|
6512
6640
|
attr_accessor :incremental_sync_disabled
|
@@ -8324,7 +8452,7 @@ module Google
|
|
8324
8452
|
class GoogleCloudDiscoveryengineV1alphaEvaluationEvaluationSpecQuerySetSpec
|
8325
8453
|
include Google::Apis::Core::Hashable
|
8326
8454
|
|
8327
|
-
#
|
8455
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
8328
8456
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
8329
8457
|
# sampleQuerySet``.
|
8330
8458
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -11562,6 +11690,19 @@ module Google
|
|
11562
11690
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery]
|
11563
11691
|
attr_accessor :query
|
11564
11692
|
|
11693
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
11694
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
11695
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
11696
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
11697
|
+
# information is used in particular when rendering alternative answers to the
|
11698
|
+
# same prompt, providing visual information about how each answer was generated.
|
11699
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
11700
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
11701
|
+
# services can use anything not starting with "google."
|
11702
|
+
# Corresponds to the JSON property `queryConfigs`
|
11703
|
+
# @return [Hash<String,String>]
|
11704
|
+
attr_accessor :query_configs
|
11705
|
+
|
11565
11706
|
def initialize(**args)
|
11566
11707
|
update!(**args)
|
11567
11708
|
end
|
@@ -11571,6 +11712,7 @@ module Google
|
|
11571
11712
|
@answer = args[:answer] if args.key?(:answer)
|
11572
11713
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
11573
11714
|
@query = args[:query] if args.key?(:query)
|
11715
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
11574
11716
|
end
|
11575
11717
|
end
|
11576
11718
|
|
@@ -14687,6 +14829,46 @@ module Google
|
|
14687
14829
|
end
|
14688
14830
|
end
|
14689
14831
|
|
14832
|
+
# Metadata related to the progress of the UserLicenseService.
|
14833
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
14834
|
+
# longrunning.Operation.metadata field.
|
14835
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
14836
|
+
include Google::Apis::Core::Hashable
|
14837
|
+
|
14838
|
+
# Operation create time.
|
14839
|
+
# Corresponds to the JSON property `createTime`
|
14840
|
+
# @return [String]
|
14841
|
+
attr_accessor :create_time
|
14842
|
+
|
14843
|
+
# Count of user licenses that failed to be updated.
|
14844
|
+
# Corresponds to the JSON property `failureCount`
|
14845
|
+
# @return [Fixnum]
|
14846
|
+
attr_accessor :failure_count
|
14847
|
+
|
14848
|
+
# Count of user licenses successfully updated.
|
14849
|
+
# Corresponds to the JSON property `successCount`
|
14850
|
+
# @return [Fixnum]
|
14851
|
+
attr_accessor :success_count
|
14852
|
+
|
14853
|
+
# Operation last update time. If the operation is done, this is also the finish
|
14854
|
+
# time.
|
14855
|
+
# Corresponds to the JSON property `updateTime`
|
14856
|
+
# @return [String]
|
14857
|
+
attr_accessor :update_time
|
14858
|
+
|
14859
|
+
def initialize(**args)
|
14860
|
+
update!(**args)
|
14861
|
+
end
|
14862
|
+
|
14863
|
+
# Update properties of this object
|
14864
|
+
def update!(**args)
|
14865
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
14866
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
14867
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
14868
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
14869
|
+
end
|
14870
|
+
end
|
14871
|
+
|
14690
14872
|
# Request message for UserLicenseService.BatchUpdateUserLicenses method.
|
14691
14873
|
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequest
|
14692
14874
|
include Google::Apis::Core::Hashable
|
@@ -14699,11 +14881,6 @@ module Google
|
|
14699
14881
|
attr_accessor :delete_unassigned_user_licenses
|
14700
14882
|
alias_method :delete_unassigned_user_licenses?, :delete_unassigned_user_licenses
|
14701
14883
|
|
14702
|
-
# Cloud Storage location for input content.
|
14703
|
-
# Corresponds to the JSON property `gcsSource`
|
14704
|
-
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaGcsSource]
|
14705
|
-
attr_accessor :gcs_source
|
14706
|
-
|
14707
14884
|
# The inline source for the input config for BatchUpdateUserLicenses method.
|
14708
14885
|
# Corresponds to the JSON property `inlineSource`
|
14709
14886
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequestInlineSource]
|
@@ -14716,7 +14893,6 @@ module Google
|
|
14716
14893
|
# Update properties of this object
|
14717
14894
|
def update!(**args)
|
14718
14895
|
@delete_unassigned_user_licenses = args[:delete_unassigned_user_licenses] if args.key?(:delete_unassigned_user_licenses)
|
14719
|
-
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
14720
14896
|
@inline_source = args[:inline_source] if args.key?(:inline_source)
|
14721
14897
|
end
|
14722
14898
|
end
|
@@ -14747,6 +14923,31 @@ module Google
|
|
14747
14923
|
end
|
14748
14924
|
end
|
14749
14925
|
|
14926
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
14927
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
14928
|
+
include Google::Apis::Core::Hashable
|
14929
|
+
|
14930
|
+
# A sample of errors encountered while processing the request.
|
14931
|
+
# Corresponds to the JSON property `errorSamples`
|
14932
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
|
14933
|
+
attr_accessor :error_samples
|
14934
|
+
|
14935
|
+
# UserLicenses successfully updated.
|
14936
|
+
# Corresponds to the JSON property `userLicenses`
|
14937
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense>]
|
14938
|
+
attr_accessor :user_licenses
|
14939
|
+
|
14940
|
+
def initialize(**args)
|
14941
|
+
update!(**args)
|
14942
|
+
end
|
14943
|
+
|
14944
|
+
# Update properties of this object
|
14945
|
+
def update!(**args)
|
14946
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
14947
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
14948
|
+
end
|
14949
|
+
end
|
14950
|
+
|
14750
14951
|
# Request message for SiteSearchEngineService.BatchVerifyTargetSites method.
|
14751
14952
|
class GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest
|
14752
14953
|
include Google::Apis::Core::Hashable
|
@@ -15514,7 +15715,7 @@ module Google
|
|
15514
15715
|
|
15515
15716
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
15516
15717
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
15517
|
-
# `
|
15718
|
+
# `cmek_config``.
|
15518
15719
|
# Corresponds to the JSON property `name`
|
15519
15720
|
# @return [String]
|
15520
15721
|
attr_accessor :name
|
@@ -18258,7 +18459,7 @@ module Google
|
|
18258
18459
|
class GoogleCloudDiscoveryengineV1betaEvaluationEvaluationSpecQuerySetSpec
|
18259
18460
|
include Google::Apis::Core::Hashable
|
18260
18461
|
|
18261
|
-
#
|
18462
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
18262
18463
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
18263
18464
|
# sampleQuerySet``.
|
18264
18465
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -24436,6 +24637,19 @@ module Google
|
|
24436
24637
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery]
|
24437
24638
|
attr_accessor :query
|
24438
24639
|
|
24640
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
24641
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
24642
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
24643
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
24644
|
+
# information is used in particular when rendering alternative answers to the
|
24645
|
+
# same prompt, providing visual information about how each answer was generated.
|
24646
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
24647
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
24648
|
+
# services can use anything not starting with "google."
|
24649
|
+
# Corresponds to the JSON property `queryConfigs`
|
24650
|
+
# @return [Hash<String,String>]
|
24651
|
+
attr_accessor :query_configs
|
24652
|
+
|
24439
24653
|
def initialize(**args)
|
24440
24654
|
update!(**args)
|
24441
24655
|
end
|
@@ -24445,6 +24659,7 @@ module Google
|
|
24445
24659
|
@answer = args[:answer] if args.key?(:answer)
|
24446
24660
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
24447
24661
|
@query = args[:query] if args.key?(:query)
|
24662
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
24448
24663
|
end
|
24449
24664
|
end
|
24450
24665
|
|
@@ -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.68.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250604"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -160,6 +160,18 @@ module Google
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
161
161
|
end
|
162
162
|
|
163
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
169
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
163
175
|
class GoogleCloudDiscoveryengineV1CmekConfig
|
164
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
177
|
|
@@ -718,6 +730,12 @@ module Google
|
|
718
730
|
include Google::Apis::Core::JsonObjectSupport
|
719
731
|
end
|
720
732
|
|
733
|
+
class GoogleCloudDiscoveryengineV1UserLicense
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
721
739
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
722
740
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
723
741
|
|
@@ -2362,6 +2380,12 @@ module Google
|
|
2362
2380
|
include Google::Apis::Core::JsonObjectSupport
|
2363
2381
|
end
|
2364
2382
|
|
2383
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
2384
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2385
|
+
|
2386
|
+
include Google::Apis::Core::JsonObjectSupport
|
2387
|
+
end
|
2388
|
+
|
2365
2389
|
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequest
|
2366
2390
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2367
2391
|
|
@@ -2374,6 +2398,12 @@ module Google
|
|
2374
2398
|
include Google::Apis::Core::JsonObjectSupport
|
2375
2399
|
end
|
2376
2400
|
|
2401
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
2402
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2403
|
+
|
2404
|
+
include Google::Apis::Core::JsonObjectSupport
|
2405
|
+
end
|
2406
|
+
|
2377
2407
|
class GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest
|
2378
2408
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2379
2409
|
|
@@ -4403,6 +4433,26 @@ module Google
|
|
4403
4433
|
end
|
4404
4434
|
end
|
4405
4435
|
|
4436
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
4437
|
+
# @private
|
4438
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4439
|
+
property :create_time, as: 'createTime'
|
4440
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
4441
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
4442
|
+
property :update_time, as: 'updateTime'
|
4443
|
+
end
|
4444
|
+
end
|
4445
|
+
|
4446
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
4447
|
+
# @private
|
4448
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4449
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
|
4450
|
+
|
4451
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1UserLicense, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1UserLicense::Representation
|
4452
|
+
|
4453
|
+
end
|
4454
|
+
end
|
4455
|
+
|
4406
4456
|
class GoogleCloudDiscoveryengineV1CmekConfig
|
4407
4457
|
# @private
|
4408
4458
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5325,6 +5375,19 @@ module Google
|
|
5325
5375
|
end
|
5326
5376
|
end
|
5327
5377
|
|
5378
|
+
class GoogleCloudDiscoveryengineV1UserLicense
|
5379
|
+
# @private
|
5380
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5381
|
+
property :create_time, as: 'createTime'
|
5382
|
+
property :last_login_time, as: 'lastLoginTime'
|
5383
|
+
property :license_assignment_state, as: 'licenseAssignmentState'
|
5384
|
+
property :license_config, as: 'licenseConfig'
|
5385
|
+
property :update_time, as: 'updateTime'
|
5386
|
+
property :user_principal, as: 'userPrincipal'
|
5387
|
+
property :user_profile, as: 'userProfile'
|
5388
|
+
end
|
5389
|
+
end
|
5390
|
+
|
5328
5391
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
5329
5392
|
# @private
|
5330
5393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7220,6 +7283,7 @@ module Google
|
|
7220
7283
|
|
7221
7284
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery::Representation
|
7222
7285
|
|
7286
|
+
hash :query_configs, as: 'queryConfigs'
|
7223
7287
|
end
|
7224
7288
|
end
|
7225
7289
|
|
@@ -8121,12 +8185,20 @@ module Google
|
|
8121
8185
|
end
|
8122
8186
|
end
|
8123
8187
|
|
8188
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
8189
|
+
# @private
|
8190
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8191
|
+
property :create_time, as: 'createTime'
|
8192
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
8193
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
8194
|
+
property :update_time, as: 'updateTime'
|
8195
|
+
end
|
8196
|
+
end
|
8197
|
+
|
8124
8198
|
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequest
|
8125
8199
|
# @private
|
8126
8200
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8127
8201
|
property :delete_unassigned_user_licenses, as: 'deleteUnassignedUserLicenses'
|
8128
|
-
property :gcs_source, as: 'gcsSource', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaGcsSource, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaGcsSource::Representation
|
8129
|
-
|
8130
8202
|
property :inline_source, as: 'inlineSource', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequestInlineSource, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequestInlineSource::Representation
|
8131
8203
|
|
8132
8204
|
end
|
@@ -8141,6 +8213,16 @@ module Google
|
|
8141
8213
|
end
|
8142
8214
|
end
|
8143
8215
|
|
8216
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
8217
|
+
# @private
|
8218
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8219
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
|
8220
|
+
|
8221
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense::Representation
|
8222
|
+
|
8223
|
+
end
|
8224
|
+
end
|
8225
|
+
|
8144
8226
|
class GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest
|
8145
8227
|
# @private
|
8146
8228
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10793,6 +10875,7 @@ module Google
|
|
10793
10875
|
|
10794
10876
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery::Representation
|
10795
10877
|
|
10878
|
+
hash :query_configs, as: 'queryConfigs'
|
10796
10879
|
end
|
10797
10880
|
end
|
10798
10881
|
|
@@ -241,7 +241,7 @@ module Google
|
|
241
241
|
# @param [String] name
|
242
242
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
243
243
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
244
|
-
# `
|
244
|
+
# `cmek_config``.
|
245
245
|
# @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig] google_cloud_discoveryengine_v1beta_cmek_config_object
|
246
246
|
# @param [Boolean] set_default
|
247
247
|
# Set the following CmekConfig as the default to be used for child resources if
|
@@ -379,7 +379,7 @@ module Google
|
|
379
379
|
# @param [String] name
|
380
380
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
381
381
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
382
|
-
# `
|
382
|
+
# `cmek_config``.
|
383
383
|
# @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig] google_cloud_discoveryengine_v1beta_cmek_config_object
|
384
384
|
# @param [Boolean] set_default
|
385
385
|
# Set the following CmekConfig as the default to be used for child resources if
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.68.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.68.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|