google-apis-beyondcorp_v1alpha 0.35.0 → 0.36.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b51d43c1a47ae74b892681a10800c1fb2a72109e622f614a49e02dbb918b415b
|
4
|
+
data.tar.gz: fa60a73fc8d716c40a33bc05d838461af03df6cb9c8061775174708b25e1f3c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34acbca88caf50c91f014218c9a7df2be1c5071c42810c4409e536dd040fcef010f2cbe5fad3056de0499980732f074c13fb9f1c3caea25fddf81d8e31a07fb9
|
7
|
+
data.tar.gz: f17e1d5375110bfbfe2d7448b66d125eab32f16ffcbbbae69dbec953384fc0436ea76e55f1fb1f4799816b94d79612f08a4b07ccd43270bec7da82ed44d77496
|
data/CHANGELOG.md
CHANGED
@@ -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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240417"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1517,6 +1517,61 @@ module Google
|
|
1517
1517
|
execute_or_queue_command(command, &block)
|
1518
1518
|
end
|
1519
1519
|
|
1520
|
+
# Updates an existing BeyondCorp Enterprise Subscription in a given organization.
|
1521
|
+
# Location will always be global as BeyondCorp subscriptions are per
|
1522
|
+
# organization.
|
1523
|
+
# @param [String] name
|
1524
|
+
# Required. Unique resource name of the Subscription. The name is ignored when
|
1525
|
+
# creating a subscription.
|
1526
|
+
# @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription] google_cloud_beyondcorp_saasplatform_subscriptions_v1alpha_subscription_object
|
1527
|
+
# @param [String] request_id
|
1528
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1529
|
+
# request ID so that if you must retry your request, the server will know to
|
1530
|
+
# ignore the request if it has already been completed. The server will guarantee
|
1531
|
+
# that for at least 60 minutes since the first request. For example, consider a
|
1532
|
+
# situation where you make an initial request and the request times out. If you
|
1533
|
+
# make the request again with the same request ID, the server can check if
|
1534
|
+
# original operation with the same request ID was received, and if so, will
|
1535
|
+
# ignore the second request. This prevents clients from accidentally creating
|
1536
|
+
# duplicate commitments. The request ID must be a valid UUID with the exception
|
1537
|
+
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1538
|
+
# @param [String] update_mask
|
1539
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
1540
|
+
# Subscription resource by the update. The fields specified in the update_mask
|
1541
|
+
# are relative to the resource, not the full request. A field will be
|
1542
|
+
# overwritten if it is in the mask. If the user does not provide a mask then all
|
1543
|
+
# mutable fields will be overwritten. Mutable fields: type, state.
|
1544
|
+
# @param [String] fields
|
1545
|
+
# Selector specifying which fields to include in a partial response.
|
1546
|
+
# @param [String] quota_user
|
1547
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1548
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1549
|
+
# @param [Google::Apis::RequestOptions] options
|
1550
|
+
# Request-specific options
|
1551
|
+
#
|
1552
|
+
# @yield [result, err] Result & error if block supplied
|
1553
|
+
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription] parsed result object
|
1554
|
+
# @yieldparam err [StandardError] error object if request failed
|
1555
|
+
#
|
1556
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription]
|
1557
|
+
#
|
1558
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1559
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1560
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1561
|
+
def patch_organization_location_subscription(name, google_cloud_beyondcorp_saasplatform_subscriptions_v1alpha_subscription_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1562
|
+
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
1563
|
+
command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription::Representation
|
1564
|
+
command.request_object = google_cloud_beyondcorp_saasplatform_subscriptions_v1alpha_subscription_object
|
1565
|
+
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription::Representation
|
1566
|
+
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription
|
1567
|
+
command.params['name'] = name unless name.nil?
|
1568
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
1569
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1570
|
+
command.query['fields'] = fields unless fields.nil?
|
1571
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1572
|
+
execute_or_queue_command(command, &block)
|
1573
|
+
end
|
1574
|
+
|
1520
1575
|
# Gets information about a location.
|
1521
1576
|
# @param [String] name
|
1522
1577
|
# Resource name for the location.
|
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.36.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-
|
11
|
+
date: 2024-04-28 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.36.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: []
|