google-apis-networkservices_v1 0.56.0 → 0.57.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 525c44733913b661574b58588087e61f6e6d312423d409a58e4ea25d68e6e0a5
|
4
|
+
data.tar.gz: 2853e6497657b906195a01c824c82381350b9f570d89d37e14bca0d4d88f0045
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a15f7bd5d409d93c78842dd4bdde12d7140fe14719364b3ae46b436f5c4b975bde68c09d0d2fb4e6b5bc67f6b7e3f6dd577e4f71661502cf2d005ea4f2193291
|
7
|
+
data.tar.gz: 2a816e85986e758009867cdc8ff773d852305caadbe79beac4b878a11549ab4d00624e202fee83c475ffa986ce03fe1ca6ecd7c00af69823cf6e94bc5fed7ae4
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1
|
18
18
|
# Version of the google-apis-networkservices_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250508"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2492,6 +2492,47 @@ module Google
|
|
2492
2492
|
execute_or_queue_command(command, &block)
|
2493
2493
|
end
|
2494
2494
|
|
2495
|
+
# Updates the parameters of a single ServiceBinding.
|
2496
|
+
# @param [String] name
|
2497
|
+
# Identifier. Name of the ServiceBinding resource. It matches pattern `projects/*
|
2498
|
+
# /locations/*/serviceBindings/`.
|
2499
|
+
# @param [Google::Apis::NetworkservicesV1::ServiceBinding] service_binding_object
|
2500
|
+
# @param [String] update_mask
|
2501
|
+
# Optional. Field mask is used to specify the fields to be overwritten in the
|
2502
|
+
# ServiceBinding resource by the update. The fields specified in the update_mask
|
2503
|
+
# are relative to the resource, not the full request. A field will be
|
2504
|
+
# overwritten if it is in the mask. If the user does not provide a mask then all
|
2505
|
+
# fields will be overwritten.
|
2506
|
+
# @param [String] fields
|
2507
|
+
# Selector specifying which fields to include in a partial response.
|
2508
|
+
# @param [String] quota_user
|
2509
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2510
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2511
|
+
# @param [Google::Apis::RequestOptions] options
|
2512
|
+
# Request-specific options
|
2513
|
+
#
|
2514
|
+
# @yield [result, err] Result & error if block supplied
|
2515
|
+
# @yieldparam result [Google::Apis::NetworkservicesV1::Operation] parsed result object
|
2516
|
+
# @yieldparam err [StandardError] error object if request failed
|
2517
|
+
#
|
2518
|
+
# @return [Google::Apis::NetworkservicesV1::Operation]
|
2519
|
+
#
|
2520
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2521
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2522
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2523
|
+
def patch_project_location_service_binding(name, service_binding_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2524
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
2525
|
+
command.request_representation = Google::Apis::NetworkservicesV1::ServiceBinding::Representation
|
2526
|
+
command.request_object = service_binding_object
|
2527
|
+
command.response_representation = Google::Apis::NetworkservicesV1::Operation::Representation
|
2528
|
+
command.response_class = Google::Apis::NetworkservicesV1::Operation
|
2529
|
+
command.params['name'] = name unless name.nil?
|
2530
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
2531
|
+
command.query['fields'] = fields unless fields.nil?
|
2532
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2533
|
+
execute_or_queue_command(command, &block)
|
2534
|
+
end
|
2535
|
+
|
2495
2536
|
# Creates a new ServiceLbPolicy in a given project and location.
|
2496
2537
|
# @param [String] parent
|
2497
2538
|
# Required. The parent resource of the ServiceLbPolicy. Must be in the format `
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.57.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-networkservices_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.57.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|