google-apis-connectors_v1 0.54.0 → 0.56.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2bb574044650d4cd6a3d0405be33355802f9f705d3935098a6cc611cb27439aa
4
- data.tar.gz: c67da2d6d9b9251f8066d2329e86ee83304351aa389c1ffafed87abce915c544
3
+ metadata.gz: 43c6201aad25c175e4826dd1c6fc29c835f1eb2f2af632a28c93ab241395798a
4
+ data.tar.gz: d377b5a5c73463dfb0b5d407a3be321396b358ac733553b78f4508a58899b164
5
5
  SHA512:
6
- metadata.gz: 524521de679ea8e173107868038a8fbbd42cfef32c29fb7a31694719419ec1ec14e664558916a38be10fd68c7f0449ae02a12d9142edc472a72e9f4cdaff6688
7
- data.tar.gz: f7443a0d01e73e9ec220ed008d7943872b8af63f190439c16ff0ced6d458848388717fb8f00a1b7558a35e5816551c90fc58fe728d485ab4ef228cd36f207c97
6
+ metadata.gz: af4427125bc1fac6111b17c02d9402516337f3240fac5b8fdde33f4d430e5c09d8087381840a4b6ec42278a74fd668cf276bd3e772070e96344e49a30f167dd3
7
+ data.tar.gz: 3a3257a04f29127b5f3d629113d06885c257139eb5ce2a2ca03b42769675bfa39410764099e8e26996e57fa8114161383c83e0d9508804e2fd41f0087f49941e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.56.0 (2024-03-31)
4
+
5
+ * Regenerated from discovery document revision 20240320
6
+
7
+ ### v0.55.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240319
10
+
3
11
  ### v0.54.0 (2024-03-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20240305
@@ -953,6 +953,12 @@ module Google
953
953
  # @return [Array<Google::Apis::ConnectorsV1::AuthConfigTemplate>]
954
954
  attr_accessor :auth_config_templates
955
955
 
956
+ # Output only. Flag to mark the dynamic auth override.
957
+ # Corresponds to the JSON property `authOverrideEnabled`
958
+ # @return [Boolean]
959
+ attr_accessor :auth_override_enabled
960
+ alias_method :auth_override_enabled?, :auth_override_enabled
961
+
956
962
  # Output only. List of config variables needed to create a connection.
957
963
  # Corresponds to the JSON property `configVariableTemplates`
958
964
  # @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
@@ -1030,6 +1036,11 @@ module Google
1030
1036
  # @return [Array<Google::Apis::ConnectorsV1::RoleGrant>]
1031
1037
  attr_accessor :role_grants
1032
1038
 
1039
+ # Config for connection schema refresh
1040
+ # Corresponds to the JSON property `schemaRefreshConfig`
1041
+ # @return [Google::Apis::ConnectorsV1::SchemaRefreshConfig]
1042
+ attr_accessor :schema_refresh_config
1043
+
1033
1044
  # Ssl config details of a connector version
1034
1045
  # Corresponds to the JSON property `sslConfigTemplate`
1035
1046
  # @return [Google::Apis::ConnectorsV1::SslConfigTemplate]
@@ -1057,6 +1068,7 @@ module Google
1057
1068
  # Update properties of this object
1058
1069
  def update!(**args)
1059
1070
  @auth_config_templates = args[:auth_config_templates] if args.key?(:auth_config_templates)
1071
+ @auth_override_enabled = args[:auth_override_enabled] if args.key?(:auth_override_enabled)
1060
1072
  @config_variable_templates = args[:config_variable_templates] if args.key?(:config_variable_templates)
1061
1073
  @connector_infra_config = args[:connector_infra_config] if args.key?(:connector_infra_config)
1062
1074
  @create_time = args[:create_time] if args.key?(:create_time)
@@ -1070,6 +1082,7 @@ module Google
1070
1082
  @release_version = args[:release_version] if args.key?(:release_version)
1071
1083
  @role_grant = args[:role_grant] if args.key?(:role_grant)
