google-apis-discoveryengine_v1beta 0.79.0 → 0.80.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: 5971de56d66aaa4b61b0ce90deeee97ee4c53a2c2b144848c1ee8d6bc65b537e
4
- data.tar.gz: f5e1e52fa28caf4dae5b5c37cc7001ab5242dd4e3b17a7a2794442c4588c7198
3
+ metadata.gz: c186a1fe6f2df8514169e1701a4ef3df255b5d368f5dbd3394f843aa5fbd40c1
4
+ data.tar.gz: 0fb630a88896ef0158d44cbc2813a7062542f85648c96c95b7eaa59803bbf07f
5
5
  SHA512:
6
- metadata.gz: 238cd49957908796ab6d99f8ea6ef3733ede3618aff6c4be8d03c31c618e2af340091a670f6fcb85a8fc148bbf4ec5d7f40953dd2b98ec3b419ce03478de7c8b
7
- data.tar.gz: 5e0a72fc8bd7b6a64b43b892955d7afbe4ffe4b4f771eaa19aff63c3ac7401144425e3791afc7d5c1ac636c5083253d790e25966cbd533d571cacc13ec52808e
6
+ metadata.gz: 9083ca8106122b203393839214336a5a10c7101468e91a28931b73498e5f3e761a42a1a1297eb8eb58b1da35c0adfd1240a65f7e4072663022f6db07c8f833c0
7
+ data.tar.gz: fbf726175a8473689d742f78f2ec955b5fe766b83eb79e869a7496359d3a614ab34879b3c50a00c22b257de09b0121970fc11eb9792f9682ee6c6f918872755b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.80.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250824
6
+
3
7
  ### v0.79.0 (2025-08-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20250816
@@ -1432,6 +1432,33 @@ module Google
1432
1432
  end
1433
1433
  end
1434
1434
 
1435
+ # Access Control Configuration.
1436
+ class GoogleCloudDiscoveryengineV1AclConfig
1437
+ include Google::Apis::Core::Hashable
1438
+
1439
+ # Identity Provider Config.
1440
+ # Corresponds to the JSON property `idpConfig`
1441
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfig]
1442
+ attr_accessor :idp_config
1443
+
1444
+ # Immutable. The full resource name of the acl configuration. Format: `projects/`
1445
+ # project`/locations/`location`/aclConfig`. This field must be a UTF-8 encoded
1446
+ # string with a length limit of 1024 characters.
1447
+ # Corresponds to the JSON property `name`
1448
+ # @return [String]
1449
+ attr_accessor :name
1450
+
1451
+ def initialize(**args)
1452
+ update!(**args)
1453
+ end
1454
+
1455
+ # Update properties of this object
1456
+ def update!(**args)
1457
+ @idp_config = args[:idp_config] if args.key?(:idp_config)
1458
+ @name = args[:name] if args.key?(:name)
1459
+ end
1460
+ end
1461
+
1435
1462
  # Configuration data for advance site search.
1436
1463
  class GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig
1437
1464
  include Google::Apis::Core::Hashable
@@ -3198,6 +3225,13 @@ module Google
3198
3225
  class GoogleCloudDiscoveryengineV1Engine
3199
3226
  include Google::Apis::Core::Hashable
3200
3227
 
3228
+ # Optional. Immutable. This the application type which this engine resource
3229
+ # represents. NOTE: this is a new concept independ of existing industry vertical
3230
+ # or solution type.
3231
+ # Corresponds to the JSON property `appType`
3232
+ # @return [String]
3233
+ attr_accessor :app_type
3234
+
3201
3235
  # Configurations for a Chat Engine.
3202
3236
  # Corresponds to the JSON property `chatEngineConfig`
3203
3237
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineConfig]
@@ -3293,6 +3327,7 @@ module Google
3293
3327
 
3294
3328
  # Update properties of this object
3295
3329
  def update!(**args)
3330
+ @app_type = args[:app_type] if args.key?(:app_type)
3296
3331
  @chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
3297
3332
  @chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
3298
3333
  @common_config = args[:common_config] if args.key?(:common_config)
@@ -3686,6 +3721,50 @@ module Google
3686
3721
  end
3687
3722
  end
3688
3723
 
3724
+ # Identity Provider Config.
3725
+ class GoogleCloudDiscoveryengineV1IdpConfig
3726
+ include Google::Apis::Core::Hashable
3727
+
3728
+ # Third party IDP Config.
3729
+ # Corresponds to the JSON property `externalIdpConfig`
3730
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig]
3731
+ attr_accessor :external_idp_config
3732
+
3733
+ # Identity provider type configured.
3734
+ # Corresponds to the JSON property `idpType`
3735
+ # @return [String]
3736
+ attr_accessor :idp_type
3737
+
3738
+ def initialize(**args)
3739
+ update!(**args)
3740
+ end
3741
+
3742
+ # Update properties of this object
3743
+ def update!(**args)
3744
+ @external_idp_config = args[:external_idp_config] if args.key?(:external_idp_config)
3745
+ @idp_type = args[:idp_type] if args.key?(:idp_type)
3746
+ end
3747
+ end
3748
+
3749
+ # Third party IDP Config.
3750
+ class GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig
3751
+ include Google::Apis::Core::Hashable
3752
+
3753
+ # Workforce pool name. Example: "locations/global/workforcePools/pool_id"
3754
+ # Corresponds to the JSON property `workforcePoolName`
3755
+ # @return [String]
3756
+ attr_accessor :workforce_pool_name
3757
+
3758
+ def initialize(**args)
3759
+ update!(**args)
3760
+ end
3761
+
3762
+ # Update properties of this object
3763
+ def update!(**args)
3764
+ @workforce_pool_name = args[:workforce_pool_name] if args.key?(:workforce_pool_name)
3765
+ end
3766
+ end
3767
+
3689
3768
  # Metadata related to the progress of the ImportCompletionSuggestions operation.
3690
3769
  # This will be returned by the google.longrunning.Operation.metadata field.
3691
3770
  class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
@@ -8768,6 +8847,13 @@ module Google
8768
8847
  class GoogleCloudDiscoveryengineV1alphaEngine
8769
8848
  include Google::Apis::Core::Hashable
8770
8849
 
8850
+ # Optional. Immutable. This the application type which this engine resource
8851
+ # represents. NOTE: this is a new concept independ of existing industry vertical
8852
+ # or solution type.
8853
+ # Corresponds to the JSON property `appType`
8854
+ # @return [String]
8855
+ attr_accessor :app_type
8856
+
8771
8857
  # Configurations for a Chat Engine.
8772
8858
  # Corresponds to the JSON property `chatEngineConfig`
8773
8859
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig]
@@ -8873,6 +8959,7 @@ module Google
8873
8959
 
8874
8960
  # Update properties of this object
8875
8961
  def update!(**args)
8962
+ @app_type = args[:app_type] if args.key?(:app_type)
8876
8963
  @chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
8877
8964
  @chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
8878
8965
  @common_config = args[:common_config] if args.key?(:common_config)
@@ -13505,6 +13592,33 @@ module Google
13505
13592
  end
13506
13593
  end
13507
13594
 
13595
+ # Access Control Configuration.
13596
+ class GoogleCloudDiscoveryengineV1betaAclConfig
13597
+ include Google::Apis::Core::Hashable
13598
+
13599
+ # Identity Provider Config.
13600
+ # Corresponds to the JSON property `idpConfig`
13601
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig]
13602
+ attr_accessor :idp_config
13603
+
13604
+ # Immutable. The full resource name of the acl configuration. Format: `projects/`
13605
+ # project`/locations/`location`/aclConfig`. This field must be a UTF-8 encoded
13606
+ # string with a length limit of 1024 characters.
13607
+ # Corresponds to the JSON property `name`
13608
+ # @return [String]
13609
+ attr_accessor :name
13610
+
13611
+ def initialize(**args)
13612
+ update!(**args)
13613
+ end
13614
+
13615
+ # Update properties of this object
13616
+ def update!(**args)
13617
+ @idp_config = args[:idp_config] if args.key?(:idp_config)
13618
+ @name = args[:name] if args.key?(:name)
13619
+ end
13620
+ end
13621
+
13508
13622
  # Request message for CompletionService.AdvancedCompleteQuery method. .
