google-apis-vpcaccess_v1 0.1.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/vpcaccess_v1/gem_version.rb +2 -2
- data/lib/google/apis/vpcaccess_v1/service.rb +38 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b45148865c078319100f6cd8d4f129a161cfa01d9bd4cf7039b32ec8e6b79483
|
4
|
+
data.tar.gz: a6f4c4b9a8a8013d2d2bac6f9397f1f68230637ff814bcce0a4c3bcace2acc58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72a8e7c33e6bcff45239dc322c854b26ee818508633286d6f1bec1e17326327c960090bff1c53a78dc19e6a0f6ee0dffb058375d813da6faf7f0bcee039f66c4
|
7
|
+
data.tar.gz: e28f942f289ac43647c67fd2582223b7be88bca870e7608b6cd74b8327e88e5894df34f745fd7d73289394cd661a4c3546392b00f1bd80d6dedc944fd02e3148
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VpcaccessV1
|
18
18
|
# Version of the google-apis-vpcaccess_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230309"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -227,6 +227,43 @@ module Google
|
|
227
227
|
execute_or_queue_command(command, &block)
|
228
228
|
end
|
229
229
|
|
230
|
+
# Updates a Serverless VPC Access connector, returns an operation.
|
231
|
+
# @param [String] name
|
232
|
+
# The resource name in the format `projects/*/locations/*/connectors/*`.
|
233
|
+
# @param [Google::Apis::VpcaccessV1::Connector] connector_object
|
234
|
+
# @param [String] update_mask
|
235
|
+
# The fields to update on the entry group. If absent or empty, all modifiable
|
236
|
+
# fields are updated.
|
237
|
+
# @param [String] fields
|
238
|
+
# Selector specifying which fields to include in a partial response.
|
239
|
+
# @param [String] quota_user
|
240
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
241
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
242
|
+
# @param [Google::Apis::RequestOptions] options
|
243
|
+
# Request-specific options
|
244
|
+
#
|
245
|
+
# @yield [result, err] Result & error if block supplied
|
246
|
+
# @yieldparam result [Google::Apis::VpcaccessV1::Operation] parsed result object
|
247
|
+
# @yieldparam err [StandardError] error object if request failed
|
248
|
+
#
|
249
|
+
# @return [Google::Apis::VpcaccessV1::Operation]
|
250
|
+
#
|
251
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
252
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
253
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
254
|
+
def patch_project_location_connector(name, connector_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
255
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
256
|
+
command.request_representation = Google::Apis::VpcaccessV1::Connector::Representation
|
257
|
+
command.request_object = connector_object
|
258
|
+
command.response_representation = Google::Apis::VpcaccessV1::Operation::Representation
|
259
|
+
command.response_class = Google::Apis::VpcaccessV1::Operation
|
260
|
+
command.params['name'] = name unless name.nil?
|
261
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
262
|
+
command.query['fields'] = fields unless fields.nil?
|
263
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
264
|
+
execute_or_queue_command(command, &block)
|
265
|
+
end
|
266
|
+
|
230
267
|
# Gets the latest state of a long-running operation. Clients can use this method
|
231
268
|
# to poll the operation result at intervals as recommended by the API service.
|
232
269
|
# @param [String] name
|
@@ -259,13 +296,7 @@ module Google
|
|
259
296
|
end
|
260
297
|
|
261
298
|
# Lists operations that match the specified filter in the request. If the server
|
262
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
263
|
-
# binding allows API services to override the binding to use different resource
|
264
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
265
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
266
|
-
# service configuration. For backwards compatibility, the default name includes
|
267
|
-
# the operations collection id, however overriding users must ensure the name
|
268
|
-
# binding is the parent resource, without the operations collection id.
|
299
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
269
300
|
# @param [String] name
|
270
301
|
# The name of the operation's parent resource.
|
271
302
|
# @param [String] filter
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vpcaccess_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.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: 2023-
|
11
|
+
date: 2023-03-19 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-vpcaccess_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vpcaccess_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vpcaccess_v1/v0.2.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vpcaccess_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|