google-apis-beyondcorp_v1 0.29.0 → 0.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/beyondcorp_v1/gem_version.rb +2 -2
- data/lib/google/apis/beyondcorp_v1/service.rb +37 -37
- 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: '057737900e0e17f5a5ef60f771c296fa32c858575ce25cd4c8f566b08b320a91'
|
4
|
+
data.tar.gz: 9776d827ceb093ddde2bd5864a3e67b34a56da83525275ac91f2f559b092f982
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1e925691b2198c2bdede2d8f910d2a80caf120d240830c393487d7b80f40d239bdb83c5ef6af299f1ab5f1cbcaa6836364d9eed547b668497b61a73c804cdf7
|
7
|
+
data.tar.gz: beeea4c1e67b53f06a3ffc4db40fb183a8f1c882f93f1492afbaf169c7d8ec800b4220671b9583717707805609f9087457670b883e95b240679d70eb6a391269
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BeyondcorpV1
|
18
18
|
# Version of the google-apis-beyondcorp_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241024"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2594,6 +2594,43 @@ module Google
|
|
2594
2594
|
execute_or_queue_command(command, &block)
|
2595
2595
|
end
|
2596
2596
|
|
2597
|
+
# Sets the access control policy on the specified resource. Replaces any
|
2598
|
+
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
2599
|
+
# PERMISSION_DENIED` errors.
|
2600
|
+
# @param [String] resource
|
2601
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
2602
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
2603
|
+
# appropriate value for this field.
|
2604
|
+
# @param [Google::Apis::BeyondcorpV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
2605
|
+
# @param [String] fields
|
2606
|
+
# Selector specifying which fields to include in a partial response.
|
2607
|
+
# @param [String] quota_user
|
2608
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2609
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2610
|
+
# @param [Google::Apis::RequestOptions] options
|
2611
|
+
# Request-specific options
|
2612
|
+
#
|
2613
|
+
# @yield [result, err] Result & error if block supplied
|
2614
|
+
# @yieldparam result [Google::Apis::BeyondcorpV1::GoogleIamV1Policy] parsed result object
|
2615
|
+
# @yieldparam err [StandardError] error object if request failed
|
2616
|
+
#
|
2617
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleIamV1Policy]
|
2618
|
+
#
|
2619
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2620
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2621
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2622
|
+
def set_project_location_security_gateway_iam_policy(resource, google_iam_v1_set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2623
|
+
command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
|
2624
|
+
command.request_representation = Google::Apis::BeyondcorpV1::GoogleIamV1SetIamPolicyRequest::Representation
|
2625
|
+
command.request_object = google_iam_v1_set_iam_policy_request_object
|
2626
|
+
command.response_representation = Google::Apis::BeyondcorpV1::GoogleIamV1Policy::Representation
|
2627
|
+
command.response_class = Google::Apis::BeyondcorpV1::GoogleIamV1Policy
|
2628
|
+
command.params['resource'] = resource unless resource.nil?
|
2629
|
+
command.query['fields'] = fields unless fields.nil?
|
2630
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2631
|
+
execute_or_queue_command(command, &block)
|
2632
|
+
end
|
2633
|
+
|
2597
2634
|
# This is a custom method to allow customers to create a peering connections
|
2598
2635
|
# between Google network and customer networks. This is enabled only for the
|
2599
2636
|
# allowlisted customers.
|
@@ -2880,43 +2917,6 @@ module Google
|
|
2880
2917
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2881
2918
|
execute_or_queue_command(command, &block)
|
2882
2919
|
end
|
2883
|
-
|
2884
|
-
# Sets the access control policy on the specified resource. Replaces any
|
2885
|
-
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
2886
|
-
# PERMISSION_DENIED` errors.
|
2887
|
-
# @param [String] resource
|
2888
|
-
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
2889
|
-
# names](https://cloud.google.com/apis/design/resource_names) for the
|
2890
|
-
# appropriate value for this field.
|
2891
|
-
# @param [Google::Apis::BeyondcorpV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
2892
|
-
# @param [String] fields
|
2893
|
-
# Selector specifying which fields to include in a partial response.
|
2894
|
-
# @param [String] quota_user
|
2895
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
2896
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2897
|
-
# @param [Google::Apis::RequestOptions] options
|
2898
|
-
# Request-specific options
|
2899
|
-
#
|
2900
|
-
# @yield [result, err] Result & error if block supplied
|
2901
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::GoogleIamV1Policy] parsed result object
|
2902
|
-
# @yieldparam err [StandardError] error object if request failed
|
2903
|
-
#
|
2904
|
-
# @return [Google::Apis::BeyondcorpV1::GoogleIamV1Policy]
|
2905
|
-
#
|
2906
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2907
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2908
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2909
|
-
def set_v_project_location_security_gateway_iam_policy(resource, google_iam_v1_set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2910
|
-
command = make_simple_command(:post, 'v/{+resource}:setIamPolicy', options)
|
2911
|
-
command.request_representation = Google::Apis::BeyondcorpV1::GoogleIamV1SetIamPolicyRequest::Representation
|
2912
|
-
command.request_object = google_iam_v1_set_iam_policy_request_object
|
2913
|
-
command.response_representation = Google::Apis::BeyondcorpV1::GoogleIamV1Policy::Representation
|
2914
|
-
command.response_class = Google::Apis::BeyondcorpV1::GoogleIamV1Policy
|
2915
|
-
command.params['resource'] = resource unless resource.nil?
|
2916
|
-
command.query['fields'] = fields unless fields.nil?
|
2917
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2918
|
-
execute_or_queue_command(command, &block)
|
2919
|
-
end
|
2920
2920
|
|
2921
2921
|
protected
|
2922
2922
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-beyondcorp_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.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-
|
11
|
+
date: 2024-11-03 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-beyondcorp_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.30.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|