google-apis-discoveryengine_v1beta 0.79.0 → 0.81.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: c7ab5bd7f6bef6e4a84323162658ef6e61160db6818414d5b2a3d6c1d29e3c3d
4
+ data.tar.gz: 63f98c64de9e82fbc0dc238555e037bd3dae413e536033b592a0a4826e17e11d
5
5
  SHA512:
6
- metadata.gz: 238cd49957908796ab6d99f8ea6ef3733ede3618aff6c4be8d03c31c618e2af340091a670f6fcb85a8fc148bbf4ec5d7f40953dd2b98ec3b419ce03478de7c8b
7
- data.tar.gz: 5e0a72fc8bd7b6a64b43b892955d7afbe4ffe4b4f771eaa19aff63c3ac7401144425e3791afc7d5c1ac636c5083253d790e25966cbd533d571cacc13ec52808e
6
+ metadata.gz: 239427185228c0677772060c1f0c0e1206d50f9c3cfe20a1c75d5e602ce35353d9570b672a92fa7539870158ffd43b20294165aa41691bcc288b0fcfaf5e1d4a
7
+ data.tar.gz: cc9c8b2036798484fcc7f3f90d4c4e79f88fef2f8469d60e8b29bee3bc3b642585973a7789b53d29fe4850096bbad3a9c59be5d86d359f8461daddc7f22a3951
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.81.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250902
6
+
7
+ ### v0.80.0 (2025-08-31)
8
+
9
+ * Regenerated from discovery document revision 20250824
10
+
3
11
  ### v0.79.0 (2025-08-24)
4
12
 
5
13
  * 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
@@ -7508,6 +7587,12 @@ module Google
7508
7587
  # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
7509
7588
  attr_accessor :errors
7510
7589
 
7590
+ # Any params and credentials used specifically for hybrid connectors supporting
7591
+ # FEDERATED mode.
7592
+ # Corresponds to the JSON property `federatedConfig`
7593
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig]
7594
+ attr_accessor :federated_config
7595
+
7511
7596
  # Optional. If the connector is a hybrid connector, determines whether ingestion
7512
7597
  # is enabled and appropriate resources are provisioned during connector creation.
7513
7598
  # If the connector is not a hybrid connector, this field is ignored.
@@ -7647,6 +7732,14 @@ module Google
7647
7732
  # @return [String]
7648
7733
  attr_accessor :refresh_interval
7649
7734
 
7735
+ # Optional. Specifies keys to be removed from the 'params' field. This is only
7736
+ # active when 'params' is included in the 'update_mask' in an
7737
+ # UpdateDataConnectorRequest. Deletion takes precedence if a key is both in '
7738
+ # remove_param_keys' and present in the 'params' field of the request.
7739
+ # Corresponds to the JSON property `removeParamKeys`
7740
+ # @return [Array<String>]
7741
+ attr_accessor :remove_param_keys
7742
+
7650
7743
  # Output only. State of the connector.
7651
7744
  # Corresponds to the JSON property `state`
7652
7745
  # @return [String]
@@ -7695,6 +7788,7 @@ module Google
7695
7788
  @end_user_config = args[:end_user_config] if args.key?(:end_user_config)
7696
7789
  @entities = args[:entities] if args.key?(:entities)
7697
7790
  @errors = args[:errors] if args.key?(:errors)
7791
+ @federated_config = args[:federated_config] if args.key?(:federated_config)
7698
7792
  @hybrid_ingestion_disabled = args[:hybrid_ingestion_disabled] if args.key?(:hybrid_ingestion_disabled)
7699
7793
  @identity_refresh_interval = args[:identity_refresh_interval] if args.key?(:identity_refresh_interval)
7700
7794
  @identity_schedule_config = args[:identity_schedule_config] if args.key?(:identity_schedule_config)
@@ -7710,6 +7804,7 @@ module Google
7710
7804
  @realtime_state = args[:realtime_state] if args.key?(:realtime_state)
7711
7805
  @realtime_sync_config = args[:realtime_sync_config] if args.key?(:realtime_sync_config)
7712
7806
  @refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
7807
+ @remove_param_keys = args[:remove_param_keys] if args.key?(:remove_param_keys)
7713
7808
  @state = args[:state] if args.key?(:state)
7714
7809
  @static_ip_addresses = args[:static_ip_addresses] if args.key?(:static_ip_addresses)
7715
7810
  @static_ip_enabled = args[:static_ip_enabled] if args.key?(:static_ip_enabled)
@@ -7751,6 +7846,32 @@ module Google
7751
7846
  end
