google-apis-discoveryengine_v1 0.49.0 → 0.50.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: 7796ec667245a5ea02e96e76d1d32e2a8efe9ecc4f5bbe5dbe2f61bad53342ab
4
- data.tar.gz: 377ace7bcd7708e0c6887f7cade3b2e0ae13984e3445f5e2ed6cad77e2c6bfc2
3
+ metadata.gz: 4c56926b6d1a6f6589d6a92e17bc30872f6f69fe0ab8fbdb154530cd41128a08
4
+ data.tar.gz: 89714260678dafd41acfa3d0cd7d218e3bee19a5632bb9e123b3cd458e3f37aa
5
5
  SHA512:
6
- metadata.gz: ca2571bebad9cd68fe3dc52baccf0329f740ccf55c9008e929c822a656d110cc68111d87baecf29e55dc94b49e09650e9748f6266a6d394677d0993d2c4c9e7a
7
- data.tar.gz: 45da4bcf579acf43348d9167e9c7d64cd5edf75246a601644ab91c5caec4e2e17cd32b58da47b652bc0ca97bddb57181aa8fbe17068263b5a265c2b4cd83efd9
6
+ metadata.gz: d08cf81627e3fe62b09528f3ceb92db877ee7af05c498beee3dc3999fb894c94aa369f2a23b818d89a878e10a0f4d564ae063ff3c3637f7dd52cdef8318614eb
7
+ data.tar.gz: c15f63d460481c99140d6ad6c7f1091179da4ada3255117159ebae26f3521d01cc8d159177a7102e70d4314dbb4c9a0baa3d91a28ca9e6753e1c57a646f6ea95
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.50.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250902
6
+
3
7
  ### v0.49.0 (2025-08-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20250824
@@ -16056,6 +16056,12 @@ module Google
16056
16056
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
16057
16057
  attr_accessor :errors
16058
16058
 
16059
+ # Any params and credentials used specifically for hybrid connectors supporting
16060
+ # FEDERATED mode.
16061
+ # Corresponds to the JSON property `federatedConfig`
16062
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig]
16063
+ attr_accessor :federated_config
16064
+
16059
16065
  # Optional. If the connector is a hybrid connector, determines whether ingestion
16060
16066
  # is enabled and appropriate resources are provisioned during connector creation.
16061
16067
  # If the connector is not a hybrid connector, this field is ignored.
@@ -16195,6 +16201,14 @@ module Google
16195
16201
  # @return [String]
16196
16202
  attr_accessor :refresh_interval
16197
16203
 
16204
+ # Optional. Specifies keys to be removed from the 'params' field. This is only
16205
+ # active when 'params' is included in the 'update_mask' in an
16206
+ # UpdateDataConnectorRequest. Deletion takes precedence if a key is both in '
16207
+ # remove_param_keys' and present in the 'params' field of the request.
16208
+ # Corresponds to the JSON property `removeParamKeys`
16209
+ # @return [Array<String>]
16210
+ attr_accessor :remove_param_keys
16211
+
16198
16212
  # Output only. State of the connector.
16199
16213
  # Corresponds to the JSON property `state`
16200
16214
  # @return [String]
@@ -16243,6 +16257,7 @@ module Google
16243
16257
  @end_user_config = args[:end_user_config] if args.key?(:end_user_config)
16244
16258
  @entities = args[:entities] if args.key?(:entities)
16245
16259
  @errors = args[:errors] if args.key?(:errors)
16260
+ @federated_config = args[:federated_config] if args.key?(:federated_config)
16246
16261
  @hybrid_ingestion_disabled = args[:hybrid_ingestion_disabled] if args.key?(:hybrid_ingestion_disabled)
16247
16262
  @identity_refresh_interval = args[:identity_refresh_interval] if args.key?(:identity_refresh_interval)
16248
16263
  @identity_schedule_config = args[:identity_schedule_config] if args.key?(:identity_schedule_config)
@@ -16258,6 +16273,7 @@ module Google
16258
16273
  @realtime_state = args[:realtime_state] if args.key?(:realtime_state)
16259
16274
  @realtime_sync_config = args[:realtime_sync_config] if args.key?(:realtime_sync_config)
16260
16275
  @refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
16276
+ @remove_param_keys = args[:remove_param_keys] if args.key?(:remove_param_keys)
16261
16277
  @state = args[:state] if args.key?(:state)
16262
16278
  @static_ip_addresses = args[:static_ip_addresses] if args.key?(:static_ip_addresses)
16263
16279
  @static_ip_enabled = args[:static_ip_enabled] if args.key?(:static_ip_enabled)
@@ -16299,6 +16315,32 @@ module Google
16299
16315
  end
16300
16316
  end
16301
16317
 
16318
+ # Any params and credentials used specifically for hybrid connectors supporting
16319
+ # FEDERATED mode.
16320
+ class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
16321
+ include Google::Apis::Core::Hashable
16322
+
16323
+ # Optional. Any additional parameters needed for FEDERATED.
16324
+ # Corresponds to the JSON property `additionalParams`
16325
+ # @return [Hash<String,Object>]
16326
+ attr_accessor :additional_params
16327
+
16328
+ # Optional. Any authentication parameters specific to FEDERATED.
16329
+ # Corresponds to the JSON property `authParams`
16330
+ # @return [Hash<String,Object>]
16331
+ attr_accessor :auth_params
16332
+
16333
+ def initialize(**args)
16334
+ update!(**args)
16335
+ end
16336
+
16337
+ # Update properties of this object
16338
+ def update!(**args)
16339
+ @additional_params = args[:additional_params] if args.key?(:additional_params)
16340
+ @auth_params = args[:auth_params] if args.key?(:auth_params)
16341
+ end
16342
+ end
16343
+
16302
16344
  # The configuration for realtime sync to store additional params for realtime
16303
16345
  # sync.
16304
16346
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
@@ -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.49.0"
19
+ GEM_VERSION = "0.50.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 = "20250824"
25
+ REVISION = "20250902"
26
26
  end
27
27
  end
28
28
  end
@@ -2554,6 +2554,12 @@ module Google
2554
2554
  include Google::Apis::Core::JsonObjectSupport
2555
2555
  end
2556
2556
 
2557
+ class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
2558
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2559
+
2560
+ include Google::Apis::Core::JsonObjectSupport
2561
+ end
2562
+
2557
2563
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
2558
2564
  class Representation < Google::Apis::Core::JsonRepresentation; end
2559
2565
 
@@ -8690,6 +8696,8 @@ module Google
8690
8696
 
8691
8697
  collection :errors, as: 'errors', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
8692
8698
 
8699
+ property :federated_config, as: 'federatedConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig::Representation
8700
+
8693
8701
  property :hybrid_ingestion_disabled, as: 'hybridIngestionDisabled'
8694
8702
  property :identity_refresh_interval, as: 'identityRefreshInterval'
8695
8703
  property :identity_schedule_config, as: 'identityScheduleConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig::Representation
@@ -8708,6 +8716,7 @@ module Google
8708
8716
  property :realtime_sync_config, as: 'realtimeSyncConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig::Representation
8709
8717
 
8710
8718
  property :refresh_interval, as: 'refreshInterval'
8719
+ collection :remove_param_keys, as: 'removeParamKeys'
8711
8720
  property :state, as: 'state'
8712
8721
  collection :static_ip_addresses, as: 'staticIpAddresses'
8713
8722
  property :static_ip_enabled, as: 'staticIpEnabled'
@@ -8726,6 +8735,14 @@ module Google
8726
8735
  end
8727
8736
  end
8728
8737
 
8738
+ class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
8739
+ # @private
8740
+ class Representation < Google::Apis::Core::JsonRepresentation
8741
+ hash :additional_params, as: 'additionalParams'
8742
+ hash :auth_params, as: 'authParams'
8743
+ end
8744
+ end
8745
+
8729
8746
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
8730
8747
  # @private
8731
8748
  class Representation < Google::Apis::Core::JsonRepresentation
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.49.0
4
+ version: 0.50.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.49.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.50.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: