google-apis-beyondcorp_v1alpha 0.20.0 → 0.21.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/beyondcorp_v1alpha/classes.rb +5 -11
- data/lib/google/apis/beyondcorp_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/beyondcorp_v1alpha/representations.rb +2 -2
- data/lib/google/apis/beyondcorp_v1alpha/service.rb +95 -0
- 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: 189c62461b095c08002d4dce0db339a893ffe3fbde2f5d686260bcbc72669b38
|
4
|
+
data.tar.gz: 963708c750fb06ba49e5b645b9931f4315c738b6b7992dff86248f537d0b4d25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb1c444de1a7d3d68c5ba128d365b3d4764d5e679c7bf0d97e5c9ecb95ad48631add76906745804ecfa691456adc2adc282fbcadf2dd9e26d4bad69150ceb692
|
7
|
+
data.tar.gz: 9603319112c1a9be76cc7a12bf975b7e285a6ee730d94e51f3901f5460d67c37a895c66a4241ec3806fc14dbb16e8f0076383ac0f6c9d6271c3437da6cf5868f
|
data/CHANGELOG.md
CHANGED
@@ -2329,15 +2329,10 @@ module Google
|
|
2329
2329
|
# @return [String]
|
2330
2330
|
attr_accessor :display_name
|
2331
2331
|
|
2332
|
-
#
|
2333
|
-
# Corresponds to the JSON property `
|
2334
|
-
# @return [
|
2335
|
-
attr_accessor :
|
2336
|
-
|
2337
|
-
# Optional. Google group ID to which the PartnerTenant is enabled.
|
2338
|
-
# Corresponds to the JSON property `googleGroupId`
|
2339
|
-
# @return [String]
|
2340
|
-
attr_accessor :google_group_id
|
2332
|
+
# Message to capture group information
|
2333
|
+
# Corresponds to the JSON property `group`
|
2334
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaGroup]
|
2335
|
+
attr_accessor :group
|
2341
2336
|
|
2342
2337
|
# Output only. Unique resource name of the PartnerTenant. The name is ignored
|
2343
2338
|
# when creating PartnerTenant.
|
@@ -2363,8 +2358,7 @@ module Google
|
|
2363
2358
|
def update!(**args)
|
2364
2359
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2365
2360
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2366
|
-
@
|
2367
|
-
@google_group_id = args[:google_group_id] if args.key?(:google_group_id)
|
2361
|
+
@group = args[:group] if args.key?(:group)
|
2368
2362
|
@name = args[:name] if args.key?(:name)
|
2369
2363
|
@partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
|
2370
2364
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BeyondcorpV1alpha
|
18
18
|
# Version of the google-apis-beyondcorp_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.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 = "20230531"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1275,8 +1275,8 @@ module Google
|
|
1275
1275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1276
1276
|
property :create_time, as: 'createTime'
|
1277
1277
|
property :display_name, as: 'displayName'
|
1278
|
-
property :
|
1279
|
-
|
1278
|
+
property :group, as: 'group', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaGroup, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaGroup::Representation
|
1279
|
+
|
1280
1280
|
property :name, as: 'name'
|
1281
1281
|
property :partner_metadata, as: 'partnerMetadata', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata::Representation
|
1282
1282
|
|
@@ -273,6 +273,59 @@ module Google
|
|
273
273
|
execute_or_queue_command(command, &block)
|
274
274
|
end
|
275
275
|
|
276
|
+
# Updates a single PartnerTenant.
|
277
|
+
# @param [String] name
|
278
|
+
# Output only. Unique resource name of the PartnerTenant. The name is ignored
|
279
|
+
# when creating PartnerTenant.
|
280
|
+
# @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant] google_cloud_beyondcorp_partnerservices_v1alpha_partner_tenant_object
|
281
|
+
# @param [String] request_id
|
282
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
283
|
+
# request ID so that if you must retry your request, the server will know to
|
284
|
+
# ignore the request if it has already been completed. The server will guarantee
|
285
|
+
# that for at least 60 minutes since the first request. For example, consider a
|
286
|
+
# situation where you make an initial request and the request times out. If you
|
287
|
+
# make the request again with the same request ID, the server can check if
|
288
|
+
# original operation with the same request ID was received, and if so, will
|
289
|
+
# ignore the second request. This prevents clients from accidentally creating
|
290
|
+
# duplicate commitments. The request ID must be a valid UUID with the exception
|
291
|
+
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
292
|
+
# @param [String] update_mask
|
293
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
294
|
+
# PartnerTenant resource by the update. The fields specified in the update_mask
|
295
|
+
# are relative to the resource, not the full request. A field will be
|
296
|
+
# overwritten if it is in the mask. If the user does not provide a mask then all
|
297
|
+
# fields will be overwritten.
|
298
|
+
# @param [String] fields
|
299
|
+
# Selector specifying which fields to include in a partial response.
|
300
|
+
# @param [String] quota_user
|
301
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
302
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
303
|
+
# @param [Google::Apis::RequestOptions] options
|
304
|
+
# Request-specific options
|
305
|
+
#
|
306
|
+
# @yield [result, err] Result & error if block supplied
|
307
|
+
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
|
308
|
+
# @yieldparam err [StandardError] error object if request failed
|
309
|
+
#
|
310
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
|
311
|
+
#
|
312
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
313
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
314
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
315
|
+
def patch_organization_location_global_partner_tenant(name, google_cloud_beyondcorp_partnerservices_v1alpha_partner_tenant_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
316
|
+
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
317
|
+
command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant::Representation
|
318
|
+
command.request_object = google_cloud_beyondcorp_partnerservices_v1alpha_partner_tenant_object
|
319
|
+
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
|
320
|
+
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
|
321
|
+
command.params['name'] = name unless name.nil?
|
322
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
323
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
324
|
+
command.query['fields'] = fields unless fields.nil?
|
325
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
326
|
+
execute_or_queue_command(command, &block)
|
327
|
+
end
|
328
|
+
|
276
329
|
# Sets the access control policy on the specified resource. Replaces any
|
277
330
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
278
331
|
# PERMISSION_DENIED` errors.
|
@@ -597,6 +650,48 @@ module Google
|
|
597
650
|
execute_or_queue_command(command, &block)
|
598
651
|
end
|
599
652
|
|
653
|
+
# Deletes a single ProxyConfig.
|
654
|
+
# @param [String] name
|
655
|
+
# Required. Name of the resource.
|
656
|
+
# @param [String] request_id
|
657
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
658
|
+
# request ID so that if you must retry your request, the server will know to
|
659
|
+
# ignore the request if it has already been completed. The server will guarantee
|
660
|
+
# that for at least 60 minutes after the first request. For example, consider a
|
661
|
+
# situation where you make an initial request and the request times out. If you
|
662
|
+
# make the request again with the same request ID, the server can check if
|
663
|
+
# original operation with the same request ID was received, and if so, will
|
664
|
+
# ignore the second request. This prevents clients from accidentally creating
|
665
|
+
# duplicate commitments. The request ID must be a valid UUID with the exception
|
666
|
+
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
667
|
+
# @param [String] fields
|
668
|
+
# Selector specifying which fields to include in a partial response.
|
669
|
+
# @param [String] quota_user
|
670
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
671
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
672
|
+
# @param [Google::Apis::RequestOptions] options
|
673
|
+
# Request-specific options
|
674
|
+
#
|
675
|
+
# @yield [result, err] Result & error if block supplied
|
676
|
+
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
|
677
|
+
# @yieldparam err [StandardError] error object if request failed
|
678
|
+
#
|
679
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
|
680
|
+
#
|
681
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
682
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
683
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
684
|
+
def delete_organization_location_global_partner_tenant_proxy_config(name, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
685
|
+
command = make_simple_command(:delete, 'v1alpha/{+name}', options)
|
686
|
+
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
|
687
|
+
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
|
688
|
+
command.params['name'] = name unless name.nil?
|
689
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
690
|
+
command.query['fields'] = fields unless fields.nil?
|
691
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
692
|
+
execute_or_queue_command(command, &block)
|
693
|
+
end
|
694
|
+
|
600
695
|
# Gets details of a single ProxyConfig.
|
601
696
|
# @param [String] name
|
602
697
|
# Required. The resource name of the ProxyConfig using the form: `organizations/`
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-beyondcorp_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.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-06-11 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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|