google-apis-accesscontextmanager_v1 0.42.0 → 0.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 044b6db559ff05d972ac928db4378cad90e3be226a4c3274df60b56ed85e6c04
4
- data.tar.gz: 8bbdc7a413822152e23d6822a457b01838c51895a869a9b7e727af6c6e7f25c9
3
+ metadata.gz: 643195f9e19529ea4d9155ec62e368ee407bcbb88e52cd8a9ab3afdb564e256a
4
+ data.tar.gz: c0175f32b5e7ec261b4e2cdc9d2c6114f093d464be6c617690fbbcfef51b522e
5
5
  SHA512:
6
- metadata.gz: ca3de7536a82a814a7b2e80140f473537d9f7b585e839ba33daccabed9c435095f5a31e7157e141a042923bf6df342e295fccf889eedd8253142de2d0d703078
7
- data.tar.gz: 60d20be7f115caf1aefd4b352a038f5396863b17e8537785c65838b884ab705b96afc87d2b2b2df13e310c159c5eb61de9f6a4719c46ca23f149e4b55ae36729
6
+ metadata.gz: 74a3c8e25834a82aaf2adf4a76547eae8775bdadf667ccc6631f43819beb49dd5f449b1452621a2b2d4ebc1838cc753595bc9e315ef1d67d6aa5ff18bac1f8bc
7
+ data.tar.gz: 82e1d71fe8c8589ae709909acac60a859c7393767a72be2557a5006d1e3a192a47079681c9740d49fb576df2152bbf421c877fdebdc0f36bac3db50139dac105
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-accesscontextmanager_v1
2
2
 
3
+ ### v0.44.0 (2024-05-19)
4
+
5
+ * Regenerated using generator version 0.15.0
6
+
7
+ ### v0.43.0 (2024-05-05)
8
+
9
+ * Regenerated from discovery document revision 20240429
10
+
3
11
  ### v0.42.0 (2024-04-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20240417
@@ -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.42.0"
19
+ GEM_VERSION = "0.44.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240417"
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.42.0
4
+ version: 0.44.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.44.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: []