7752
7847
  end
7753
7848
 
7849
+ # Any params and credentials used specifically for hybrid connectors supporting
7850
+ # FEDERATED mode.
7851
+ class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
7852
+ include Google::Apis::Core::Hashable
7853
+
7854
+ # Optional. Any additional parameters needed for FEDERATED.
7855
+ # Corresponds to the JSON property `additionalParams`
7856
+ # @return [Hash<String,Object>]
7857
+ attr_accessor :additional_params
7858
+
7859
+ # Optional. Any authentication parameters specific to FEDERATED.
7860
+ # Corresponds to the JSON property `authParams`
7861
+ # @return [Hash<String,Object>]
7862
+ attr_accessor :auth_params
7863
+
7864
+ def initialize(**args)
7865
+ update!(**args)
7866
+ end
7867
+
7868
+ # Update properties of this object
7869
+ def update!(**args)
7870
+ @additional_params = args[:additional_params] if args.key?(:additional_params)
7871
+ @auth_params = args[:auth_params] if args.key?(:auth_params)
7872
+ end
7873
+ end
7874
+
7754
7875
  # The configuration for realtime sync to store additional params for realtime
7755
7876
  # sync.
7756
7877
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
@@ -8768,6 +8889,13 @@ module Google
8768
8889
  class GoogleCloudDiscoveryengineV1alphaEngine
8769
8890
  include Google::Apis::Core::Hashable
8770
8891
 
8892
+ # Optional. Immutable. This the application type which this engine resource
8893
+ # represents. NOTE: this is a new concept independ of existing industry vertical
8894
+ # or solution type.
8895
+ # Corresponds to the JSON property `appType`
8896
+ # @return [String]
8897
+ attr_accessor :app_type
8898
+
8771
8899
  # Configurations for a Chat Engine.
8772
8900
  # Corresponds to the JSON property `chatEngineConfig`
8773
8901
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig]
@@ -8873,6 +9001,7 @@ module Google
8873
9001
 
8874
9002
  # Update properties of this object
8875
9003
  def update!(**args)
9004
+ @app_type = args[:app_type] if args.key?(:app_type)
8876
9005
  @chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
8877
9006
  @chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
8878
9007
  @common_config = args[:common_config] if args.key?(:common_config)
@@ -13505,6 +13634,33 @@ module Google
13505
13634
  end
13506
13635
  end
13507
13636
 
13637
+ # Access Control Configuration.
13638
+ class GoogleCloudDiscoveryengineV1betaAclConfig
13639
+ include Google::Apis::Core::Hashable
13640
+
13641
+ # Identity Provider Config.
13642
+ # Corresponds to the JSON property `idpConfig`
13643
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig]
13644
+ attr_accessor :idp_config
13645
+
13646
+ # Immutable. The full resource name of the acl configuration. Format: `projects/`
13647
+ # project`/locations/`location`/aclConfig`. This field must be a UTF-8 encoded
13648
+ # string with a length limit of 1024 characters.
13649
+ # Corresponds to the JSON property `name`
13650
+ # @return [String]
13651
+ attr_accessor :name
13652
+
13653
+ def initialize(**args)
13654
+ update!(**args)
13655
+ end
13656
+
13657
+ # Update properties of this object
13658
+ def update!(**args)
13659
+ @idp_config = args[:idp_config] if args.key?(:idp_config)
13660
+ @name = args[:name] if args.key?(:name)
13661
+ end
13662
+ end
13663
+
13508
13664
  # Request message for CompletionService.AdvancedCompleteQuery method. .
13509
13665
  class GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
13510
13666
  include Google::Apis::Core::Hashable
@@ -19643,6 +19799,13 @@ module Google
19643
19799
  class GoogleCloudDiscoveryengineV1betaEngine
19644
19800
  include Google::Apis::Core::Hashable
19645
19801
 
19802
+ # Optional. Immutable. This the application type which this engine resource
19803
+ # represents. NOTE: this is a new concept independ of existing industry vertical
19804
+ # or solution type.
19805
+ # Corresponds to the JSON property `appType`
19806
+ # @return [String]
19807
+ attr_accessor :app_type
19808
+
19646
19809
  # Configurations for a Chat Engine.
19647
19810
  # Corresponds to the JSON property `chatEngineConfig`
19648
19811
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig]
@@ -19738,6 +19901,7 @@ module Google
19738
19901
 
19739
19902
  # Update properties of this object
19740
19903
  def update!(**args)
