google-apis-accesscontextmanager_v1 0.61.0 → 0.63.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: 73b856be415e42c3ec6a405f2eb31e44eebccda8a6ce87c1dd85a565db257d2e
4
- data.tar.gz: 8e430daab2cd6ba54e443355b453f1aee2f9043b4d4c7f8b12645c1a284d4c69
3
+ metadata.gz: 45bc549ac2b98da41b3b831f1294e0ca459222f2eb05f4a3c1cb573ab2e51aff
4
+ data.tar.gz: e70f4d9e54f0f6259fbd3d02137e653bd64ffb1fd0ebc8c82e7dd16b7aa1fe21
5
5
  SHA512:
6
- metadata.gz: d55120aa1a020f85501eee7476e29a2eff82f511d861b0c43dcbdbc0c5d6a7fcf99b2af9924f1e7445552e42ca0236b8d7c5d2c652c5611c945bc5f42757a17c
7
- data.tar.gz: f6aa0f7cd81659efdbf72f0364b47eb140ed3315d60021311788a83b78b78fc18c975b385c88557cc4ac76998732d3e2be5de3ceb64efc0e055214f44956d41e
6
+ metadata.gz: 3a6178a8cb778e52700f1d039d617ade57ccb95a0abd84b717b19b046cd40ea47c56a4fab601c7d7c24bbafc8450610fcaf12d75b245c94d6d594fdacd1e44e1
7
+ data.tar.gz: 622ec36c08bca8189b68760124fdc108d7070bdab168d6a16c44e566957b24184a7661d1e85ac581fbf2c066781f24bc0aee1b4f662a34ee356269a0435ffe6e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-accesscontextmanager_v1
2
2
 
3
+ ### v0.63.0 (2026-03-22)
4
+
5
+ * Regenerated from discovery document revision 20260311
6
+
7
+ ### v0.62.0 (2026-03-15)
8
+
9
+ * Regenerated from discovery document revision 20260215
10
+
3
11
  ### v0.61.0 (2025-11-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20251112
@@ -780,10 +780,8 @@ module Google
780
780
 
781
781
  # A list of identities that are allowed access through [EgressPolicy].
782
782
  # Identities can be an individual user, service account, Google group, or third-
783
- # party identity. For third-party identity, only single identities are supported
784
- # and other identity types are not supported. The `v1` identities that have the
785
- # prefix `user`, `group`, `serviceAccount`, and `principal` in https://cloud.
786
- # google.com/iam/docs/principal-identifiers#v1 are supported.
783
+ # party identity. For the list of supported identity types, see https://docs.
784
+ # cloud.google.com/vpc-service-controls/docs/supported-identities.
787
785
  # Corresponds to the JSON property `identities`
788
786
  # @return [Array<String>]
789
787
  attr_accessor :identities
@@ -1182,10 +1180,8 @@ module Google
1182
1180
 
1183
1181
  # A list of identities that are allowed access through [IngressPolicy].
1184
1182
  # Identities can be an individual user, service account, Google group, or third-
1185
- # party identity. For third-party identity, only single identities are supported
1186
- # and other identity types are not supported. The `v1` identities that have the
1187
- # prefix `user`, `group`, `serviceAccount`, and `principal` in https://cloud.
1188
- # google.com/iam/docs/principal-identifiers#v1 are supported.
1183
+ # party identity. For the list of supported identity types, see https://docs.
1184
+ # cloud.google.com/vpc-service-controls/docs/supported-identities.
1189
1185
  # Corresponds to the JSON property `identities`
1190
1186
  # @return [Array<String>]
1191
1187
  attr_accessor :identities
@@ -1503,6 +1499,32 @@ module Google
1503
1499
  end
1504
1500
  end
1505
1501
 
