google-apis-discoveryengine_v1beta 0.80.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: c186a1fe6f2df8514169e1701a4ef3df255b5d368f5dbd3394f843aa5fbd40c1
4
- data.tar.gz: 0fb630a88896ef0158d44cbc2813a7062542f85648c96c95b7eaa59803bbf07f
3
+ metadata.gz: c7ab5bd7f6bef6e4a84323162658ef6e61160db6818414d5b2a3d6c1d29e3c3d
4
+ data.tar.gz: 63f98c64de9e82fbc0dc238555e037bd3dae413e536033b592a0a4826e17e11d
5
5
  SHA512:
6
- metadata.gz: 9083ca8106122b203393839214336a5a10c7101468e91a28931b73498e5f3e761a42a1a1297eb8eb58b1da35c0adfd1240a65f7e4072663022f6db07c8f833c0
7
- data.tar.gz: fbf726175a8473689d742f78f2ec955b5fe766b83eb79e869a7496359d3a614ab34879b3c50a00c22b257de09b0121970fc11eb9792f9682ee6c6f918872755b
6
+ metadata.gz: 239427185228c0677772060c1f0c0e1206d50f9c3cfe20a1c75d5e602ce35353d9570b672a92fa7539870158ffd43b20294165aa41691bcc288b0fcfaf5e1d4a
7
+ data.tar.gz: cc9c8b2036798484fcc7f3f90d4c4e79f88fef2f8469d60e8b29bee3bc3b642585973a7789b53d29fe4850096bbad3a9c59be5d86d359f8461daddc7f22a3951
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.80.0 (2025-08-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20250824
@@ -7587,6 +7587,12 @@ module Google
7587
7587
  # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
7588
7588
  attr_accessor :errors
7589
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
+
7590
7596
  # Optional. If the connector is a hybrid connector, determines whether ingestion
7591
7597
  # is enabled and appropriate resources are provisioned during connector creation.
7592
7598
  # If the connector is not a hybrid connector, this field is ignored.
@@ -7726,6 +7732,14 @@ module Google
7726
7732
  # @return [String]
7727
7733
  attr_accessor :refresh_interval
7728
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
+
7729
7743
  # Output only. State of the connector.
7730
7744
  # Corresponds to the JSON property `state`
7731
7745
  # @return [String]
@@ -7774,6 +7788,7 @@ module Google
7774
7788
  @end_user_config = args[:end_user_config] if args.key?(:end_user_config)
7775
7789
  @entities = args[:entities] if args.key?(:entities)
7776
7790
  @errors = args[:errors] if args.key?(:errors)
7791
+ @federated_config = args[:federated_config] if args.key?(:federated_config)
7777
7792
  @hybrid_ingestion_disabled = args[:hybrid_ingestion_disabled] if args.key?(:hybrid_ingestion_disabled)
7778
7793
  @identity_refresh_interval = args[:identity_refresh_interval] if args.key?(:identity_refresh_interval)
7779
7794
  @identity_schedule_config = args[:identity_schedule_config] if args.key?(:identity_schedule_config)
@@ -7789,6 +7804,7 @@ module Google
7789
7804
  @realtime_state = args[:realtime_state] if args.key?(:realtime_state)
7790
7805
  @realtime_sync_config = args[:realtime_sync_config] if args.key?(:realtime_sync_config)
7791
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)
7792
7808
  @state = args[:state] if args.key?(:state)
7793
7809
  @static_ip_addresses = args[:static_ip_addresses] if args.key?(:static_ip_addresses)
7794
7810
  @static_ip_enabled = args[:static_ip_enabled] if args.key?(:static_ip_enabled)
@@ -7830,6 +7846,32 @@ module Google
7830
7846
  end
7831
7847
  end
7832
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
+
7833
7875
  # The configuration for realtime sync to store additional params for realtime
7834
7876
  # sync.
7835
7877
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
@@ -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.80.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 = "20250824"
25
+ REVISION = "20250902"
26
26
  end
27
27
  end
28
28
  end
@@ -1210,6 +1210,12 @@ module Google
1210
1210
  include Google::Apis::Core::JsonObjectSupport
1211
1211
  end
1212
1212
 
1213
+ class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
1214
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1215
+
1216
+ include Google::Apis::Core::JsonObjectSupport
1217
+ end
1218
+
1213
1219
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
1214
1220
  class Representation < Google::Apis::Core::JsonRepresentation; end
1215
1221
 
@@ -6584,6 +6590,8 @@ module Google
6584
6590
 
6585
6591
  collection :errors, as: 'errors', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
6586
6592
 
6593
+ property :federated_config, as: 'federatedConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig::Representation
6594
+
6587
6595
  property :hybrid_ingestion_disabled, as: 'hybridIngestionDisabled'
6588
6596
  property :identity_refresh_interval, as: 'identityRefreshInterval'
6589
6597
  property :identity_schedule_config, as: 'identityScheduleConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig::Representation
@@ -6602,6 +6610,7 @@ module Google
6602
6610
  property :realtime_sync_config, as: 'realtimeSyncConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig::Representation
6603
6611
 
6604
6612
  property :refresh_interval, as: 'refreshInterval'
6613
+ collection :remove_param_keys, as: 'removeParamKeys'
6605
6614
  property :state, as: 'state'
6606
6615
  collection :static_ip_addresses, as: 'staticIpAddresses'
6607
6616
  property :static_ip_enabled, as: 'staticIpEnabled'
@@ -6620,6 +6629,14 @@ module Google
6620
6629
  end
6621
6630
  end
6622
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
+
6623
6640
  class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
6624
6641
  # @private
6625
6642
  class Representation < Google::Apis::Core::JsonRepresentation
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.80.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.80.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: