google-apis-beyondcorp_v1alpha 0.28.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 +9 -0
- data/lib/google/apis/beyondcorp_v1alpha/classes.rb +46 -10
- data/lib/google/apis/beyondcorp_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/beyondcorp_v1alpha/representations.rb +2 -0
- data/lib/google/apis/beyondcorp_v1alpha/service.rb +56 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d26260db3fca5799bd3019fb3e18961ff1cee12fd4b3ff05cc6b3dcf71d2847
|
4
|
+
data.tar.gz: 33021f36defc04cbce060549f951f781eab03a25fef4c1d48fce5e809171be59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca051a6ae4c85293887c5043d6e1d364982517aaf7e61ad348faa17c53f9632d78c3f65cd96972ea0ee83cf9ce3201fb43820164436bb21cbfaeb727bd0444ba
|
7
|
+
data.tar.gz: 74cc5cc75d2c018d6de1547b2a2e5583a3cc60601b2a28bec2b8dd31009de5d6880f792a9a2eea09f2e7497223a177f5f7b64f3640fae79f66a28035d80ee8ea
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-beyondcorp_v1alpha
|
2
2
|
|
3
|
+
### v0.30.0 (2024-01-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240103
|
6
|
+
* Regenerated using generator version 0.13.0
|
7
|
+
|
8
|
+
### v0.29.0 (2023-10-29)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20231018
|
11
|
+
|
3
12
|
### v0.28.0 (2023-10-22)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20231011
|
@@ -1925,6 +1925,12 @@ module Google
|
|
1925
1925
|
class GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse
|
1926
1926
|
include Google::Apis::Core::Hashable
|
1927
1927
|
|
1928
|
+
# A token to retrieve the next page of results, or empty if there are no more
|
1929
|
+
# results in the list.
|
1930
|
+
# Corresponds to the JSON property `nextPageToken`
|
1931
|
+
# @return [String]
|
1932
|
+
attr_accessor :next_page_token
|
1933
|
+
|
1928
1934
|
# The list of PartnerTenant objects.
|
1929
1935
|
# Corresponds to the JSON property `partnerTenants`
|
1930
1936
|
# @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant>]
|
@@ -1936,6 +1942,7 @@ module Google
|
|
1936
1942
|
|
1937
1943
|
# Update properties of this object
|
1938
1944
|
def update!(**args)
|
1945
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1939
1946
|
@partner_tenants = args[:partner_tenants] if args.key?(:partner_tenants)
|
1940
1947
|
end
|
1941
1948
|
end
|
@@ -1944,6 +1951,12 @@ module Google
|
|
1944
1951
|
class GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse
|
1945
1952
|
include Google::Apis::Core::Hashable
|
1946
1953
|
|
1954
|
+
# A token to retrieve the next page of results, or empty if there are no more
|
1955
|
+
# results in the list.
|
1956
|
+
# Corresponds to the JSON property `nextPageToken`
|
1957
|
+
# @return [String]
|
1958
|
+
attr_accessor :next_page_token
|
1959
|
+
|
1947
1960
|
# The list of ProxyConfig objects.
|
1948
1961
|
# Corresponds to the JSON property `proxyConfigs`
|
1949
1962
|
# @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig>]
|
@@ -1955,6 +1968,7 @@ module Google
|
|
1955
1968
|
|
1956
1969
|
# Update properties of this object
|
1957
1970
|
def update!(**args)
|
1971
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1958
1972
|
@proxy_configs = args[:proxy_configs] if args.key?(:proxy_configs)
|
1959
1973
|
end
|
1960
1974
|
end
|
@@ -2697,7 +2711,7 @@ module Google
|
|
2697
2711
|
# @return [String]
|
2698
2712
|
attr_accessor :name
|
2699
2713
|
|
2700
|
-
#
|
2714
|
+
# Optional. Number of seats in the subscription.
|
2701
2715
|
# Corresponds to the JSON property `seatCount`
|
2702
2716
|
# @return [Fixnum]
|
2703
2717
|
attr_accessor :seat_count
|
@@ -2922,21 +2936,43 @@ module Google
|
|
2922
2936
|
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
2923
2937
|
# email address that represents a Google group. For example, `admins@example.com`
|
2924
2938
|
# . * `domain:`domain``: The G Suite domain (primary) that represents all the
|
2925
|
-
# users of that domain. For example, `google.com` or `example.com`. * `
|
2926
|
-
#
|
2927
|
-
#
|
2928
|
-
#
|
2929
|
-
#
|
2930
|
-
#
|
2931
|
-
#
|
2932
|
-
#
|
2939
|
+
# users of that domain. For example, `google.com` or `example.com`. * `principal:
|
2940
|
+
# //iam.googleapis.com/locations/global/workforcePools/`pool_id`/subject/`
|
2941
|
+
# subject_attribute_value``: A single identity in a workforce identity pool. * `
|
2942
|
+
# principalSet://iam.googleapis.com/locations/global/workforcePools/`pool_id`/
|
2943
|
+
# group/`group_id``: All workforce identities in a group. * `principalSet://iam.
|
2944
|
+
# googleapis.com/locations/global/workforcePools/`pool_id`/attribute.`
|
2945
|
+
# attribute_name`/`attribute_value``: All workforce identities with a specific
|
2946
|
+
# attribute value. * `principalSet://iam.googleapis.com/locations/global/
|
2947
|
+
# workforcePools/`pool_id`/*`: All identities in a workforce identity pool. * `
|
2948
|
+
# principal://iam.googleapis.com/projects/`project_number`/locations/global/
|
2949
|
+
# workloadIdentityPools/`pool_id`/subject/`subject_attribute_value``: A single
|
2950
|
+
# identity in a workload identity pool. * `principalSet://iam.googleapis.com/
|
2951
|
+
# projects/`project_number`/locations/global/workloadIdentityPools/`pool_id`/
|
2952
|
+
# group/`group_id``: A workload identity pool group. * `principalSet://iam.
|
2953
|
+
# googleapis.com/projects/`project_number`/locations/global/
|
2954
|
+
# workloadIdentityPools/`pool_id`/attribute.`attribute_name`/`attribute_value``:
|
2955
|
+
# All identities in a workload identity pool with a certain attribute. * `
|
2956
|
+
# principalSet://iam.googleapis.com/projects/`project_number`/locations/global/
|
2957
|
+
# workloadIdentityPools/`pool_id`/*`: All identities in a workload identity pool.
|
2958
|
+
# * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
|
2959
|
+
# identifier) representing a user that has been recently deleted. For example, `
|
2960
|
+
# alice@example.com?uid=123456789012345678901`. If the user is recovered, this
|
2961
|
+
# value reverts to `user:`emailid`` and the recovered user retains the role in
|
2962
|
+
# the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
|
2963
|
+
# address (plus unique identifier) representing a service account that has been
|
2964
|
+
# recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
2933
2965
|
# 123456789012345678901`. If the service account is undeleted, this value
|
2934
2966
|
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
2935
2967
|
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
2936
2968
|
# An email address (plus unique identifier) representing a Google group that has
|
2937
2969
|
# been recently deleted. For example, `admins@example.com?uid=
|
2938
2970
|
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
2939
|
-
# group:`emailid`` and the recovered group retains the role in the binding.
|
2971
|
+
# group:`emailid`` and the recovered group retains the role in the binding. * `
|
2972
|
+
# deleted:principal://iam.googleapis.com/locations/global/workforcePools/`
|
2973
|
+
# pool_id`/subject/`subject_attribute_value``: Deleted single identity in a
|
2974
|
+
# workforce identity pool. For example, `deleted:principal://iam.googleapis.com/
|
2975
|
+
# locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`.
|
2940
2976
|
# Corresponds to the JSON property `members`
|
2941
2977
|
# @return [Array<String>]
|
2942
2978
|
attr_accessor :members
|
@@ -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.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.13.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1113,6 +1113,7 @@ module Google
|
|
1113
1113
|
class GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse
|
1114
1114
|
# @private
|
1115
1115
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1116
|
+
property :next_page_token, as: 'nextPageToken'
|
1116
1117
|
collection :partner_tenants, as: 'partnerTenants', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant::Representation
|
1117
1118
|
|
1118
1119
|
end
|
@@ -1121,6 +1122,7 @@ module Google
|
|
1121
1122
|
class GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse
|
1122
1123
|
# @private
|
1123
1124
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1125
|
+
property :next_page_token, as: 'nextPageToken'
|
1124
1126
|
collection :proxy_configs, as: 'proxyConfigs', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig::Representation
|
1125
1127
|
|
1126
1128
|
end
|
@@ -35,6 +35,8 @@ module Google
|
|
35
35
|
#
|
36
36
|
# @see https://cloud.google.com/
|
37
37
|
class BeyondCorpService < Google::Apis::Core::BaseService
|
38
|
+
DEFAULT_ENDPOINT_TEMPLATE = "https://beyondcorp.$UNIVERSE_DOMAIN$/"
|
39
|
+
|
38
40
|
# @return [String]
|
39
41
|
# API key. Your API key identifies your project and provides you with API access,
|
40
42
|
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
@@ -46,7 +48,7 @@ module Google
|
|
46
48
|
attr_accessor :quota_user
|
47
49
|
|
48
50
|
def initialize
|
49
|
-
super(
|
51
|
+
super(DEFAULT_ENDPOINT_TEMPLATE, '',
|
50
52
|
client_name: 'google-apis-beyondcorp_v1alpha',
|
51
53
|
client_version: Google::Apis::BeyondcorpV1alpha::GEM_VERSION)
|
52
54
|
@batch_path = 'batch'
|
@@ -222,6 +224,27 @@ module Google
|
|
222
224
|
# @param [String] parent
|
223
225
|
# Required. The parent organization to which the PartnerTenants belong. Format: `
|
224
226
|
# organizations/`organization_id`/locations/global`
|
227
|
+
# @param [String] filter
|
228
|
+
# Optional. A filter specifying constraints of a list operation. All fields in
|
229
|
+
# the PartnerTenant message are supported. For example, the following query will
|
230
|
+
# return the PartnerTenants with displayName "test-tenant" organizations/$`
|
231
|
+
# ORG_ID`/locations/$`LOCATION`/partnerTenants?filter=displayName="test-tenant"
|
232
|
+
# Nested fields are also supported. The follow query will return PartnerTenants
|
233
|
+
# with internal_tenant_id "1234" organizations/$`ORG_ID`/locations/$`LOCATION`/
|
234
|
+
# partnerTenants?filter=partnerMetadata.internalTenantId="1234" For more
|
235
|
+
# information, please refer to https://google.aip.dev/160.
|
236
|
+
# @param [String] order_by
|
237
|
+
# Optional. Specifies the ordering of results. See [Sorting order](https://cloud.
|
238
|
+
# google.com/apis/design/design_patterns#sorting_order) for more information.
|
239
|
+
# @param [Fixnum] page_size
|
240
|
+
# Optional. The maximum number of items to return. If not specified, a default
|
241
|
+
# value of 50 will be used by the service. Regardless of the page_size value,
|
242
|
+
# the response may include a partial list and a caller should only rely on
|
243
|
+
# response's next_page_token to determine if there are more instances left to be
|
244
|
+
# queried.
|
245
|
+
# @param [String] page_token
|
246
|
+
# Optional. The next_page_token value returned from a previous
|
247
|
+
# ListPartnerTenantsResponse, if any.
|
225
248
|
# @param [String] fields
|
226
249
|
# Selector specifying which fields to include in a partial response.
|
227
250
|
# @param [String] quota_user
|
@@ -239,11 +262,15 @@ module Google
|
|
239
262
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
240
263
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
241
264
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
242
|
-
def list_organization_location_global_partner_tenants(parent, fields: nil, quota_user: nil, options: nil, &block)
|
265
|
+
def list_organization_location_global_partner_tenants(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
243
266
|
command = make_simple_command(:get, 'v1alpha/{+parent}/partnerTenants', options)
|
244
267
|
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse::Representation
|
245
268
|
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse
|
246
269
|
command.params['parent'] = parent unless parent.nil?
|
270
|
+
command.query['filter'] = filter unless filter.nil?
|
271
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
272
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
273
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
247
274
|
command.query['fields'] = fields unless fields.nil?
|
248
275
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
249
276
|
execute_or_queue_command(command, &block)
|
@@ -877,6 +904,28 @@ module Google
|
|
877
904
|
# Required. The parent organization to which the ProxyConfigs belong. Format: `
|
878
905
|
# organizations/`organization_id`/locations/global/partnerTenants/`
|
879
906
|
# partner_tenant_id``
|
907
|
+
# @param [String] filter
|
908
|
+
# Optional. A filter specifying constraints of a list operation. All fields in
|
909
|
+
# the ProxyConfig message are supported. For example, the following query will
|
910
|
+
# return the ProxyConfigs with displayName "test-config" organizations/$`ORG_ID`/
|
911
|
+
# locations/global/partnerTenants/$`PARTNER_TENANT_ID`/proxyConfigs?filter=
|
912
|
+
# displayName="test-config" Nested fields are also supported. The follow query
|
913
|
+
# will return ProxyConfigs with pacUri "example.com/pac.pac" organizations/$`
|
914
|
+
# ORG_ID`/locations/global/partnerTenants/$`PARTNER_TENANT_ID`/proxyConfigs?
|
915
|
+
# filter=routingInfo.pacUri="example.com/pac.pac" For more information, please
|
916
|
+
# refer to https://google.aip.dev/160.
|
917
|
+
# @param [String] order_by
|
918
|
+
# Optional. Specifies the ordering of results. See [Sorting order](https://cloud.
|
919
|
+
# google.com/apis/design/design_patterns#sorting_order) for more information.
|
920
|
+
# @param [Fixnum] page_size
|
921
|
+
# Optional. The maximum number of items to return. If not specified, a default
|
922
|
+
# value of 50 will be used by the service. Regardless of the page_size value,
|
923
|
+
# the response may include a partial list and a caller should only rely on
|
924
|
+
# response's next_page_token to determine if there are more instances left to be
|
925
|
+
# queried.
|
926
|
+
# @param [String] page_token
|
927
|
+
# Optional. The next_page_token value returned from a previous
|
928
|
+
# ListProxyConfigsRequest, if any.
|
880
929
|
# @param [String] fields
|
881
930
|
# Selector specifying which fields to include in a partial response.
|
882
931
|
# @param [String] quota_user
|
@@ -894,11 +943,15 @@ module Google
|
|
894
943
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
895
944
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
896
945
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
897
|
-
def list_organization_location_global_partner_tenant_proxy_configs(parent, fields: nil, quota_user: nil, options: nil, &block)
|
946
|
+
def list_organization_location_global_partner_tenant_proxy_configs(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
898
947
|
command = make_simple_command(:get, 'v1alpha/{+parent}/proxyConfigs', options)
|
899
948
|
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse::Representation
|
900
949
|
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse
|
901
950
|
command.params['parent'] = parent unless parent.nil?
|
951
|
+
command.query['filter'] = filter unless filter.nil?
|
952
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
953
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
954
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
902
955
|
command.query['fields'] = fields unless fields.nil?
|
903
956
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
904
957
|
execute_or_queue_command(command, &block)
|
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.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:
|
11
|
+
date: 2024-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.12.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.12.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.30.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.5.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for BeyondCorp API V1alpha
|