1072
1084
  @role_grants = args[:role_grants] if args.key?(:role_grants)
1085
+ @schema_refresh_config = args[:schema_refresh_config] if args.key?(:schema_refresh_config)
1073
1086
  @ssl_config_template = args[:ssl_config_template] if args.key?(:ssl_config_template)
1074
1087
  @supported_runtime_features = args[:supported_runtime_features] if args.key?(:supported_runtime_features)
1075
1088
  @unsupported_connection_types = args[:unsupported_connection_types] if args.key?(:unsupported_connection_types)
@@ -3486,7 +3499,7 @@ module Google
3486
3499
  end
3487
3500
  end
3488
3501
 
3489
- # LINT.IfChange Defines policies to service maintenance events.
3502
+ # Defines policies to service maintenance events.
3490
3503
  class MaintenancePolicy
3491
3504
  include Google::Apis::Core::Hashable
3492
3505
 
@@ -4733,6 +4746,33 @@ module Google
4733
4746
  end
4734
4747
  end
4735
4748
 
4749
+ # Config for connection schema refresh
4750
+ class SchemaRefreshConfig
4751
+ include Google::Apis::Core::Hashable
4752
+
4753
+ # Whether to use displayName for actions in UI.
4754
+ # Corresponds to the JSON property `useActionDisplayNames`
4755
+ # @return [Boolean]
4756
+ attr_accessor :use_action_display_names
4757
+ alias_method :use_action_display_names?, :use_action_display_names
4758
+
4759
+ # Whether to use synchronous schema refresh.
4760
+ # Corresponds to the JSON property `useSynchronousSchemaRefresh`
4761
+ # @return [Boolean]
4762
+ attr_accessor :use_synchronous_schema_refresh
4763
+ alias_method :use_synchronous_schema_refresh?, :use_synchronous_schema_refresh
4764
+
4765
+ def initialize(**args)
4766
+ update!(**args)
4767
+ end
4768
+
4769
+ # Update properties of this object
4770
+ def update!(**args)
4771
+ @use_action_display_names = args[:use_action_display_names] if args.key?(:use_action_display_names)
4772
+ @use_synchronous_schema_refresh = args[:use_synchronous_schema_refresh] if args.key?(:use_synchronous_schema_refresh)
4773
+ end
4774
+ end
4775
+
4736
4776
  # Secret provides a reference to entries in Secret Manager.
4737
4777
  class Secret
4738
4778
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ConnectorsV1
18
18
  # Version of the google-apis-connectors_v1 gem
19
- GEM_VERSION = "0.54.0"
19
+ GEM_VERSION = "0.56.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240305"
25
+ REVISION = "20240320"
26
26
  end
27
27
  end
28
28
  end
@@ -658,6 +658,12 @@ module Google
658
658
  include Google::Apis::Core::JsonObjectSupport
659
659
  end
660
660
 
661
+ class SchemaRefreshConfig
662
+ class Representation < Google::Apis::Core::JsonRepresentation; end
663
+
664
+ include Google::Apis::Core::JsonObjectSupport
665
+ end
666
+
661
667
  class Secret
662
668
  class Representation < Google::Apis::Core::JsonRepresentation; end
663
669
 
@@ -997,6 +1003,7 @@ module Google
997
1003
  class Representation < Google::Apis::Core::JsonRepresentation
998
1004
  collection :auth_config_templates, as: 'authConfigTemplates', class: Google::Apis::ConnectorsV1::AuthConfigTemplate, decorator: Google::Apis::ConnectorsV1::AuthConfigTemplate::Representation
999
1005
 
1006
+ property :auth_override_enabled, as: 'authOverrideEnabled'
1000
1007
  collection :config_variable_templates, as: 'configVariableTemplates', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
1001
1008
 
1002
1009
  property :connector_infra_config, as: 'connectorInfraConfig', class: Google::Apis::ConnectorsV1::ConnectorInfraConfig, decorator: Google::Apis::ConnectorsV1::ConnectorInfraConfig::Representation
@@ -1017,6 +1024,8 @@ module Google
1017
1024
 
1018
1025
  collection :role_grants, as: 'roleGrants', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
1019
1026
 
1027
+ property :schema_refresh_config, as: 'schemaRefreshConfig', class: Google::Apis::ConnectorsV1::SchemaRefreshConfig, decorator: Google::Apis::ConnectorsV1::SchemaRefreshConfig::Representation
1028
+
1020
1029
  property :ssl_config_template, as: 'sslConfigTemplate', class: Google::Apis::ConnectorsV1::SslConfigTemplate, decorator: Google::Apis::ConnectorsV1::SslConfigTemplate::Representation
1021
1030
 
1022
1031
  property :supported_runtime_features, as: 'supportedRuntimeFeatures', class: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures, decorator: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures::Representation
@@ -2016,6 +2025,14 @@ module Google
2016
2025
  end
2017
2026
  end
2018
2027
 
2028
+ class SchemaRefreshConfig
2029
+ # @private
2030
+ class Representation < Google::Apis::Core::JsonRepresentation
2031
+ property :use_action_display_names, as: 'useActionDisplayNames'
2032
+ property :use_synchronous_schema_refresh, as: 'useSynchronousSchemaRefresh'
2033
+ end
2034
+ end
2035
+
2019
2036
  class Secret
2020
2037
  # @private
2021
2038
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -493,7 +493,8 @@ module Google
493
493
  # connection: * `lock_config` To suspend/resume a connection: * `suspended` To
494
494
  # update the connection details: * `description` * `labels` * `connector_version`
495
495
  # * `config_variables` * `auth_config` * `destination_configs` * `node_config` *
496
- # `log_config` * `ssl_config` * `eventing_enablement_type` * `eventing_config`
496
+ # `log_config` * `ssl_config` * `eventing_enablement_type` * `eventing_config` *
497
+ # `auth_override_enabled`
497
498
  # @param [String] fields
498
499
  # Selector specifying which fields to include in a partial response.
499
500
  # @param [String] quota_user
@@ -1156,6 +1157,38 @@ module Google
1156
1157
  execute_or_queue_command(command, &block)
1157
1158
  end
1158
1159
 
1160
+ # Deletes a single CustomConnectorVersion.
1161
+ # @param [String] name
1162
+ # Required. Resource name of the form: `projects/`project`/locations/`location`/
1163
+ # customConnectors/`custom_connector`/customConnectorVersions/`
1164
+ # custom_connector_version``
1165
+ # @param [String] fields
1166
+ # Selector specifying which fields to include in a partial response.
1167
+ # @param [String] quota_user
1168
+ # Available to use for quota purposes for server-side applications. Can be any
1169
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1170
+ # @param [Google::Apis::RequestOptions] options
1171
+ # Request-specific options
1172
+ #
1173
+ # @yield [result, err] Result & error if block supplied
1174
+ # @yieldparam result [Google::Apis::ConnectorsV1::Operation] parsed result object
1175
+ # @yieldparam err [StandardError] error object if request failed
1176
+ #
1177
+ # @return [Google::Apis::ConnectorsV1::Operation]
1178
+ #
1179
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1180
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1181
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1182
+ def delete_project_location_custom_connector_custom_connector_version(name, fields: nil, quota_user: nil, options: nil, &block)
1183
+ command = make_simple_command(:delete, 'v1/{+name}', options)
1184
+ command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
1185
+ command.response_class = Google::Apis::ConnectorsV1::Operation
1186
+ command.params['name'] = name unless name.nil?
1187
+ command.query['fields'] = fields unless fields.nil?
1188
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1189
+ execute_or_queue_command(command, &block)
1190
+ end
1191
+
1159
1192
  # Creates a new EndpointAttachment in a given project and location.
1160
1193
  # @param [String] parent
1161
1194
  # Required. Parent resource of the EndpointAttachment, of the form: `projects/*/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.54.0
4
+ version: 0.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-10 00:00:00.000000000 Z
11
+ date: 2024-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.54.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.56.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
63
63
  post_install_message:
64
64
  rdoc_options: []