google-apis-accesscontextmanager_v1 0.67.0 → 0.69.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2dd0bc7b6d305b53fd5271778734f18f82fc43514124c91f0913f3fec815ec5
|
|
4
|
+
data.tar.gz: 3d8234129f139faaccda010bc178ac5d0bfc702379cde644fd802a10a8fd6267
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e74adcd5a1af8b614f6fdbeb4fb249c1f615b2c719d010f0395293d96e119ab39a99b060482a6176fc2c65ef091a0af7ed50f0eccd66341b1e4b287dab130eca
|
|
7
|
+
data.tar.gz: 240049b22156f55b4c08a2d657c8f534372871af16c91a01d73f83951c2b90031bb1b39427c39aa7e3bd8fe309b2793629d32e773309486f4a56ef9f1312fa3c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-accesscontextmanager_v1
|
|
2
2
|
|
|
3
|
+
### v0.69.0 (2026-07-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260722
|
|
6
|
+
|
|
7
|
+
### v0.68.0 (2026-07-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260707
|
|
10
|
+
|
|
3
11
|
### v0.67.0 (2026-06-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated using generator version 0.19.0
|
|
@@ -198,6 +198,31 @@ module Google
|
|
|
198
198
|
end
|
|
199
199
|
end
|
|
200
200
|
|
|
201
|
+
# Adds a request header to the API.
|
|
202
|
+
class AddRequestHeader
|
|
203
|
+
include Google::Apis::Core::Hashable
|
|
204
|
+
|
|
205
|
+
# HTTP header key.
|
|
206
|
+
# Corresponds to the JSON property `key`
|
|
207
|
+
# @return [String]
|
|
208
|
+
attr_accessor :key
|
|
209
|
+
|
|
210
|
+
# HTTP header value.
|
|
211
|
+
# Corresponds to the JSON property `value`
|
|
212
|
+
# @return [String]
|
|
213
|
+
attr_accessor :value
|
|
214
|
+
|
|
215
|
+
def initialize(**args)
|
|
216
|
+
update!(**args)
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
# Update properties of this object
|
|
220
|
+
def update!(**args)
|
|
221
|
+
@key = args[:key] if args.key?(:key)
|
|
222
|
+
@value = args[:value] if args.key?(:value)
|
|
223
|
+
end
|
|
224
|
+
end
|
|
225
|
+
|
|
201
226
|
# Identification for an API Operation.
|
|
202
227
|
class ApiOperation
|
|
203
228
|
include Google::Apis::Core::Hashable
|
|
@@ -892,6 +917,11 @@ module Google
|
|
|
892
917
|
# @return [String]
|
|
893
918
|
attr_accessor :access_level
|
|
894
919
|
|
|
920
|
+
# Specifies the Private Service Connect endpoint that an API call refers to.
|
|
921
|
+
# Corresponds to the JSON property `pscEndpoint`
|
|
922
|
+
# @return [Google::Apis::AccesscontextmanagerV1::PrivateServiceConnectEndpoint]
|
|
923
|
+
attr_accessor :psc_endpoint
|
|
924
|
+
|
|
895
925
|
# A Google Cloud resource from the service perimeter that you want to allow to
|
|
896
926
|
# access data outside the perimeter. This field supports only projects. The
|
|
897
927
|
# project format is `projects/`project_number``. You can't use `*` in this field
|
|
@@ -907,6 +937,7 @@ module Google
|
|
|
907
937
|
# Update properties of this object
|
|
908
938
|
def update!(**args)
|
|
909
939
|
@access_level = args[:access_level] if args.key?(:access_level)
|
|
940
|
+
@psc_endpoint = args[:psc_endpoint] if args.key?(:psc_endpoint)
|
|
910
941
|
@resource = args[:resource] if args.key?(:resource)
|
|
911
942
|
end
|
|
912
943
|
end
|
|
@@ -1075,9 +1106,16 @@ module Google
|
|
|
1075
1106
|
# @return [String]
|
|
1076
1107
|
attr_accessor :name
|
|
1077
1108
|
|
|
1078
|
-
#
|
|
1079
|
-
#
|
|
1080
|
-
#
|
|
1109
|
+
# The comprehensive identity container supporting identities including groups,
|
|
1110
|
+
# service accounts and federated identities. Only one of them can be set to
|
|
1111
|
+
# create an access binding.
|
|
1112
|
+
# Corresponds to the JSON property `principal`
|
|
1113
|
+
# @return [Google::Apis::AccesscontextmanagerV1::Principal]
|
|
1114
|
+
attr_accessor :principal
|
|
1115
|
+
|
|
1116
|
+
# Optional. Deprecated: use scoped_access_settings instead. A list of
|
|
1117
|
+
# applications that are subject to this binding's restrictions. If the list is
|
|
1118
|
+
# empty, the binding restrictions will universally apply to all applications.
|
|
1081
1119
|
# Corresponds to the JSON property `restrictedClientApplications`
|
|
1082
1120
|
# @return [Array<Google::Apis::AccesscontextmanagerV1::Application>]
|
|
1083
1121
|
attr_accessor :restricted_client_applications
|
|
@@ -1106,6 +1144,7 @@ module Google
|
|
|
1106
1144
|
@dry_run_access_levels = args[:dry_run_access_levels] if args.key?(:dry_run_access_levels)
|
|
1107
1145
|
@group_key = args[:group_key] if args.key?(:group_key)
|
|
1108
1146
|
@name = args[:name] if args.key?(:name)
|
|
1147
|
+
@principal = args[:principal] if args.key?(:principal)
|
|
1109
1148
|
@restricted_client_applications = args[:restricted_client_applications] if args.key?(:restricted_client_applications)
|
|
1110
1149
|
@scoped_access_settings = args[:scoped_access_settings] if args.key?(:scoped_access_settings)
|
|
1111
1150
|
@session_settings = args[:session_settings] if args.key?(:session_settings)
|
|
@@ -1277,6 +1316,11 @@ module Google
|
|
|
1277
1316
|
# @return [String]
|
|
1278
1317
|
attr_accessor :access_level
|
|
1279
1318
|
|
|
1319
|
+
# Specifies the Private Service Connect endpoint that an API call refers to.
|
|
1320
|
+
# Corresponds to the JSON property `pscEndpoint`
|
|
1321
|
+
# @return [Google::Apis::AccesscontextmanagerV1::PrivateServiceConnectEndpoint]
|
|
1322
|
+
attr_accessor :psc_endpoint
|
|
1323
|
+
|
|
1280
1324
|
# A Google Cloud resource that is allowed to ingress the perimeter. Requests
|
|
1281
1325
|
# from these resources will be allowed to access perimeter data. Currently only
|
|
1282
1326
|
# projects and VPCs are allowed. Project format: `projects/`project_number`` VPC
|
|
@@ -1295,6 +1339,7 @@ module Google
|
|
|
1295
1339
|
# Update properties of this object
|
|
1296
1340
|
def update!(**args)
|
|
1297
1341
|
@access_level = args[:access_level] if args.key?(:access_level)
|
|
1342
|
+
@psc_endpoint = args[:psc_endpoint] if args.key?(:psc_endpoint)
|
|
1298
1343
|
@resource = args[:resource] if args.key?(:resource)
|
|
1299
1344
|
end
|
|
1300
1345
|
end
|
|
@@ -1581,6 +1626,25 @@ module Google
|
|
|
1581
1626
|
end
|
|
1582
1627
|
end
|
|
1583
1628
|
|
|
1629
|
+
# Modifier to apply to the API requests.
|
|
1630
|
+
class Modifier
|
|
1631
|
+
include Google::Apis::Core::Hashable
|
|
1632
|
+
|
|
1633
|
+
# Adds a request header to the API.
|
|
1634
|
+
# Corresponds to the JSON property `addRequestHeader`
|
|
1635
|
+
# @return [Google::Apis::AccesscontextmanagerV1::AddRequestHeader]
|
|
1636
|
+
attr_accessor :add_request_header
|
|
1637
|
+
|
|
1638
|
+
def initialize(**args)
|
|
1639
|
+
update!(**args)
|
|
1640
|
+
end
|
|
1641
|
+
|
|
1642
|
+
# Update properties of this object
|
|
1643
|
+
def update!(**args)
|
|
1644
|
+
@add_request_header = args[:add_request_header] if args.key?(:add_request_header)
|
|
1645
|
+
end
|
|
1646
|
+
end
|
|
1647
|
+
|
|
1584
1648
|
# This resource represents a long-running operation that is the result of a
|
|
1585
1649
|
# network API call.
|
|
1586
1650
|
class Operation
|
|
@@ -1775,6 +1839,60 @@ module Google
|
|
|
1775
1839
|
end
|
|
1776
1840
|
end
|
|
1777
1841
|
|
|
1842
|
+
# The comprehensive identity container supporting identities including groups,
|
|
1843
|
+
# service accounts and federated identities. Only one of them can be set to
|
|
1844
|
+
# create an access binding.
|
|
1845
|
+
class Principal
|
|
1846
|
+
include Google::Apis::Core::Hashable
|
|
1847
|
+
|
|
1848
|
+
# Immutable. Service account email used to assign policies to a specific service
|
|
1849
|
+
# account. If a service account is subject to multiple policies (e.g., if there
|
|
1850
|
+
# is a policy for all service accounts in a project and a policy for the service
|
|
1851
|
+
# account), the closest (i.e. the most specific) dry-run policy will be used for
|
|
1852
|
+
# the dry-run functionality and the closest policy will be used for the
|
|
1853
|
+
# enforcement.
|
|
1854
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
1855
|
+
# @return [String]
|
|
1856
|
+
attr_accessor :service_account
|
|
1857
|
+
|
|
1858
|
+
# Immutable. Cloud project number used to assign policies to all service
|
|
1859
|
+
# accounts owned by the project.
|
|
1860
|
+
# Corresponds to the JSON property `serviceAccountProjectNumber`
|
|
1861
|
+
# @return [String]
|
|
1862
|
+
attr_accessor :service_account_project_number
|
|
1863
|
+
|
|
1864
|
+
def initialize(**args)
|
|
1865
|
+
update!(**args)
|
|
1866
|
+
end
|
|
1867
|
+
|
|
1868
|
+
# Update properties of this object
|
|
1869
|
+
def update!(**args)
|
|
1870
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
1871
|
+
@service_account_project_number = args[:service_account_project_number] if args.key?(:service_account_project_number)
|
|
1872
|
+
end
|
|
1873
|
+
end
|
|
1874
|
+
|
|
1875
|
+
# Specifies the Private Service Connect endpoint that an API call refers to.
|
|
1876
|
+
class PrivateServiceConnectEndpoint
|
|
1877
|
+
include Google::Apis::Core::Hashable
|
|
1878
|
+
|
|
1879
|
+
# The full resource name of the global forwarding rule that identifies a Private
|
|
1880
|
+
# Service Connect endpoint. Forwarding rule format: `//compute.googleapis.com/
|
|
1881
|
+
# projects/`PROJECT_ID`/global/forwardingRules/`FORWARDING_RULE_ID``.
|
|
1882
|
+
# Corresponds to the JSON property `forwardingRule`
|
|
1883
|
+
# @return [String]
|
|
1884
|
+
attr_accessor :forwarding_rule
|
|
1885
|
+
|
|
1886
|
+
def initialize(**args)
|
|
1887
|
+
update!(**args)
|
|
1888
|
+
end
|
|
1889
|
+
|
|
1890
|
+
# Update properties of this object
|
|
1891
|
+
def update!(**args)
|
|
1892
|
+
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
1893
|
+
end
|
|
1894
|
+
end
|
|
1895
|
+
|
|
1778
1896
|
# A request to replace all existing Access Levels in an Access Policy with the
|
|
1779
1897
|
# Access Levels provided. This is done atomically.
|
|
1780
1898
|
class ReplaceAccessLevelsRequest
|
|
@@ -1913,6 +2031,39 @@ module Google
|
|
|
1913
2031
|
end
|
|
1914
2032
|
end
|
|
1915
2033
|
|
|
2034
|
+
# Service patterns used to allow access.
|
|
2035
|
+
class ServicePattern
|
|
2036
|
+
include Google::Apis::Core::Hashable
|
|
2037
|
+
|
|
2038
|
+
# Modifiers to apply to the requests that match the URL pattern.
|
|
2039
|
+
# Corresponds to the JSON property `modifiers`
|
|
2040
|
+
# @return [Array<Google::Apis::AccesscontextmanagerV1::Modifier>]
|
|
2041
|
+
attr_accessor :modifiers
|
|
2042
|
+
|
|
2043
|
+
# URL pattern to allow. Only patterns of ".googleapis.com/*", "www.googleapis.
|
|
2044
|
+
# com//*" and "*.appspot.com/* forms are supported, where should be
|
|
2045
|
+
# alphanumerical name.
|
|
2046
|
+
# Corresponds to the JSON property `pattern`
|
|
2047
|
+
# @return [String]
|
|
2048
|
+
attr_accessor :pattern
|
|
2049
|
+
|
|
2050
|
+
# Supported service to allow.
|
|
2051
|
+
# Corresponds to the JSON property `service`
|
|
2052
|
+
# @return [String]
|
|
2053
|
+
attr_accessor :service
|
|
2054
|
+
|
|
2055
|
+
def initialize(**args)
|
|
2056
|
+
update!(**args)
|
|
2057
|
+
end
|
|
2058
|
+
|
|
2059
|
+
# Update properties of this object
|
|
2060
|
+
def update!(**args)
|
|
2061
|
+
@modifiers = args[:modifiers] if args.key?(:modifiers)
|
|
2062
|
+
@pattern = args[:pattern] if args.key?(:pattern)
|
|
2063
|
+
@service = args[:service] if args.key?(:service)
|
|
2064
|
+
end
|
|
2065
|
+
end
|
|
2066
|
+
|
|
1916
2067
|
# `ServicePerimeter` describes a set of Google Cloud resources which can freely
|
|
1917
2068
|
# import and export data amongst themselves, but not export outside of the `
|
|
1918
2069
|
# ServicePerimeter`. If a request with a source within this `ServicePerimeter`
|
|
@@ -2324,6 +2475,12 @@ module Google
|
|
|
2324
2475
|
class VpcAccessibleServices
|
|
2325
2476
|
include Google::Apis::Core::Hashable
|
|
2326
2477
|
|
|
2478
|
+
# Specifies which Google services are allowed to be accessed from VPC networks
|
|
2479
|
+
# in the service perimeter.
|
|
2480
|
+
# Corresponds to the JSON property `allowedServicePatterns`
|
|
2481
|
+
# @return [Array<Google::Apis::AccesscontextmanagerV1::ServicePattern>]
|
|
2482
|
+
attr_accessor :allowed_service_patterns
|
|
2483
|
+
|
|
2327
2484
|
# The list of APIs usable within the Service Perimeter. Must be empty unless '
|
|
2328
2485
|
# enable_restriction' is True. You can specify a list of individual services, as
|
|
2329
2486
|
# well as include the 'RESTRICTED-SERVICES' value, which automatically includes
|
|
@@ -2339,14 +2496,21 @@ module Google
|
|
|
2339
2496
|
attr_accessor :enable_restriction
|
|
2340
2497
|
alias_method :enable_restriction?, :enable_restriction
|
|
2341
2498
|
|
|
2499
|
+
# Defines the enforcement scopes of service patterns.
|
|
2500
|
+
# Corresponds to the JSON property `servicePatternsEnforcementScopes`
|
|
2501
|
+
# @return [Array<String>]
|
|
2502
|
+
attr_accessor :service_patterns_enforcement_scopes
|
|
2503
|
+
|
|
2342
2504
|
def initialize(**args)
|
|
2343
2505
|
update!(**args)
|
|
2344
2506
|
end
|
|
2345
2507
|
|
|
2346
2508
|
# Update properties of this object
|
|
2347
2509
|
def update!(**args)
|
|
2510
|
+
@allowed_service_patterns = args[:allowed_service_patterns] if args.key?(:allowed_service_patterns)
|
|
2348
2511
|
@allowed_services = args[:allowed_services] if args.key?(:allowed_services)
|
|
2349
2512
|
@enable_restriction = args[:enable_restriction] if args.key?(:enable_restriction)
|
|
2513
|
+
@service_patterns_enforcement_scopes = args[:service_patterns_enforcement_scopes] if args.key?(:service_patterns_enforcement_scopes)
|
|
2350
2514
|
end
|
|
2351
2515
|
end
|
|
2352
2516
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.69.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260722"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -52,6 +52,12 @@ module Google
|
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
+
class AddRequestHeader
|
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
57
|
+
|
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
59
|
+
end
|
|
60
|
+
|
|
55
61
|
class ApiOperation
|
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
57
63
|
|
|
@@ -274,6 +280,12 @@ module Google
|
|
|
274
280
|
include Google::Apis::Core::JsonObjectSupport
|
|
275
281
|
end
|
|
276
282
|
|
|
283
|
+
class Modifier
|
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
|
+
|
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
287
|
+
end
|
|
288
|
+
|
|
277
289
|
class Operation
|
|
278
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
279
291
|
|
|
@@ -292,6 +304,18 @@ module Google
|
|
|
292
304
|
include Google::Apis::Core::JsonObjectSupport
|
|
293
305
|
end
|
|
294
306
|
|
|
307
|
+
class Principal
|
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
|
+
|
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
311
|
+
end
|
|
312
|
+
|
|
313
|
+
class PrivateServiceConnectEndpoint
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
295
319
|
class ReplaceAccessLevelsRequest
|
|
296
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
297
321
|
|
|
@@ -322,6 +346,12 @@ module Google
|
|
|
322
346
|
include Google::Apis::Core::JsonObjectSupport
|
|
323
347
|
end
|
|
324
348
|
|
|
349
|
+
class ServicePattern
|
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
+
|
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
+
end
|
|
354
|
+
|
|
325
355
|
class ServicePerimeter
|
|
326
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
327
357
|
|
|
@@ -435,6 +465,14 @@ module Google
|
|
|
435
465
|
end
|
|
436
466
|
end
|
|
437
467
|
|
|
468
|
+
class AddRequestHeader
|
|
469
|
+
# @private
|
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
471
|
+
property :key, as: 'key'
|
|
472
|
+
property :value, as: 'value'
|
|
473
|
+
end
|
|
474
|
+
end
|
|
475
|
+
|
|
438
476
|
class ApiOperation
|
|
439
477
|
# @private
|
|
440
478
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -590,6 +628,8 @@ module Google
|
|
|
590
628
|
# @private
|
|
591
629
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
592
630
|
property :access_level, as: 'accessLevel'
|
|
631
|
+
property :psc_endpoint, as: 'pscEndpoint', class: Google::Apis::AccesscontextmanagerV1::PrivateServiceConnectEndpoint, decorator: Google::Apis::AccesscontextmanagerV1::PrivateServiceConnectEndpoint::Representation
|
|
632
|
+
|
|
593
633
|
property :resource, as: 'resource'
|
|
594
634
|
end
|
|
595
635
|
end
|
|
@@ -628,6 +668,8 @@ module Google
|
|
|
628
668
|
collection :dry_run_access_levels, as: 'dryRunAccessLevels'
|
|
629
669
|
property :group_key, as: 'groupKey'
|
|
630
670
|
property :name, as: 'name'
|
|
671
|
+
property :principal, as: 'principal', class: Google::Apis::AccesscontextmanagerV1::Principal, decorator: Google::Apis::AccesscontextmanagerV1::Principal::Representation
|
|
672
|
+
|
|
631
673
|
collection :restricted_client_applications, as: 'restrictedClientApplications', class: Google::Apis::AccesscontextmanagerV1::Application, decorator: Google::Apis::AccesscontextmanagerV1::Application::Representation
|
|
632
674
|
|
|
633
675
|
collection :scoped_access_settings, as: 'scopedAccessSettings', class: Google::Apis::AccesscontextmanagerV1::ScopedAccessSettings, decorator: Google::Apis::AccesscontextmanagerV1::ScopedAccessSettings::Representation
|
|
@@ -683,6 +725,8 @@ module Google
|
|
|
683
725
|
# @private
|
|
684
726
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
685
727
|
property :access_level, as: 'accessLevel'
|
|
728
|
+
property :psc_endpoint, as: 'pscEndpoint', class: Google::Apis::AccesscontextmanagerV1::PrivateServiceConnectEndpoint, decorator: Google::Apis::AccesscontextmanagerV1::PrivateServiceConnectEndpoint::Representation
|
|
729
|
+
|
|
686
730
|
property :resource, as: 'resource'
|
|
687
731
|
end
|
|
688
732
|
end
|
|
@@ -777,6 +821,14 @@ module Google
|
|
|
777
821
|
end
|
|
778
822
|
end
|
|
779
823
|
|
|
824
|
+
class Modifier
|
|
825
|
+
# @private
|
|
826
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
827
|
+
property :add_request_header, as: 'addRequestHeader', class: Google::Apis::AccesscontextmanagerV1::AddRequestHeader, decorator: Google::Apis::AccesscontextmanagerV1::AddRequestHeader::Representation
|
|
828
|
+
|
|
829
|
+
end
|
|
830
|
+
end
|
|
831
|
+
|
|
780
832
|
class Operation
|
|
781
833
|
# @private
|
|
782
834
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -810,6 +862,21 @@ module Google
|
|
|
810
862
|
end
|
|
811
863
|
end
|
|
812
864
|
|
|
865
|
+
class Principal
|
|
866
|
+
# @private
|
|
867
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
868
|
+
property :service_account, as: 'serviceAccount'
|
|
869
|
+
property :service_account_project_number, as: 'serviceAccountProjectNumber'
|
|
870
|
+
end
|
|
871
|
+
end
|
|
872
|
+
|
|
873
|
+
class PrivateServiceConnectEndpoint
|
|
874
|
+
# @private
|
|
875
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
876
|
+
property :forwarding_rule, as: 'forwardingRule'
|
|
877
|
+
end
|
|
878
|
+
end
|
|
879
|
+
|
|
813
880
|
class ReplaceAccessLevelsRequest
|
|
814
881
|
# @private
|
|
815
882
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -856,6 +923,16 @@ module Google
|
|
|
856
923
|
end
|
|
857
924
|
end
|
|
858
925
|
|
|
926
|
+
class ServicePattern
|
|
927
|
+
# @private
|
|
928
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
929
|
+
collection :modifiers, as: 'modifiers', class: Google::Apis::AccesscontextmanagerV1::Modifier, decorator: Google::Apis::AccesscontextmanagerV1::Modifier::Representation
|
|
930
|
+
|
|
931
|
+
property :pattern, as: 'pattern'
|
|
932
|
+
property :service, as: 'service'
|
|
933
|
+
end
|
|
934
|
+
end
|
|
935
|
+
|
|
859
936
|
class ServicePerimeter
|
|
860
937
|
# @private
|
|
861
938
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -947,8 +1024,11 @@ module Google
|
|
|
947
1024
|
class VpcAccessibleServices
|
|
948
1025
|
# @private
|
|
949
1026
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1027
|
+
collection :allowed_service_patterns, as: 'allowedServicePatterns', class: Google::Apis::AccesscontextmanagerV1::ServicePattern, decorator: Google::Apis::AccesscontextmanagerV1::ServicePattern::Representation
|
|
1028
|
+
|
|
950
1029
|
collection :allowed_services, as: 'allowedServices'
|
|
951
1030
|
property :enable_restriction, as: 'enableRestriction'
|
|
1031
|
+
collection :service_patterns_enforcement_scopes, as: 'servicePatternsEnforcementScopes'
|
|
952
1032
|
end
|
|
953
1033
|
end
|
|
954
1034
|
|
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.
|
|
4
|
+
version: 0.69.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.69.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:
|