google-apis-beyondcorp_v1alpha 0.28.0 → 0.29.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: 1a624c292998de147ee4e9eb3133d1a614f5c60719024ae241e772e47e39adce
4
- data.tar.gz: fef1b9f81060e7355158665650be31bb1b245c6684b5463108fd0cb6d3ad8cac
3
+ metadata.gz: 20ea2f484cc7d93c9ab3e37c620d19f8bec3b5011b99ca83e10e3a01552d5d97
4
+ data.tar.gz: 54368883fb933a3ed37d069e8def0e6c09293540b25298ca8f311d95b81b2098
5
5
  SHA512:
6
- metadata.gz: ef856887c9b74f233d2002e4ea2dc22a4c9b36550249b8175f1274640dd0017be0f7b19e1063acb8ac2a62737a994d0d8db793d2d6cc9ffa0776c8959b524f4f
7
- data.tar.gz: 3253080e3041a5509172171afeef3457ed12160dc8bb5743b81317b12731a535307d38dde4060fbf8b904564b3fcf09201d680feed522ecef2831da9b67a7c7f
6
+ metadata.gz: 9dd42ac253449e1d3c628af3c94d70c48b49717ed36ea88ddd248ca396d00c16c7f4f584b6680aff9d81b2b7d4abf672dbb004ffa6c56815d3c3a56f4faa5b6c
7
+ data.tar.gz: 5df1fcde7c6f10c204bcd5d6293fe34ac0cb5c19a8b2e642bd24ffb3101ae5eb062e15b5a1c99972a0d86e7656ba7909526b29e83ed551e60f92838481c88f6d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-beyondcorp_v1alpha
2
2
 
3
+ ### v0.29.0 (2023-10-29)
4
+
5
+ * Regenerated from discovery document revision 20231018
6
+
3
7
  ### v0.28.0 (2023-10-22)
4
8
 
5
9
  * 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
- # Output only. Number of seats in the subscription.
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
@@ -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.28.0"
19
+ GEM_VERSION = "0.29.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 = "20231011"
25
+ REVISION = "20231018"
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
@@ -222,6 +222,27 @@ module Google
222
222
  # @param [String] parent
223
223
  # Required. The parent organization to which the PartnerTenants belong. Format: `
224
224
  # organizations/`organization_id`/locations/global`
225
+ # @param [String] filter
226
+ # Optional. A filter specifying constraints of a list operation. All fields in
227
+ # the PartnerTenant message are supported. For example, the following query will
228
+ # return the PartnerTenants with displayName "test-tenant" organizations/$`
229
+ # ORG_ID`/locations/$`LOCATION`/partnerTenants?filter=displayName="test-tenant"
230
+ # Nested fields are also supported. The follow query will return PartnerTenants
231
+ # with internal_tenant_id "1234" organizations/$`ORG_ID`/locations/$`LOCATION`/
232
+ # partnerTenants?filter=partnerMetadata.internalTenantId="1234" For more
233
+ # information, please refer to https://google.aip.dev/160.
234
+ # @param [String] order_by
235
+ # Optional. Specifies the ordering of results. See [Sorting order](https://cloud.
236
+ # google.com/apis/design/design_patterns#sorting_order) for more information.
237
+ # @param [Fixnum] page_size
238
+ # Optional. The maximum number of items to return. If not specified, a default
239
+ # value of 50 will be used by the service. Regardless of the page_size value,
240
+ # the response may include a partial list and a caller should only rely on
241
+ # response's next_page_token to determine if there are more instances left to be
242
+ # queried.
243
+ # @param [String] page_token
244
+ # Optional. The next_page_token value returned from a previous
245
+ # ListPartnerTenantsResponse, if any.
225
246
  # @param [String] fields
226
247
  # Selector specifying which fields to include in a partial response.
227
248
  # @param [String] quota_user
@@ -239,11 +260,15 @@ module Google
239
260
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
240
261
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
241
262
  # @raise [Google::Apis::AuthorizationError] Authorization is required
242
- def list_organization_location_global_partner_tenants(parent, fields: nil, quota_user: nil, options: nil, &block)
263
+ 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
264
  command = make_simple_command(:get, 'v1alpha/{+parent}/partnerTenants', options)
244
265
  command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse::Representation
245
266
  command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse
246
267
  command.params['parent'] = parent unless parent.nil?
268
+ command.query['filter'] = filter unless filter.nil?
269
+ command.query['orderBy'] = order_by unless order_by.nil?
270
+ command.query['pageSize'] = page_size unless page_size.nil?
271
+ command.query['pageToken'] = page_token unless page_token.nil?
247
272
  command.query['fields'] = fields unless fields.nil?
248
273
  command.query['quotaUser'] = quota_user unless quota_user.nil?
249
274
  execute_or_queue_command(command, &block)
@@ -877,6 +902,28 @@ module Google
877
902
  # Required. The parent organization to which the ProxyConfigs belong. Format: `
878
903
  # organizations/`organization_id`/locations/global/partnerTenants/`
879
904
  # partner_tenant_id``
905
+ # @param [String] filter
906
+ # Optional. A filter specifying constraints of a list operation. All fields in
907
+ # the ProxyConfig message are supported. For example, the following query will
908
+ # return the ProxyConfigs with displayName "test-config" organizations/$`ORG_ID`/
909
+ # locations/global/partnerTenants/$`PARTNER_TENANT_ID`/proxyConfigs?filter=
910
+ # displayName="test-config" Nested fields are also supported. The follow query
911
+ # will return ProxyConfigs with pacUri "example.com/pac.pac" organizations/$`
912
+ # ORG_ID`/locations/global/partnerTenants/$`PARTNER_TENANT_ID`/proxyConfigs?
913
+ # filter=routingInfo.pacUri="example.com/pac.pac" For more information, please
914
+ # refer to https://google.aip.dev/160.
915
+ # @param [String] order_by
916
+ # Optional. Specifies the ordering of results. See [Sorting order](https://cloud.
917
+ # google.com/apis/design/design_patterns#sorting_order) for more information.
918
+ # @param [Fixnum] page_size
919
+ # Optional. The maximum number of items to return. If not specified, a default
920
+ # value of 50 will be used by the service. Regardless of the page_size value,
921
+ # the response may include a partial list and a caller should only rely on
922
+ # response's next_page_token to determine if there are more instances left to be
923
+ # queried.
924
+ # @param [String] page_token
925
+ # Optional. The next_page_token value returned from a previous
926
+ # ListProxyConfigsRequest, if any.
880
927
  # @param [String] fields
881
928
  # Selector specifying which fields to include in a partial response.
882
929
  # @param [String] quota_user
@@ -894,11 +941,15 @@ module Google
894
941
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
895
942
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
896
943
  # @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)
944
+ 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
945
  command = make_simple_command(:get, 'v1alpha/{+parent}/proxyConfigs', options)
899
946
  command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse::Representation
900
947
  command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaListProxyConfigsResponse
901
948
  command.params['parent'] = parent unless parent.nil?
949
+ command.query['filter'] = filter unless filter.nil?
950
+ command.query['orderBy'] = order_by unless order_by.nil?
951
+ command.query['pageSize'] = page_size unless page_size.nil?
952
+ command.query['pageToken'] = page_token unless page_token.nil?
902
953
  command.query['fields'] = fields unless fields.nil?
903
954
  command.query['quotaUser'] = quota_user unless quota_user.nil?
904
955
  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.28.0
4
+ version: 0.29.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-10-22 00:00:00.000000000 Z
11
+ date: 2023-10-29 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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.29.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: []