google-apis-accesscontextmanager_v1 0.42.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
@@ -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
|
@@ -953,6 +978,13 @@ module Google
|
|
953
978
|
# @return [String]
|
954
979
|
attr_accessor :name
|
955
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
|
+
|
956
988
|
def initialize(**args)
|
957
989
|
update!(**args)
|
958
990
|
end
|
@@ -963,6 +995,7 @@ module Google
|
|
963
995
|
@dry_run_access_levels = args[:dry_run_access_levels] if args.key?(:dry_run_access_levels)
|
964
996
|
@group_key = args[:group_key] if args.key?(:group_key)
|
965
997
|
@name = args[:name] if args.key?(:name)
|
998
|
+
@restricted_client_applications = args[:restricted_client_applications] if args.key?(:restricted_client_applications)
|
966
999
|
end
|
967
1000
|
end
|
968
1001
|
|
@@ -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: []
|