google-apis-accesscontextmanager_v1 0.41.0 → 0.43.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: 7d2ef7b93f80ee75c70a7dab8bf81214a7774b296207dafc65e5a423c4373e43
|
4
|
+
data.tar.gz: cfb36484e1cc1c04952da6d9f4d524ddb7008a402970b410161f628edfb0ff09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6725772b95e8b32e3777eb71851a31628c95b3a491970d61f4c994259237860c2dc26764426f5da998bea9268b13782107d266e2a285da967e94468fb4bfe117
|
7
|
+
data.tar.gz: 8b89206fa25a247ef15d95d9e0b99a220811b77a71c10fe8c3ecf46ea235811fcf25ae68e678a13822e78cc53f88fb09377f6b5715126992d41ad623bcfbfeea
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-accesscontextmanager_v1
|
2
2
|
|
3
|
+
### v0.43.0 (2024-05-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240429
|
6
|
+
|
7
|
+
### v0.42.0 (2024-04-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240417
|
10
|
+
|
3
11
|
### v0.41.0 (2024-02-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240221
|
@@ -176,6 +176,31 @@ module Google
|
|
176
176
|
end
|
177
177
|
end
|
178
178
|
|
179
|
+
# An application that accesses Google Cloud APIs.
|
180
|
+
class Application
|
181
|
+
include Google::Apis::Core::Hashable
|
182
|
+
|
183
|
+
# The OAuth client ID of the application.
|
184
|
+
# Corresponds to the JSON property `clientId`
|
185
|
+
# @return [String]
|
186
|
+
attr_accessor :client_id
|
187
|
+
|
188
|
+
# The name of the application. Example: "Cloud Console"
|
189
|
+
# Corresponds to the JSON property `name`
|
190
|
+
# @return [String]
|
191
|
+
attr_accessor :name
|
192
|
+
|
193
|
+
def initialize(**args)
|
194
|
+
update!(**args)
|
195
|
+
end
|
196
|
+
|
197
|
+
# Update properties of this object
|
198
|
+
def update!(**args)
|
199
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
200
|
+
@name = args[:name] if args.key?(:name)
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
179
204
|
# Specifies the audit configuration for a service. The configuration determines
|
180
205
|
# which permission types are logged, and what identities, if any, are exempted
|
181
206
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -681,8 +706,11 @@ module Google
|
|
681
706
|
class EgressFrom
|
682
707
|
include Google::Apis::Core::Hashable
|
683
708
|
|
684
|
-
# A list of identities that are allowed access through
|
685
|
-
#
|
709
|
+
# A list of identities that are allowed access through [EgressPolicy].
|
710
|
+
# Identities can be an individual user, service account, Google group, or third-
|
711
|
+
# party identity. The `v1` identities that have the prefix `user`, `group`, `
|
712
|
+
# serviceAccount`, `principal`, and `principalSet` in https://cloud.google.com/
|
713
|
+
# iam/docs/principal-identifiers#v1 are supported.
|
686
714
|
# Corresponds to the JSON property `identities`
|
687
715
|
# @return [Array<String>]
|
688
716
|
attr_accessor :identities
|
@@ -804,11 +832,11 @@ module Google
|
|
804
832
|
include Google::Apis::Core::Hashable
|
805
833
|
|
806
834
|
# A list of external resources that are allowed to be accessed. Only AWS and
|
807
|
-
# Azure resources are supported. For Amazon S3, the supported
|
808
|
-
# BUCKET_NAME. For Azure Storage, the
|
809
|
-
# core.windows.net/CONTAINER_NAME. A
|
810
|
-
# resource in this list (Example: s3
|
811
|
-
# allowed.
|
835
|
+
# Azure resources are supported. For Amazon S3, the supported formats are s3://
|
836
|
+
# BUCKET_NAME, s3a://BUCKET_NAME, and s3n://BUCKET_NAME. For Azure Storage, the
|
837
|
+
# supported format is azure://myaccount.blob.core.windows.net/CONTAINER_NAME. A
|
838
|
+
# request matches if it contains an external resource in this list (Example: s3:/
|
839
|
+
# /bucket/path). Currently '*' is not allowed.
|
812
840
|
# Corresponds to the JSON property `externalResources`
|
813
841
|
# @return [Array<String>]
|
814
842
|
attr_accessor :external_resources
|
@@ -950,6 +978,13 @@ module Google
|
|
950
978
|
# @return [String]
|
951
979
|
attr_accessor :name
|
952
980
|
|
981
|
+
# Optional. A list of applications that are subject to this binding's
|
982
|
+
# restrictions. If the list is empty, the binding restrictions will universally
|
983
|
+
# apply to all applications.
|
984
|
+
# Corresponds to the JSON property `restrictedClientApplications`
|
985
|
+
# @return [Array<Google::Apis::AccesscontextmanagerV1::Application>]
|
986
|
+
attr_accessor :restricted_client_applications
|
987
|
+
|
953
988
|
def initialize(**args)
|
954
989
|
update!(**args)
|
955
990
|
end
|
@@ -960,6 +995,7 @@ module Google
|
|
960
995
|
@dry_run_access_levels = args[:dry_run_access_levels] if args.key?(:dry_run_access_levels)
|
961
996
|
@group_key = args[:group_key] if args.key?(:group_key)
|
962
997
|
@name = args[:name] if args.key?(:name)
|
998
|
+
@restricted_client_applications = args[:restricted_client_applications] if args.key?(:restricted_client_applications)
|
963
999
|
end
|
964
1000
|
end
|
965
1001
|
|
@@ -1030,8 +1066,11 @@ module Google
|
|
1030
1066
|
class IngressFrom
|
1031
1067
|
include Google::Apis::Core::Hashable
|
1032
1068
|
|
1033
|
-
# A list of identities that are allowed access through
|
1034
|
-
#
|
1069
|
+
# A list of identities that are allowed access through [IngressPolicy].
|
1070
|
+
# Identities can be an individual user, service account, Google group, or third-
|
1071
|
+
# party identity. The `v1` identities that have the prefix `user`, `group`, `
|
1072
|
+
# serviceAccount`, `principal`, and `principalSet` in https://cloud.google.com/
|
1073
|
+
# iam/docs/principal-identifiers#v1 are supported.
|
1035
1074
|
# Corresponds to the JSON property `identities`
|
1036
1075
|
# @return [Array<String>]
|
1037
1076
|
attr_accessor :identities
|
@@ -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.43.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 = "20240429"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class Application
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class AuditConfig
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -385,6 +391,14 @@ module Google
|
|
385
391
|
end
|
386
392
|
end
|
387
393
|
|
394
|
+
class Application
|
395
|
+
# @private
|
396
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
397
|
+
property :client_id, as: 'clientId'
|
398
|
+
property :name, as: 'name'
|
399
|
+
end
|
400
|
+
end
|
401
|
+
|
388
402
|
class AuditConfig
|
389
403
|
# @private
|
390
404
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -550,6 +564,8 @@ module Google
|
|
550
564
|
collection :dry_run_access_levels, as: 'dryRunAccessLevels'
|
551
565
|
property :group_key, as: 'groupKey'
|
552
566
|
property :name, as: 'name'
|
567
|
+
collection :restricted_client_applications, as: 'restrictedClientApplications', class: Google::Apis::AccesscontextmanagerV1::Application, decorator: Google::Apis::AccesscontextmanagerV1::Application::Representation
|
568
|
+
|
553
569
|
end
|
554
570
|
end
|
555
571
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.43.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-
|
11
|
+
date: 2024-05-05 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-accesscontextmanager_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.43.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accesscontextmanager_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|