1502
+ # A response to `ListSupportedPermissionsRequest`.
1503
+ class ListSupportedPermissionsResponse
1504
+ include Google::Apis::Core::Hashable
1505
+
1506
+ # The pagination token to retrieve the next page of results. If the value is
1507
+ # empty, no further results remain.
1508
+ # Corresponds to the JSON property `nextPageToken`
1509
+ # @return [String]
1510
+ attr_accessor :next_page_token
1511
+
1512
+ # List of VPC-SC supported permissions.
1513
+ # Corresponds to the JSON property `supportedPermissions`
1514
+ # @return [Array<String>]
1515
+ attr_accessor :supported_permissions
1516
+
1517
+ def initialize(**args)
1518
+ update!(**args)
1519
+ end
1520
+
1521
+ # Update properties of this object
1522
+ def update!(**args)
1523
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1524
+ @supported_permissions = args[:supported_permissions] if args.key?(:supported_permissions)
1525
+ end
1526
+ end
1527
+
1506
1528
  # A response to `ListSupportedServicesRequest`.
1507
1529
  class ListSupportedServicesResponse
1508
1530
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AccesscontextmanagerV1
18
18
  # Version of the google-apis-accesscontextmanager_v1 gem
19
- GEM_VERSION = "0.61.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251112"
25
+ REVISION = "20260311"
26
26
  end
27
27
  end
28
28
  end
@@ -256,6 +256,12 @@ module Google
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
+ class ListSupportedPermissionsResponse
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
259
265
  class ListSupportedServicesResponse
260
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
267
 
@@ -746,6 +752,14 @@ module Google
746
752
  end
747
753
  end
748
754
 
755
+ class ListSupportedPermissionsResponse
756
+ # @private
757
+ class Representation < Google::Apis::Core::JsonRepresentation
758
+ property :next_page_token, as: 'nextPageToken'
759
+ collection :supported_permissions, as: 'supportedPermissions'
760
+ end
761
+ end
762
+
749
763
  class ListSupportedServicesResponse
750
764
  # @private
751
765
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1449,6 +1449,40 @@ module Google
1449
1449
  execute_or_queue_command(command, &block)
1450
1450
  end
1451
1451
 
1452
+ # Lists all supported permissions in VPCSC Granular Controls.
1453
+ # @param [Fixnum] page_size
1454
+ # Optional. This flag specifies the maximum number of services to return per
1455
+ # page. Default is 100.
1456
+ # @param [String] page_token
1457
+ # Optional. Token to start on a later page. Default is the first page.
1458
+ # @param [String] fields
1459
+ # Selector specifying which fields to include in a partial response.
1460
+ # @param [String] quota_user
1461
+ # Available to use for quota purposes for server-side applications. Can be any
1462
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1463
+ # @param [Google::Apis::RequestOptions] options
1464
+ # Request-specific options
1465
+ #
1466
+ # @yield [result, err] Result & error if block supplied
1467
+ # @yieldparam result [Google::Apis::AccesscontextmanagerV1::ListSupportedPermissionsResponse] parsed result object
1468
+ # @yieldparam err [StandardError] error object if request failed
1469
+ #
1470
+ # @return [Google::Apis::AccesscontextmanagerV1::ListSupportedPermissionsResponse]
1471
+ #
1472
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1473
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1474
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1475
+ def list_permissions(page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1476
+ command = make_simple_command(:get, 'v1/permissions', options)
1477
+ command.response_representation = Google::Apis::AccesscontextmanagerV1::ListSupportedPermissionsResponse::Representation
1478
+ command.response_class = Google::Apis::AccesscontextmanagerV1::ListSupportedPermissionsResponse
1479
+ command.query['pageSize'] = page_size unless page_size.nil?
1480
+ command.query['pageToken'] = page_token unless page_token.nil?
1481
+ command.query['fields'] = fields unless fields.nil?
1482
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1483
+ execute_or_queue_command(command, &block)
1484
+ end
1485
+
1452
1486
  # Returns a VPC-SC supported service based on the service name.
1453
1487
  # @param [String] name
1454
1488
  # The name of the service to get information about. The names must be in the
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-accesscontextmanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accesscontextmanager_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.61.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.63.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accesscontextmanager_v1
62
62
  rdoc_options: []
63
63
  require_paths: