google-apis-servicecontrol_v2 0.34.0 → 0.36.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: bfffd012ceeb825c072157bddf3723e5449ba3a6c8242c1b8085b6d9b4a62ceb
4
- data.tar.gz: 84609d83c115db9388135ba74960cc37ff54889e8fcc44dec6dc1c3126d81dfc
3
+ metadata.gz: 756c20886332eef77457a94937fb8add249b066332041eb08b72af475aee3403
4
+ data.tar.gz: 962637c4b61fe0c2e612336c1d40102434dd1df55eedeecf51e6538e69b0511e
5
5
  SHA512:
6
- metadata.gz: 69e3f0b9978e8d24a6f37fae9b4919025b1e5acac82e902982767debb5b6113d60d9ac6a1f15f1a315e45035ea17d0f94b62966611c6b3202b5378c71506fb36
7
- data.tar.gz: 94d05954235e41534ae345665e0c552c095b5ede9e5a35732290abd26e996fd5802c106e9c6b7c5f2156f2e4d320543fd7aaae619d972a880c53fe1d64991bcd
6
+ metadata.gz: 1d7fc6080fd92198b23e16f480150adbc066dba624701094650bea7fb969771172bf850d3ac0dce8dbec4ea983b7f45753a03025126495ab2ff4f20b36ad3e24
7
+ data.tar.gz: acd7a78c44083712389b11f85f8396daca8c045ce5fd119c6cf9638d355091d87ef508568f6454bca4faf66832cf076226599536638de3c1cef7758810fbc9bd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-servicecontrol_v2
2
2
 
3
+ ### v0.36.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240419
6
+
7
+ ### v0.35.0 (2024-04-21)
8
+
9
+ * Regenerated from discovery document revision 20240412
10
+
3
11
  ### v0.34.0 (2024-03-31)
4
12
 
5
13
  * Regenerated from discovery document revision 20240322
@@ -326,6 +326,13 @@ module Google
326
326
  # @return [Hash<String,Object>]
327
327
  attr_accessor :claims
328
328
 
329
+ # Identifies the client credential id used for authentication. credential_id is
330
+ # in the format of AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:
331
+ # XXXXX" where the format of the IDENTIFIER can vary for different AUTH_METHODs.
332
+ # Corresponds to the JSON property `credentialId`
333
+ # @return [String]
334
+ attr_accessor :credential_id
335
+
329
336
  # The authorized presenter of the credential. Reflects the optional Authorized
330
337
  # Presenter (`azp`) claim within a JWT or the OAuth client id. For example, a
331
338
  # Google Cloud Platform client id looks as follows: "123456789012.apps.
@@ -351,6 +358,7 @@ module Google
351
358
  @access_levels = args[:access_levels] if args.key?(:access_levels)
352
359
  @audiences = args[:audiences] if args.key?(:audiences)
353
360
  @claims = args[:claims] if args.key?(:claims)
361
+ @credential_id = args[:credential_id] if args.key?(:credential_id)
354
362
  @presenter = args[:presenter] if args.key?(:presenter)
355
363
  @principal = args[:principal] if args.key?(:principal)
356
364
  end
@@ -445,6 +453,13 @@ module Google
445
453
  # @return [String]
446
454
  attr_accessor :permission
447
455
 
456
+ # The type of the permission that was checked. For data access audit logs this
457
+ # corresponds with the permission type that must be enabled in the project/
458
+ # folder/organization IAM policy in order for the log to be written.
459
+ # Corresponds to the JSON property `permissionType`
460
+ # @return [String]
461
+ attr_accessor :permission_type
462
+
448
463
  # The resource being accessed, as a REST-style or cloud resource string. For
449
464
  # example: bigquery.googleapis.com/projects/PROJECTID/datasets/DATASETID or
450
465
  # projects/PROJECTID/datasets/DATASETID
@@ -467,6 +482,7 @@ module Google
467
482
  def update!(**args)
468
483
  @granted = args[:granted] if args.key?(:granted)
469
484
  @permission = args[:permission] if args.key?(:permission)
485
+ @permission_type = args[:permission_type] if args.key?(:permission_type)
470
486
  @resource = args[:resource] if args.key?(:resource)
471
487
  @resource_attributes = args[:resource_attributes] if args.key?(:resource_attributes)
472
488
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicecontrolV2
18
18
  # Version of the google-apis-servicecontrol_v2 gem
19
- GEM_VERSION = "0.34.0"
19
+ GEM_VERSION = "0.36.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 = "20240322"
25
+ REVISION = "20240419"
26
26
  end
27
27
  end
28
28
  end
@@ -272,6 +272,7 @@ module Google
272
272
  collection :access_levels, as: 'accessLevels'
273
273
  collection :audiences, as: 'audiences'
274
274
  hash :claims, as: 'claims'
275
+ property :credential_id, as: 'credentialId'
275
276
  property :presenter, as: 'presenter'
276
277
  property :principal, as: 'principal'
277
278
  end
@@ -297,6 +298,7 @@ module Google
297
298
  class Representation < Google::Apis::Core::JsonRepresentation
298
299
  property :granted, as: 'granted'
299
300
  property :permission, as: 'permission'
301
+ property :permission_type, as: 'permissionType'
300
302
  property :resource, as: 'resource'
301
303
  property :resource_attributes, as: 'resourceAttributes', class: Google::Apis::ServicecontrolV2::Resource, decorator: Google::Apis::ServicecontrolV2::Resource::Representation
302
304
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicecontrol_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.36.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-03-31 00:00:00.000000000 Z
11
+ date: 2024-04-28 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-servicecontrol_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v2
63
63
  post_install_message:
64
64
  rdoc_options: []