google-apis-connectors_v1 0.54.0 → 0.55.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed5a8f214209828f547d9d605582d7a16a5bc2cc62cab378a0ea295443d55247
|
4
|
+
data.tar.gz: 25bcde34044fd5ba67e8b054f187d3780d9040241c65a127252934cb28324e09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a42bddd57ac6493245f57c75ed95e9e8294caeedaba6c8c5cdbbc0723d3d8f7a26928e8abaf57f734d941bfb74d03224304db1f9d7417e1ee21d77e9507eede
|
7
|
+
data.tar.gz: 16916134408420f3be4aeebf56e9b50ecb19a77e1a3fd2671635d0485b1a5758d77f90d3edbf3467d144c6a7c7659e29923f20f605ae9b39edec7c9a355a6ba2
|
data/CHANGELOG.md
CHANGED
@@ -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
|
-
#
|
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.
|
19
|
+
GEM_VERSION = "0.55.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 = "
|
25
|
+
REVISION = "20240319"
|
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
|
@@ -1156,6 +1156,38 @@ module Google
|
|
1156
1156
|
execute_or_queue_command(command, &block)
|
1157
1157
|
end
|
1158
1158
|
|
1159
|
+
# Deletes a single CustomConnectorVersion.
|
1160
|
+
# @param [String] name
|
1161
|
+
# Required. Resource name of the form: `projects/`project`/locations/`location`/
|
1162
|
+
# customConnectors/`custom_connector`/customConnectorVersions/`
|
1163
|
+
# custom_connector_version``
|
1164
|
+
# @param [String] fields
|
1165
|
+
# Selector specifying which fields to include in a partial response.
|
1166
|
+
# @param [String] quota_user
|
1167
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1168
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1169
|
+
# @param [Google::Apis::RequestOptions] options
|
1170
|
+
# Request-specific options
|
1171
|
+
#
|
1172
|
+
# @yield [result, err] Result & error if block supplied
|
1173
|
+
# @yieldparam result [Google::Apis::ConnectorsV1::Operation] parsed result object
|
1174
|
+
# @yieldparam err [StandardError] error object if request failed
|
1175
|
+
#
|
1176
|
+
# @return [Google::Apis::ConnectorsV1::Operation]
|
1177
|
+
#
|
1178
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1179
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1180
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1181
|
+
def delete_project_location_custom_connector_custom_connector_version(name, fields: nil, quota_user: nil, options: nil, &block)
|
1182
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
1183
|
+
command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
|
1184
|
+
command.response_class = Google::Apis::ConnectorsV1::Operation
|
1185
|
+
command.params['name'] = name unless name.nil?
|
1186
|
+
command.query['fields'] = fields unless fields.nil?
|
1187
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1188
|
+
execute_or_queue_command(command, &block)
|
1189
|
+
end
|
1190
|
+
|
1159
1191
|
# Creates a new EndpointAttachment in a given project and location.
|
1160
1192
|
# @param [String] parent
|
1161
1193
|
# 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.
|
4
|
+
version: 0.55.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-
|
11
|
+
date: 2024-03-24 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.55.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: []
|