19904
+ @app_type = args[:app_type] if args.key?(:app_type)
19741
19905
  @chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
19742
19906
  @chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
19743
19907
  @common_config = args[:common_config] if args.key?(:common_config)
@@ -20610,6 +20774,50 @@ module Google
20610
20774
  end
20611
20775
  end
20612
20776
 
20777
+ # Identity Provider Config.
20778
+ class GoogleCloudDiscoveryengineV1betaIdpConfig
20779
+ include Google::Apis::Core::Hashable
20780
+
20781
+ # Third party IDP Config.
20782
+ # Corresponds to the JSON property `externalIdpConfig`
20783
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig]
20784
+ attr_accessor :external_idp_config
20785
+
20786
+ # Identity provider type configured.
20787
+ # Corresponds to the JSON property `idpType`
20788
+ # @return [String]
20789
+ attr_accessor :idp_type
20790
+
20791
+ def initialize(**args)
20792
+ update!(**args)
20793
+ end
20794
+
20795
+ # Update properties of this object
20796
+ def update!(**args)
20797
+ @external_idp_config = args[:external_idp_config] if args.key?(:external_idp_config)
20798
+ @idp_type = args[:idp_type] if args.key?(:idp_type)
20799
+ end
20800
+ end
20801
+
20802
+ # Third party IDP Config.
20803
+ class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
20804
+ include Google::Apis::Core::Hashable
20805
+
20806
+ # Workforce pool name. Example: "locations/global/workforcePools/pool_id"
20807
+ # Corresponds to the JSON property `workforcePoolName`
20808
+ # @return [String]
20809
+ attr_accessor :workforce_pool_name
20810
+
20811
+ def initialize(**args)
20812
+ update!(**args)
20813
+ end
20814
+
20815
+ # Update properties of this object
20816
+ def update!(**args)
20817
+ @workforce_pool_name = args[:workforce_pool_name] if args.key?(:workforce_pool_name)
20818
+ end
20819
+ end
20820
+
20613
20821
  # Metadata related to the progress of the ImportCompletionSuggestions operation.
20614
20822
  # This will be returned by the google.longrunning.Operation.metadata field.
20615
20823
  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.81.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 = "20250902"
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
 
@@ -1192,6 +1210,12 @@ module Google
1192
1210
  include Google::Apis::Core::JsonObjectSupport
1193
1211
  end
1194
1212
 
1213
+ class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
1214
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1215
+
1216
+ include Google::Apis::Core::JsonObjectSupport
1217
+ end
1218
+
1195
1219
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
1196
1220
  class Representation < Google::Apis::Core::JsonRepresentation; end
1197
1221
 
@@ -2104,6 +2128,12 @@ module Google
2104
2128
  include Google::Apis::Core::JsonObjectSupport
2105
2129
  end
2106
2130
 
2131
+ class GoogleCloudDiscoveryengineV1betaAclConfig
2132
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2133
+
2134
+ include Google::Apis::Core::JsonObjectSupport
2135
+ end
2136
+
2107
2137
  class GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
2108
2138
  class Representation < Google::Apis::Core::JsonRepresentation; end
2109
2139
 
@@ -3292,6 +3322,18 @@ module Google
3292
3322
  include Google::Apis::Core::JsonObjectSupport
3293
3323
  end
3294
3324
 
3325
+ class GoogleCloudDiscoveryengineV1betaIdpConfig
3326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3327
+
3328
+ include Google::Apis::Core::JsonObjectSupport
3329
+ end
3330
+
3331
+ class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
3332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3333
+
3334
+ include Google::Apis::Core::JsonObjectSupport
3335
+ end
3336
+
3295
3337
  class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
3296
3338
  class Representation < Google::Apis::Core::JsonRepresentation; end
3297
3339
 
@@ -4864,6 +4906,15 @@ module Google
4864
4906
  end
4865
4907
  end
4866
4908
 
4909
+ class GoogleCloudDiscoveryengineV1AclConfig
4910
+ # @private
4911
+ class Representation < Google::Apis::Core::JsonRepresentation
4912
+ property :idp_config, as: 'idpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfig::Representation
4913
+
4914
+ property :name, as: 'name'
4915
+ end
4916
+ end
4917
+
4867
4918
  class GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig
4868
4919
  # @private
4869
4920
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5367,6 +5418,7 @@ module Google
5367
5418
  class GoogleCloudDiscoveryengineV1Engine
5368
5419
  # @private
5369
5420
  class Representation < Google::Apis::Core::JsonRepresentation
5421
+ property :app_type, as: 'appType'
5370
5422
  property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineConfig::Representation
5371
5423
 
5372
5424
  property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata::Representation
@@ -5493,6 +5545,22 @@ module Google
5493
5545
  end
5494
5546
  end
5495
5547
 
5548
+ class GoogleCloudDiscoveryengineV1IdpConfig
5549
+ # @private
5550
+ class Representation < Google::Apis::Core::JsonRepresentation
5551
+ property :external_idp_config, as: 'externalIdpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig::Representation
5552
+
5553
+ property :idp_type, as: 'idpType'
5554
+ end
5555
+ end
5556
+
5557
+ class GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig
5558
+ # @private
5559
+ class Representation < Google::Apis::Core::JsonRepresentation
5560
+ property :workforce_pool_name, as: 'workforcePoolName'
5561
+ end
5562
+ end
5563
+
5496
5564
  class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
5497
5565
  # @private
5498
5566
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6522,6 +6590,8 @@ module Google
6522
6590
 
6523
6591
  collection :errors, as: 'errors', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
6524
6592
 
6593
+ property :federated_config, as: 'federatedConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig::Representation
6594
+
6525
6595
  property :hybrid_ingestion_disabled, as: 'hybridIngestionDisabled'
6526
6596
  property :identity_refresh_interval, as: 'identityRefreshInterval'
6527
6597
  property :identity_schedule_config, as: 'identityScheduleConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig::Representation
@@ -6540,6 +6610,7 @@ module Google
6540
6610
  property :realtime_sync_config, as: 'realtimeSyncConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig::Representation
6541
6611
 
6542
6612
  property :refresh_interval, as: 'refreshInterval'
6613
+ collection :remove_param_keys, as: 'removeParamKeys'
6543
6614
  property :state, as: 'state'
6544
6615
  collection :static_ip_addresses, as: 'staticIpAddresses'
6545
6616
  property :static_ip_enabled, as: 'staticIpEnabled'
@@ -6558,6 +6629,14 @@ module Google
6558
6629
  end
6559
6630
  end
6560
6631
 
6632
+ class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
6633
+ # @private
6634
+ class Representation < Google::Apis::Core::JsonRepresentation
6635
+ hash :additional_params, as: 'additionalParams'
6636
+ hash :auth_params, as: 'authParams'
6637
+ end
6638
+ end
6639
+
6561
6640
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
6562
6641
  # @private
6563
6642
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6851,6 +6930,7 @@ module Google
6851
6930
  class GoogleCloudDiscoveryengineV1alphaEngine
6852
6931
  # @private
6853
6932
  class Representation < Google::Apis::Core::JsonRepresentation
6933
+ property :app_type, as: 'appType'
6854
6934
  property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig::Representation
6855
6935
 
6856
6936
  property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata::Representation
@@ -8071,6 +8151,15 @@ module Google
8071
8151
  end
8072
8152
  end
8073
8153
 
8154
+ class GoogleCloudDiscoveryengineV1betaAclConfig
8155
+ # @private
8156
+ class Representation < Google::Apis::Core::JsonRepresentation
8157
+ property :idp_config, as: 'idpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig::Representation
8158
+
8159
+ property :name, as: 'name'
8160
+ end
8161
+ end
8162
+
8074
8163
  class GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
8075
8164
  # @private
8076
8165
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9810,6 +9899,7 @@ module Google
9810
9899
  class GoogleCloudDiscoveryengineV1betaEngine
9811
9900
  # @private
9812
9901
  class Representation < Google::Apis::Core::JsonRepresentation
9902
+ property :app_type, as: 'appType'
9813
9903
  property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig::Representation
9814
9904
 
9815
9905
  property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata::Representation
@@ -10065,6 +10155,22 @@ module Google
10065
10155
  end
10066
10156
  end
10067
10157
 
10158
+ class GoogleCloudDiscoveryengineV1betaIdpConfig
10159
+ # @private
10160
+ class Representation < Google::Apis::Core::JsonRepresentation
10161
+ property :external_idp_config, as: 'externalIdpConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig::Representation
10162
+
10163
+ property :idp_type, as: 'idpType'
10164
+ end
10165
+ end
10166
+
10167
+ class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
10168
+ # @private
10169
+ class Representation < Google::Apis::Core::JsonRepresentation
10170
+ property :workforce_pool_name, as: 'workforcePoolName'
10171
+ end
10172
+ end
10173
+
10068
10174
  class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
10069
10175
  # @private
10070
10176
  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.81.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.81.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: