google-apis-connectors_v1 0.57.0 → 0.58.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: c8e1e87638c3f966822260036eecc73e9c73db39a008bf214c9c184972290ea6
4
- data.tar.gz: f5424ccf56a952cde97a3fe77e07ff7e16015efa927db42b79066ce47704120c
3
+ metadata.gz: a4d483ddefacf5c6adcd803079a7214ae56039d40ae1ad55791217894dc7c5ee
4
+ data.tar.gz: 92a14be22427b5504f2f0e31be6b4886a5d33f29e1b990ff0ac472f193d5152b
5
5
  SHA512:
6
- metadata.gz: fdfd898d62e10f1753ebabb9ab3327aab79de3a1542d9cb7fa58aae208d398a04ad1282de27dd3139748c03feb9e80b163d5354b1de0a4fe5a043486c9b73223
7
- data.tar.gz: 2f2a185000ade6339463018169ff81c5461a1f9a7cbed3d0c67b3fd4a36dfd7e0443496bef2029cf5b58ff5db7c80c8f1d4616af1fe1888d3bc935646a2b2767
6
+ metadata.gz: 9db883b2d2fd90e4885a9e74d5faa516da8de608aff6656fb56d68fae8718d21966358bed97bfd9cd58c9fafb736f36b64f36fe28f5ccf05f8fe2ca2870c02c8
7
+ data.tar.gz: 6b7973365d4c3e41efa03bbbcc0a99cd5ccd4ae0b02a9bea867bc9cd042e822665a4c04a249b7f9f41154c7728dbfbb589de50f24c22dd76dad8588043b4fb3b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.58.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240504
6
+ * Regenerated using generator version 0.15.0
7
+
3
8
  ### v0.57.0 (2024-04-21)
4
9
 
5
10
  * Regenerated from discovery document revision 20240415
@@ -1188,6 +1188,11 @@ module Google
1188
1188
  attr_accessor :enabled
1189
1189
  alias_method :enabled?, :enabled
1190
1190
 
1191
+ # Optional. Log configuration level.
1192
+ # Corresponds to the JSON property `level`
1193
+ # @return [String]
1194
+ attr_accessor :level
1195
+
1191
1196
  def initialize(**args)
1192
1197
  update!(**args)
1193
1198
  end
@@ -1195,6 +1200,7 @@ module Google
1195
1200
  # Update properties of this object
1196
1201
  def update!(**args)
1197
1202
  @enabled = args[:enabled] if args.key?(:enabled)
1203
+ @level = args[:level] if args.key?(:level)
1198
1204
  end
1199
1205
  end
1200
1206
 
@@ -1511,6 +1517,19 @@ module Google
1511
1517
  end
1512
1518
  end
1513
1519
 
1520
+ # Request message for ConnectorsService.DeprecateCustomConnectorVersion
1521
+ class DeprecateCustomConnectorVersionRequest
1522
+ include Google::Apis::Core::Hashable
1523
+
1524
+ def initialize(**args)
1525
+ update!(**args)
1526
+ end
1527
+
1528
+ # Update properties of this object
1529
+ def update!(**args)
1530
+ end
1531
+ end
1532
+
1514
1533
  #
1515
1534
  class Destination
1516
1535
  include Google::Apis::Core::Hashable
@@ -1781,6 +1800,14 @@ module Google
1781
1800
  # @return [String]
1782
1801
  attr_accessor :description
1783
1802
 
1803
+ # Optional. The Private Service Connect Connection Endpoint Global Access. https:
1804
+ # //cloud.google.com/vpc/docs/about-accessing-vpc-hosted-services-endpoints#
1805
+ # global-access
1806
+ # Corresponds to the JSON property `endpointGlobalAccess`
1807
+ # @return [Boolean]
1808
+ attr_accessor :endpoint_global_access
1809
+ alias_method :endpoint_global_access?, :endpoint_global_access
1810
+
1784
1811
  # Output only. The Private Service Connect connection endpoint ip
1785
1812
  # Corresponds to the JSON property `endpointIp`
1786
1813
  # @return [String]
@@ -1817,6 +1844,7 @@ module Google
1817
1844
  def update!(**args)