13509
13623
  class GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
13510
13624
  include Google::Apis::Core::Hashable
@@ -19643,6 +19757,13 @@ module Google
19643
19757
  class GoogleCloudDiscoveryengineV1betaEngine
19644
19758
  include Google::Apis::Core::Hashable
19645
19759
 
19760
+ # Optional. Immutable. This the application type which this engine resource
19761
+ # represents. NOTE: this is a new concept independ of existing industry vertical
19762
+ # or solution type.
19763
+ # Corresponds to the JSON property `appType`
19764
+ # @return [String]
19765
+ attr_accessor :app_type
19766
+
19646
19767
  # Configurations for a Chat Engine.
19647
19768
  # Corresponds to the JSON property `chatEngineConfig`
19648
19769
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig]
@@ -19738,6 +19859,7 @@ module Google
19738
19859
 
19739
19860
  # Update properties of this object
19740
19861
  def update!(**args)
19862
+ @app_type = args[:app_type] if args.key?(:app_type)
19741
19863
  @chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
19742
19864
  @chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
19743
19865
  @common_config = args[:common_config] if args.key?(:common_config)
@@ -20610,6 +20732,50 @@ module Google
20610
20732
  end
20611
20733
  end
20612
20734
 
20735
+ # Identity Provider Config.
20736
+ class GoogleCloudDiscoveryengineV1betaIdpConfig
20737
+ include Google::Apis::Core::Hashable
20738
+
20739
+ # Third party IDP Config.
20740
+ # Corresponds to the JSON property `externalIdpConfig`
20741
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig]
20742
+ attr_accessor :external_idp_config
20743
+
20744
+ # Identity provider type configured.
20745
+ # Corresponds to the JSON property `idpType`
20746
+ # @return [String]
20747
+ attr_accessor :idp_type
20748
+
20749
+ def initialize(**args)
20750
+ update!(**args)
20751
+ end
20752
+
20753
+ # Update properties of this object
20754
+ def update!(**args)
20755
+ @external_idp_config = args[:external_idp_config] if args.key?(:external_idp_config)
20756
+ @idp_type = args[:idp_type] if args.key?(:idp_type)
20757
+ end
20758
+ end
20759
+
20760
+ # Third party IDP Config.
20761
+ class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
20762
+ include Google::Apis::Core::Hashable
20763
+
20764
+ # Workforce pool name. Example: "locations/global/workforcePools/pool_id"
20765
+ # Corresponds to the JSON property `workforcePoolName`
20766
+ # @return [String]
20767
+ attr_accessor :workforce_pool_name
20768
+
20769
+ def initialize(**args)
20770
+ update!(**args)
20771
+ end
20772
+
20773
+ # Update properties of this object
20774
+ def update!(**args)
20775
+ @workforce_pool_name = args[:workforce_pool_name] if args.key?(:workforce_pool_name)
20776
+ end
20777
+ end
20778
+
20613
20779
  # Metadata related to the progress of the ImportCompletionSuggestions operation.
20614
20780
  # This will be returned by the google.longrunning.Operation.metadata field.
20615
20781
  class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
@@ -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.79.0"
19
+ GEM_VERSION = "0.80.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 = "20250816"
25
+ REVISION = "20250824"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class GoogleCloudDiscoveryengineV1AclConfig
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -586,6 +592,18 @@ module Google
586
592
  include Google::Apis::Core::JsonObjectSupport
587
593
  end
588
594
 
595
+ class GoogleCloudDiscoveryengineV1IdpConfig
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
601
+ class GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
589
607
  class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
590
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
591
609
 
@@ -2104,6 +2122,12 @@ module Google
2104
2122
  include Google::Apis::Core::JsonObjectSupport
2105
2123
  end
2106
2124
 
2125
+ class GoogleCloudDiscoveryengineV1betaAclConfig
2126
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2127
+
2128
+ include Google::Apis::Core::JsonObjectSupport
2129
+ end
2130
+
2107
2131
  class GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
2108
2132
  class Representation < Google::Apis::Core::JsonRepresentation; end
2109
2133
 
@@ -3292,6 +3316,18 @@ module Google
3292
3316
  include Google::Apis::Core::JsonObjectSupport
3293
3317
  end
3294
3318
 
3319
+ class GoogleCloudDiscoveryengineV1betaIdpConfig
3320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3321
+
3322
+ include Google::Apis::Core::JsonObjectSupport
3323
+ end
3324
+
3325
+ class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
3326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3327
+
3328
+ include Google::Apis::Core::JsonObjectSupport
3329
+ end
3330
+
3295
3331
  class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
3296
3332
  class Representation < Google::Apis::Core::JsonRepresentation; end
3297
3333
 
@@ -4864,6 +4900,15 @@ module Google
4864
4900
  end
4865
4901
  end
4866
4902
 
4903
+ class GoogleCloudDiscoveryengineV1AclConfig
4904
+ # @private
4905
+ class Representation < Google::Apis::Core::JsonRepresentation
4906
+ property :idp_config, as: 'idpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfig::Representation
4907
+
4908
+ property :name, as: 'name'
4909
+ end
4910
+ end
4911
+
4867
4912
  class GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig
4868
4913
  # @private
4869
4914
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5367,6 +5412,7 @@ module Google
5367
5412
  class GoogleCloudDiscoveryengineV1Engine
5368
5413
  # @private
5369
5414
  class Representation < Google::Apis::Core::JsonRepresentation
5415
+ property :app_type, as: 'appType'
5370
5416
  property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineConfig::Representation
5371
5417
 
5372
5418
  property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata::Representation
@@ -5493,6 +5539,22 @@ module Google
5493
5539
  end
5494
5540
  end
5495
5541
 
5542
+ class GoogleCloudDiscoveryengineV1IdpConfig
5543
+ # @private
5544
+ class Representation < Google::Apis::Core::JsonRepresentation
5545
+ property :external_idp_config, as: 'externalIdpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig::Representation
5546
+
5547
+ property :idp_type, as: 'idpType'
5548
+ end
5549
+ end
5550
+
5551
+ class GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig
5552
+ # @private
5553
+ class Representation < Google::Apis::Core::JsonRepresentation
5554
+ property :workforce_pool_name, as: 'workforcePoolName'
5555
+ end
5556
+ end
5557
+
5496
5558
  class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
5497
5559
  # @private
5498
5560
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6851,6 +6913,7 @@ module Google
6851
6913
  class GoogleCloudDiscoveryengineV1alphaEngine
6852
6914
  # @private
6853
6915
  class Representation < Google::Apis::Core::JsonRepresentation
6916
+ property :app_type, as: 'appType'
6854
6917
  property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig::Representation
6855
6918
 
6856
6919
  property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata::Representation
@@ -8071,6 +8134,15 @@ module Google
8071
8134
  end
8072
8135
  end
8073
8136
 
8137
+ class GoogleCloudDiscoveryengineV1betaAclConfig
8138
+ # @private
8139
+ class Representation < Google::Apis::Core::JsonRepresentation
8140
+ property :idp_config, as: 'idpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig::Representation
8141
+
8142
+ property :name, as: 'name'
8143
+ end
8144
+ end
8145
+
8074
8146
  class GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
8075
8147
  # @private
8076
8148
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9810,6 +9882,7 @@ module Google
9810
9882
  class GoogleCloudDiscoveryengineV1betaEngine
9811
9883
  # @private
9812
9884
  class Representation < Google::Apis::Core::JsonRepresentation
9885
+ property :app_type, as: 'appType'
9813
9886
  property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig::Representation
9814
9887
 
9815
9888
  property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata::Representation
@@ -10065,6 +10138,22 @@ module Google
10065
10138
  end
10066
10139
  end
10067
10140
 
10141
+ class GoogleCloudDiscoveryengineV1betaIdpConfig
10142
+ # @private
10143
+ class Representation < Google::Apis::Core::JsonRepresentation
10144
+ property :external_idp_config, as: 'externalIdpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig::Representation
10145
+
10146
+ property :idp_type, as: 'idpType'
10147
+ end
10148
+ end
10149
+
10150
+ class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
10151
+ # @private
10152
+ class Representation < Google::Apis::Core::JsonRepresentation
10153
+ property :workforce_pool_name, as: 'workforcePoolName'
10154
+ end
10155
+ end
10156
+
10068
10157
  class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
10069
10158
  # @private
10070
10159
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -133,6 +133,38 @@ module Google
133
133
  execute_or_queue_command(command, &block)
134
134
  end
135
135
 
136
+ # Gets the AclConfig.
137
+ # @param [String] name
138
+ # Required. Resource name of AclConfig, such as `projects/*/locations/*/
139
+ # aclConfig`. If the caller does not have permission to access the AclConfig,
140
+ # regardless of whether or not it exists, a PERMISSION_DENIED error is returned.
141
+ # @param [String] fields
142
+ # Selector specifying which fields to include in a partial response.
143
+ # @param [String] quota_user
144
+ # Available to use for quota purposes for server-side applications. Can be any
145
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
146
+ # @param [Google::Apis::RequestOptions] options
147
+ # Request-specific options
148
+ #
149
+ # @yield [result, err] Result & error if block supplied
150
+ # @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig] parsed result object
151
+ # @yieldparam err [StandardError] error object if request failed
152
+ #
153
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig]
154
+ #
155
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
156
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
157
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
158
+ def get_project_location_acl_config(name, fields: nil, quota_user: nil, options: nil, &block)
159
+ command = make_simple_command(:get, 'v1beta/{+name}', options)
160
+ command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig::Representation
161
+ command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig
162
+ command.params['name'] = name unless name.nil?
163
+ command.query['fields'] = fields unless fields.nil?
164
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
165
+ execute_or_queue_command(command, &block)
166
+ end
167
+
136
168
  # Gets the CmekConfig.
137
169
  # @param [String] name
138
170
  # Required. Resource name of CmekConfig, such as `projects/*/locations/*/
@@ -280,6 +312,43 @@ module Google
280
312
  execute_or_queue_command(command, &block)
281
313
  end
282
314
 
315
+ # Default ACL configuration for use in a location of a customer's project.
316
+ # Updates will only reflect to new data stores. Existing data stores will still
317
+ # use the old value.
318
+ # @param [String] name
319
+ # Immutable. The full resource name of the acl configuration. Format: `projects/`
320
+ # project`/locations/`location`/aclConfig`. This field must be a UTF-8 encoded
321
+ # string with a length limit of 1024 characters.
322
+ # @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig] google_cloud_discoveryengine_v1beta_acl_config_object
323
+ # @param [String] fields
324
+ # Selector specifying which fields to include in a partial response.
325
+ # @param [String] quota_user
326
+ # Available to use for quota purposes for server-side applications. Can be any
327
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
328
+ # @param [Google::Apis::RequestOptions] options
329
+ # Request-specific options
330
+ #
331
+ # @yield [result, err] Result & error if block supplied
332
+ # @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig] parsed result object
333
+ # @yieldparam err [StandardError] error object if request failed
334
+ #
335
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig]
336
+ #
337
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
338
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
339
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
340
+ def update_project_location_acl_config(name, google_cloud_discoveryengine_v1beta_acl_config_object = nil, fields: nil, quota_user: nil, options: nil, &block)
341
+ command = make_simple_command(:patch, 'v1beta/{+name}', options)
342
+ command.request_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig::Representation
343
+ command.request_object = google_cloud_discoveryengine_v1beta_acl_config_object
344
+ command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig::Representation
345
+ command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig
346
+ command.params['name'] = name unless name.nil?
347
+ command.query['fields'] = fields unless fields.nil?
348
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
349
+ execute_or_queue_command(command, &block)
350
+ end
351
+
283
352
  # Provisions a CMEK key for use in a location of a customer's project. This
284
353
  # method will also conduct location validation on the provided cmekConfig to
285
354
  # make sure the key is valid and can be used in the selected location.
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.79.0
4
+ version: 0.80.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.79.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.80.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: