google-apis-discoveryengine_v1 0.39.0 → 0.40.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_v1/classes.rb +228 -13
- data/lib/google/apis/discoveryengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1/representations.rb +85 -2
- data/lib/google/apis/discoveryengine_v1/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: d885baa0b0af9d379d0ce9ec0a93dc5d826fd9d23d768624d0328a32a35a99d6
|
4
|
+
data.tar.gz: b081a42fe23c24550ff11d7d659298e0f32c3501b383a20fc36b3f7e15fcc7c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67dbf32f0e594a2e4d5d5a251bb32ccf599e146cf5c0436e47ce63c76dfea4ebf3728f862a59ea90ee6da6cd8c1facb20ffddd196becb3bb393ad9a8b8bcc83e
|
7
|
+
data.tar.gz: 5e49108f8999ff3e757d88c258eaa79cc49dcbe109ba51a17731bb1a3cc160d7cbbcacc1a465431a0e1b46a313a29259de3d2808a8f8b9ece02f63c1fe35606b
|
data/CHANGELOG.md
CHANGED
@@ -2657,6 +2657,46 @@ module Google
|
|
2657
2657
|
end
|
2658
2658
|
end
|
2659
2659
|
|
2660
|
+
# Metadata related to the progress of the UserLicenseService.
|
2661
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
2662
|
+
# longrunning.Operation.metadata field.
|
2663
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
2664
|
+
include Google::Apis::Core::Hashable
|
2665
|
+
|
2666
|
+
# Operation create time.
|
2667
|
+
# Corresponds to the JSON property `createTime`
|
2668
|
+
# @return [String]
|
2669
|
+
attr_accessor :create_time
|
2670
|
+
|
2671
|
+
# Count of user licenses that failed to be updated.
|
2672
|
+
# Corresponds to the JSON property `failureCount`
|
2673
|
+
# @return [Fixnum]
|
2674
|
+
attr_accessor :failure_count
|
2675
|
+
|
2676
|
+
# Count of user licenses successfully updated.
|
2677
|
+
# Corresponds to the JSON property `successCount`
|
2678
|
+
# @return [Fixnum]
|
2679
|
+
attr_accessor :success_count
|
2680
|
+
|
2681
|
+
# Operation last update time. If the operation is done, this is also the finish
|
2682
|
+
# time.
|
2683
|
+
# Corresponds to the JSON property `updateTime`
|
2684
|
+
# @return [String]
|
2685
|
+
attr_accessor :update_time
|
2686
|
+
|
2687
|
+
def initialize(**args)
|
2688
|
+
update!(**args)
|
2689
|
+
end
|
2690
|
+
|
2691
|
+
# Update properties of this object
|
2692
|
+
def update!(**args)
|
2693
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2694
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
2695
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
2696
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2697
|
+
end
|
2698
|
+
end
|
2699
|
+
|
2660
2700
|
# Request message for UserLicenseService.BatchUpdateUserLicenses method.
|
2661
2701
|
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequest
|
2662
2702
|
include Google::Apis::Core::Hashable
|
@@ -2669,11 +2709,6 @@ module Google
|
|
2669
2709
|
attr_accessor :delete_unassigned_user_licenses
|
2670
2710
|
alias_method :delete_unassigned_user_licenses?, :delete_unassigned_user_licenses
|
2671
2711
|
|
2672
|
-
# Cloud Storage location for input content.
|
2673
|
-
# Corresponds to the JSON property `gcsSource`
|
2674
|
-
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource]
|
2675
|
-
attr_accessor :gcs_source
|
2676
|
-
|
2677
2712
|
# The inline source for the input config for BatchUpdateUserLicenses method.
|
2678
2713
|
# Corresponds to the JSON property `inlineSource`
|
2679
2714
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequestInlineSource]
|
@@ -2686,7 +2721,6 @@ module Google
|
|
2686
2721
|
# Update properties of this object
|
2687
2722
|
def update!(**args)
|
2688
2723
|
@delete_unassigned_user_licenses = args[:delete_unassigned_user_licenses] if args.key?(:delete_unassigned_user_licenses)
|
2689
|
-
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
2690
2724
|
@inline_source = args[:inline_source] if args.key?(:inline_source)
|
2691
2725
|
end
|
2692
2726
|
end
|
@@ -2717,6 +2751,31 @@ module Google
|
|
2717
2751
|
end
|
2718
2752
|
end
|
2719
2753
|
|
2754
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
2755
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
2756
|
+
include Google::Apis::Core::Hashable
|
2757
|
+
|
2758
|
+
# A sample of errors encountered while processing the request.
|
2759
|
+
# Corresponds to the JSON property `errorSamples`
|
2760
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
|
2761
|
+
attr_accessor :error_samples
|
2762
|
+
|
2763
|
+
# UserLicenses successfully updated.
|
2764
|
+
# Corresponds to the JSON property `userLicenses`
|
2765
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1UserLicense>]
|
2766
|
+
attr_accessor :user_licenses
|
2767
|
+
|
2768
|
+
def initialize(**args)
|
2769
|
+
update!(**args)
|
2770
|
+
end
|
2771
|
+
|
2772
|
+
# Update properties of this object
|
2773
|
+
def update!(**args)
|
2774
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
2775
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
2776
|
+
end
|
2777
|
+
end
|
2778
|
+
|
2720
2779
|
# Request message for SiteSearchEngineService.BatchVerifyTargetSites method.
|
2721
2780
|
class GoogleCloudDiscoveryengineV1BatchVerifyTargetSitesRequest
|
2722
2781
|
include Google::Apis::Core::Hashable
|
@@ -3484,7 +3543,7 @@ module Google
|
|
3484
3543
|
|
3485
3544
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
3486
3545
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
3487
|
-
# `
|
3546
|
+
# `cmek_config``.
|
3488
3547
|
# Corresponds to the JSON property `name`
|
3489
3548
|
# @return [String]
|
3490
3549
|
attr_accessor :name
|
@@ -10701,6 +10760,19 @@ module Google
|
|
10701
10760
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query]
|
10702
10761
|
attr_accessor :query
|
10703
10762
|
|
10763
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
10764
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
10765
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
10766
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
10767
|
+
# information is used in particular when rendering alternative answers to the
|
10768
|
+
# same prompt, providing visual information about how each answer was generated.
|
10769
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
10770
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
10771
|
+
# services can use anything not starting with "google."
|
10772
|
+
# Corresponds to the JSON property `queryConfigs`
|
10773
|
+
# @return [Hash<String,String>]
|
10774
|
+
attr_accessor :query_configs
|
10775
|
+
|
10704
10776
|
def initialize(**args)
|
10705
10777
|
update!(**args)
|
10706
10778
|
end
|
@@ -10710,6 +10782,7 @@ module Google
|
|
10710
10782
|
@answer = args[:answer] if args.key?(:answer)
|
10711
10783
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
10712
10784
|
@query = args[:query] if args.key?(:query)
|
10785
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
10713
10786
|
end
|
10714
10787
|
end
|
10715
10788
|
|
@@ -12782,7 +12855,7 @@ module Google
|
|
12782
12855
|
|
12783
12856
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
12784
12857
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
12785
|
-
# `
|
12858
|
+
# `cmek_config``.
|
12786
12859
|
# Corresponds to the JSON property `name`
|
12787
12860
|
# @return [String]
|
12788
12861
|
attr_accessor :name
|
@@ -13783,13 +13856,13 @@ module Google
|
|
13783
13856
|
|
13784
13857
|
# Optional. The refresh interval specifically for incremental data syncs. If
|
13785
13858
|
# unset, incremental syncs will use the default from env, set to 3hrs. The
|
13786
|
-
# minimum is 30 minutes and maximum is 7 days.
|
13859
|
+
# minimum is 30 minutes and maximum is 7 days. Applicable to only 3P connectors.
|
13787
13860
|
# Corresponds to the JSON property `incrementalRefreshInterval`
|
13788
13861
|
# @return [String]
|
13789
13862
|
attr_accessor :incremental_refresh_interval
|
13790
13863
|
|
13791
13864
|
# Optional. Indicates whether incremental syncs are paused for this connector.
|
13792
|
-
# This is independent of auto_run_disabled.
|
13865
|
+
# This is independent of auto_run_disabled. Applicable to only 3P connectors.
|
13793
13866
|
# Corresponds to the JSON property `incrementalSyncDisabled`
|
13794
13867
|
# @return [Boolean]
|
13795
13868
|
attr_accessor :incremental_sync_disabled
|
@@ -15607,7 +15680,7 @@ module Google
|
|
15607
15680
|
class GoogleCloudDiscoveryengineV1alphaEvaluationEvaluationSpecQuerySetSpec
|
15608
15681
|
include Google::Apis::Core::Hashable
|
15609
15682
|
|
15610
|
-
#
|
15683
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
15611
15684
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
15612
15685
|
# sampleQuerySet``.
|
15613
15686
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -18845,6 +18918,19 @@ module Google
|
|
18845
18918
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery]
|
18846
18919
|
attr_accessor :query
|
18847
18920
|
|
18921
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
18922
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
18923
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
18924
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
18925
|
+
# information is used in particular when rendering alternative answers to the
|
18926
|
+
# same prompt, providing visual information about how each answer was generated.
|
18927
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
18928
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
18929
|
+
# services can use anything not starting with "google."
|
18930
|
+
# Corresponds to the JSON property `queryConfigs`
|
18931
|
+
# @return [Hash<String,String>]
|
18932
|
+
attr_accessor :query_configs
|
18933
|
+
|
18848
18934
|
def initialize(**args)
|
18849
18935
|
update!(**args)
|
18850
18936
|
end
|
@@ -18854,6 +18940,7 @@ module Google
|
|
18854
18940
|
@answer = args[:answer] if args.key?(:answer)
|
18855
18941
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
18856
18942
|
@query = args[:query] if args.key?(:query)
|
18943
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
18857
18944
|
end
|
18858
18945
|
end
|
18859
18946
|
|
@@ -19638,6 +19725,71 @@ module Google
|
|
19638
19725
|
end
|
19639
19726
|
end
|
19640
19727
|
|
19728
|
+
# Metadata related to the progress of the UserLicenseService.
|
19729
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
19730
|
+
# longrunning.Operation.metadata field.
|
19731
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
19732
|
+
include Google::Apis::Core::Hashable
|
19733
|
+
|
19734
|
+
# Operation create time.
|
19735
|
+
# Corresponds to the JSON property `createTime`
|
19736
|
+
# @return [String]
|
19737
|
+
attr_accessor :create_time
|
19738
|
+
|
19739
|
+
# Count of user licenses that failed to be updated.
|
19740
|
+
# Corresponds to the JSON property `failureCount`
|
19741
|
+
# @return [Fixnum]
|
19742
|
+
attr_accessor :failure_count
|
19743
|
+
|
19744
|
+
# Count of user licenses successfully updated.
|
19745
|
+
# Corresponds to the JSON property `successCount`
|
19746
|
+
# @return [Fixnum]
|
19747
|
+
attr_accessor :success_count
|
19748
|
+
|
19749
|
+
# Operation last update time. If the operation is done, this is also the finish
|
19750
|
+
# time.
|
19751
|
+
# Corresponds to the JSON property `updateTime`
|
19752
|
+
# @return [String]
|
19753
|
+
attr_accessor :update_time
|
19754
|
+
|
19755
|
+
def initialize(**args)
|
19756
|
+
update!(**args)
|
19757
|
+
end
|
19758
|
+
|
19759
|
+
# Update properties of this object
|
19760
|
+
def update!(**args)
|
19761
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
19762
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
19763
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
19764
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
19765
|
+
end
|
19766
|
+
end
|
19767
|
+
|
19768
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
19769
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
19770
|
+
include Google::Apis::Core::Hashable
|
19771
|
+
|
19772
|
+
# A sample of errors encountered while processing the request.
|
19773
|
+
# Corresponds to the JSON property `errorSamples`
|
19774
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
|
19775
|
+
attr_accessor :error_samples
|
19776
|
+
|
19777
|
+
# UserLicenses successfully updated.
|
19778
|
+
# Corresponds to the JSON property `userLicenses`
|
19779
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaUserLicense>]
|
19780
|
+
attr_accessor :user_licenses
|
19781
|
+
|
19782
|
+
def initialize(**args)
|
19783
|
+
update!(**args)
|
19784
|
+
end
|
19785
|
+
|
19786
|
+
# Update properties of this object
|
19787
|
+
def update!(**args)
|
19788
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
19789
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
19790
|
+
end
|
19791
|
+
end
|
19792
|
+
|
19641
19793
|
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
19642
19794
|
class GoogleCloudDiscoveryengineV1betaCmekConfig
|
19643
19795
|
include Google::Apis::Core::Hashable
|
@@ -19667,7 +19819,7 @@ module Google
|
|
19667
19819
|
|
19668
19820
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
19669
19821
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
19670
|
-
# `
|
19822
|
+
# `cmek_config``.
|
19671
19823
|
# Corresponds to the JSON property `name`
|
19672
19824
|
# @return [String]
|
19673
19825
|
attr_accessor :name
|
@@ -21555,7 +21707,7 @@ module Google
|
|
21555
21707
|
class GoogleCloudDiscoveryengineV1betaEvaluationEvaluationSpecQuerySetSpec
|
21556
21708
|
include Google::Apis::Core::Hashable
|
21557
21709
|
|
21558
|
-
#
|
21710
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
21559
21711
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
21560
21712
|
# sampleQuerySet``.
|
21561
21713
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -24446,6 +24598,69 @@ module Google
|
|
24446
24598
|
end
|
24447
24599
|
end
|
24448
24600
|
|
24601
|
+
# User License information assigned by the admin.
|
24602
|
+
class GoogleCloudDiscoveryengineV1betaUserLicense
|
24603
|
+
include Google::Apis::Core::Hashable
|
24604
|
+
|
24605
|
+
# Output only. User created timestamp.
|
24606
|
+
# Corresponds to the JSON property `createTime`
|
24607
|
+
# @return [String]
|
24608
|
+
attr_accessor :create_time
|
24609
|
+
|
24610
|
+
# Output only. User last logged in time. If the user has not logged in yet, this
|
24611
|
+
# field will be empty.
|
24612
|
+
# Corresponds to the JSON property `lastLoginTime`
|
24613
|
+
# @return [String]
|
24614
|
+
attr_accessor :last_login_time
|
24615
|
+
|
24616
|
+
# Output only. License assignment state of the user. If the user is assigned
|
24617
|
+
# with a license config, the user loggin will be assigned with the license; If
|
24618
|
+
# the user's license assignment state is unassigned or unspecified, no license
|
24619
|
+
# config will be associated to the user;
|
24620
|
+
# Corresponds to the JSON property `licenseAssignmentState`
|
24621
|
+
# @return [String]
|
24622
|
+
attr_accessor :license_assignment_state
|
24623
|
+
|
24624
|
+
# Optional. The full resource name of the Subscription(LicenseConfig) assigned
|
24625
|
+
# to the user.
|
24626
|
+
# Corresponds to the JSON property `licenseConfig`
|
24627
|
+
# @return [String]
|
24628
|
+
attr_accessor :license_config
|
24629
|
+
|
24630
|
+
# Output only. User update timestamp.
|
24631
|
+
# Corresponds to the JSON property `updateTime`
|
24632
|
+
# @return [String]
|
24633
|
+
attr_accessor :update_time
|
24634
|
+
|
24635
|
+
# Required. Immutable. The user principal of the User, could be email address or
|
24636
|
+
# other prinical identifier. This field is immutable. Admin assign licenses
|
24637
|
+
# based on the user principal.
|
24638
|
+
# Corresponds to the JSON property `userPrincipal`
|
24639
|
+
# @return [String]
|
24640
|
+
attr_accessor :user_principal
|
24641
|
+
|
24642
|
+
# Optional. The user profile. We user user full name(First name + Last name) as
|
24643
|
+
# user profile.
|
24644
|
+
# Corresponds to the JSON property `userProfile`
|
24645
|
+
# @return [String]
|
24646
|
+
attr_accessor :user_profile
|
24647
|
+
|
24648
|
+
def initialize(**args)
|
24649
|
+
update!(**args)
|
24650
|
+
end
|
24651
|
+
|
24652
|
+
# Update properties of this object
|
24653
|
+
def update!(**args)
|
24654
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
24655
|
+
@last_login_time = args[:last_login_time] if args.key?(:last_login_time)
|
24656
|
+
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
24657
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
24658
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
24659
|
+
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
24660
|
+
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
24661
|
+
end
|
24662
|
+
end
|
24663
|
+
|
24449
24664
|
# Config to store data store type configuration for workspace data
|
24450
24665
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
24451
24666
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1
|
18
18
|
# Version of the google-apis-discoveryengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.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
|
@@ -466,6 +466,12 @@ module Google
|
|
466
466
|
include Google::Apis::Core::JsonObjectSupport
|
467
467
|
end
|
468
468
|
|
469
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
469
475
|
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequest
|
470
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
477
|
|
@@ -478,6 +484,12 @@ module Google
|
|
478
484
|
include Google::Apis::Core::JsonObjectSupport
|
479
485
|
end
|
480
486
|
|
487
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
|
+
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
491
|
+
end
|
492
|
+
|
481
493
|
class GoogleCloudDiscoveryengineV1BatchVerifyTargetSitesRequest
|
482
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
495
|
|
@@ -3118,6 +3130,18 @@ module Google
|
|
3118
3130
|
include Google::Apis::Core::JsonObjectSupport
|
3119
3131
|
end
|
3120
3132
|
|
3133
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
3134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3135
|
+
|
3136
|
+
include Google::Apis::Core::JsonObjectSupport
|
3137
|
+
end
|
3138
|
+
|
3139
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
3140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3141
|
+
|
3142
|
+
include Google::Apis::Core::JsonObjectSupport
|
3143
|
+
end
|
3144
|
+
|
3121
3145
|
class GoogleCloudDiscoveryengineV1betaCmekConfig
|
3122
3146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3123
3147
|
|
@@ -3886,6 +3910,12 @@ module Google
|
|
3886
3910
|
include Google::Apis::Core::JsonObjectSupport
|
3887
3911
|
end
|
3888
3912
|
|
3913
|
+
class GoogleCloudDiscoveryengineV1betaUserLicense
|
3914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3915
|
+
|
3916
|
+
include Google::Apis::Core::JsonObjectSupport
|
3917
|
+
end
|
3918
|
+
|
3889
3919
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
3890
3920
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3891
3921
|
|
@@ -4702,12 +4732,20 @@ module Google
|
|
4702
4732
|
end
|
4703
4733
|
end
|
4704
4734
|
|
4735
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
4736
|
+
# @private
|
4737
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4738
|
+
property :create_time, as: 'createTime'
|
4739
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
4740
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
4741
|
+
property :update_time, as: 'updateTime'
|
4742
|
+
end
|
4743
|
+
end
|
4744
|
+
|
4705
4745
|
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequest
|
4706
4746
|
# @private
|
4707
4747
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4708
4748
|
property :delete_unassigned_user_licenses, as: 'deleteUnassignedUserLicenses'
|
4709
|
-
property :gcs_source, as: 'gcsSource', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource::Representation
|
4710
|
-
|
4711
4749
|
property :inline_source, as: 'inlineSource', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequestInlineSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequestInlineSource::Representation
|
4712
4750
|
|
4713
4751
|
end
|
@@ -4722,6 +4760,16 @@ module Google
|
|
4722
4760
|
end
|
4723
4761
|
end
|
4724
4762
|
|
4763
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
4764
|
+
# @private
|
4765
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4766
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
|
4767
|
+
|
4768
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1UserLicense, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1UserLicense::Representation
|
4769
|
+
|
4770
|
+
end
|
4771
|
+
end
|
4772
|
+
|
4725
4773
|
class GoogleCloudDiscoveryengineV1BatchVerifyTargetSitesRequest
|
4726
4774
|
# @private
|
4727
4775
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6849,6 +6897,7 @@ module Google
|
|
6849
6897
|
|
6850
6898
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query::Representation
|
6851
6899
|
|
6900
|
+
hash :query_configs, as: 'queryConfigs'
|
6852
6901
|
end
|
6853
6902
|
end
|
6854
6903
|
|
@@ -8978,6 +9027,7 @@ module Google
|
|
8978
9027
|
|
8979
9028
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery::Representation
|
8980
9029
|
|
9030
|
+
hash :query_configs, as: 'queryConfigs'
|
8981
9031
|
end
|
8982
9032
|
end
|
8983
9033
|
|
@@ -9206,6 +9256,26 @@ module Google
|
|
9206
9256
|
end
|
9207
9257
|
end
|
9208
9258
|
|
9259
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
9260
|
+
# @private
|
9261
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9262
|
+
property :create_time, as: 'createTime'
|
9263
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
9264
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
9265
|
+
property :update_time, as: 'updateTime'
|
9266
|
+
end
|
9267
|
+
end
|
9268
|
+
|
9269
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
9270
|
+
# @private
|
9271
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9272
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
|
9273
|
+
|
9274
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaUserLicense, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaUserLicense::Representation
|
9275
|
+
|
9276
|
+
end
|
9277
|
+
end
|
9278
|
+
|
9209
9279
|
class GoogleCloudDiscoveryengineV1betaCmekConfig
|
9210
9280
|
# @private
|
9211
9281
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10487,6 +10557,19 @@ module Google
|
|
10487
10557
|
end
|
10488
10558
|
end
|
10489
10559
|
|
10560
|
+
class GoogleCloudDiscoveryengineV1betaUserLicense
|
10561
|
+
# @private
|
10562
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10563
|
+
property :create_time, as: 'createTime'
|
10564
|
+
property :last_login_time, as: 'lastLoginTime'
|
10565
|
+
property :license_assignment_state, as: 'licenseAssignmentState'
|
10566
|
+
property :license_config, as: 'licenseConfig'
|
10567
|
+
property :update_time, as: 'updateTime'
|
10568
|
+
property :user_principal, as: 'userPrincipal'
|
10569
|
+
property :user_profile, as: 'userProfile'
|
10570
|
+
end
|
10571
|
+
end
|
10572
|
+
|
10490
10573
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
10491
10574
|
# @private
|
10492
10575
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -127,7 +127,7 @@ module Google
|
|
127
127
|
# @param [String] name
|
128
128
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
129
129
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
130
|
-
# `
|
130
|
+
# `cmek_config``.
|
131
131
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig] google_cloud_discoveryengine_v1_cmek_config_object
|
132
132
|
# @param [Boolean] set_default
|
133
133
|
# Set the following CmekConfig as the default to be used for child resources if
|
@@ -265,7 +265,7 @@ module Google
|
|
265
265
|
# @param [String] name
|
266
266
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
267
267
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
268
|
-
# `
|
268
|
+
# `cmek_config``.
|
269
269
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig] google_cloud_discoveryengine_v1_cmek_config_object
|
270
270
|
# @param [Boolean] set_default
|
271
271
|
# 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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.40.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|