1818
1845
  @create_time = args[:create_time] if args.key?(:create_time)
1819
1846
  @description = args[:description] if args.key?(:description)
1847
+ @endpoint_global_access = args[:endpoint_global_access] if args.key?(:endpoint_global_access)
1820
1848
  @endpoint_ip = args[:endpoint_ip] if args.key?(:endpoint_ip)
1821
1849
  @labels = args[:labels] if args.key?(:labels)
1822
1850
  @name = args[:name] if args.key?(:name)
@@ -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.57.0"
19
+ GEM_VERSION = "0.58.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240415"
25
+ REVISION = "20240504"
26
26
  end
27
27
  end
28
28
  end
@@ -166,6 +166,12 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
+ class DeprecateCustomConnectorVersionRequest
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
169
175
  class Destination
170
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
177
 
@@ -1083,6 +1089,7 @@ module Google
1083
1089
  # @private
1084
1090
  class Representation < Google::Apis::Core::JsonRepresentation
1085
1091
  property :enabled, as: 'enabled'
1092
+ property :level, as: 'level'
1086
1093
  end
1087
1094
  end
1088
1095
 
@@ -1161,6 +1168,12 @@ module Google
1161
1168
  end
1162
1169
  end
1163
1170
 
1171
+ class DeprecateCustomConnectorVersionRequest
1172
+ # @private
1173
+ class Representation < Google::Apis::Core::JsonRepresentation
1174
+ end
1175
+ end
1176
+
1164
1177
  class Destination
1165
1178
  # @private
1166
1179
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1240,6 +1253,7 @@ module Google
1240
1253
  class Representation < Google::Apis::Core::JsonRepresentation
1241
1254
  property :create_time, as: 'createTime'
1242
1255
  property :description, as: 'description'
1256
+ property :endpoint_global_access, as: 'endpointGlobalAccess'
1243
1257
  property :endpoint_ip, as: 'endpointIp'
1244
1258
  hash :labels, as: 'labels'
1245
1259
  property :name, as: 'name'
@@ -1229,6 +1229,41 @@ module Google
1229
1229
  execute_or_queue_command(command, &block)
1230
1230
  end
1231
1231
 
1232
+ # Deprecates a single CustomConnectorVersion.
1233
+ # @param [String] name
1234
+ # Required. Resource name of the form: `projects/`project`/locations/`location`/
1235
+ # customConnectors/`custom_connector`/customConnectorVersions/`
1236
+ # custom_connector_version``
1237
+ # @param [Google::Apis::ConnectorsV1::DeprecateCustomConnectorVersionRequest] deprecate_custom_connector_version_request_object
1238
+ # @param [String] fields
1239
+ # Selector specifying which fields to include in a partial response.
1240
+ # @param [String] quota_user
1241
+ # Available to use for quota purposes for server-side applications. Can be any
1242
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1243
+ # @param [Google::Apis::RequestOptions] options
1244
+ # Request-specific options
1245
+ #
1246
+ # @yield [result, err] Result & error if block supplied
1247
+ # @yieldparam result [Google::Apis::ConnectorsV1::Operation] parsed result object
1248
+ # @yieldparam err [StandardError] error object if request failed
1249
+ #
1250
+ # @return [Google::Apis::ConnectorsV1::Operation]
1251
+ #
1252
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1253
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1254
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1255
+ def deprecate_custom_connector_version(name, deprecate_custom_connector_version_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1256
+ command = make_simple_command(:post, 'v1/{+name}:deprecate', options)
1257
+ command.request_representation = Google::Apis::ConnectorsV1::DeprecateCustomConnectorVersionRequest::Representation
1258
+ command.request_object = deprecate_custom_connector_version_request_object
1259
+ command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
1260
+ command.response_class = Google::Apis::ConnectorsV1::Operation
1261
+ command.params['name'] = name unless name.nil?
1262
+ command.query['fields'] = fields unless fields.nil?
1263
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1264
+ execute_or_queue_command(command, &block)
1265
+ end
1266
+
1232
1267
  # Creates a new EndpointAttachment in a given project and location.
1233
1268
  # @param [String] parent
1234
1269
  # 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.57.0
4
+ version: 0.58.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.58.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: []