google-apis-servicecontrol_v1 0.33.0 → 0.35.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 400a6ce96a09234c3187fc5bf154cf77af89865dd96848e28bdd1630ff6ea9de
|
4
|
+
data.tar.gz: 417547265b2cb3930d35937a2fbf81337ac3ff80b95a675d00dcccf737c341dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f177a3243372c783cf97ae0681d1503c9be7d04fa6ff71a87597dede1f0d0f0dde910ff0a965526406aa49e47e5cc6f54bbd7bbeda2356d9333e0072cdde10a
|
7
|
+
data.tar.gz: '095f441c80e125cfc73aa2db4337416b0f1bdf522b978958aee8fa639b2e0b194109711ac1ba803d925cae308c80602a9c584456c1586502bb30f1690fc942dc'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-servicecontrol_v1
|
2
2
|
|
3
|
+
### v0.35.0 (2024-04-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240419
|
6
|
+
|
7
|
+
### v0.34.0 (2024-04-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240412
|
10
|
+
|
3
11
|
### v0.33.0 (2024-03-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240223
|
@@ -355,6 +355,13 @@ module Google
|
|
355
355
|
# @return [Hash<String,Object>]
|
356
356
|
attr_accessor :claims
|
357
357
|
|
358
|
+
# Identifies the client credential id used for authentication. credential_id is
|
359
|
+
# in the format of AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:
|
360
|
+
# XXXXX" where the format of the IDENTIFIER can vary for different AUTH_METHODs.
|
361
|
+
# Corresponds to the JSON property `credentialId`
|
362
|
+
# @return [String]
|
363
|
+
attr_accessor :credential_id
|
364
|
+
|
358
365
|
# The authorized presenter of the credential. Reflects the optional Authorized
|
359
366
|
# Presenter (`azp`) claim within a JWT or the OAuth client id. For example, a
|
360
367
|
# Google Cloud Platform client id looks as follows: "123456789012.apps.
|
@@ -380,6 +387,7 @@ module Google
|
|
380
387
|
@access_levels = args[:access_levels] if args.key?(:access_levels)
|
381
388
|
@audiences = args[:audiences] if args.key?(:audiences)
|
382
389
|
@claims = args[:claims] if args.key?(:claims)
|
390
|
+
@credential_id = args[:credential_id] if args.key?(:credential_id)
|
383
391
|
@presenter = args[:presenter] if args.key?(:presenter)
|
384
392
|
@principal = args[:principal] if args.key?(:principal)
|
385
393
|
end
|
@@ -474,6 +482,13 @@ module Google
|
|
474
482
|
# @return [String]
|
475
483
|
attr_accessor :permission
|
476
484
|
|
485
|
+
# The type of the permission that was checked. For data access audit logs this
|
486
|
+
# corresponds with the permission type that must be enabled in the project/
|
487
|
+
# folder/organization IAM policy in order for the log to be written.
|
488
|
+
# Corresponds to the JSON property `permissionType`
|
489
|
+
# @return [String]
|
490
|
+
attr_accessor :permission_type
|
491
|
+
|
477
492
|
# The resource being accessed, as a REST-style or cloud resource string. For
|
478
493
|
# example: bigquery.googleapis.com/projects/PROJECTID/datasets/DATASETID or
|
479
494
|
# projects/PROJECTID/datasets/DATASETID
|
@@ -496,6 +511,7 @@ module Google
|
|
496
511
|
def update!(**args)
|
497
512
|
@granted = args[:granted] if args.key?(:granted)
|
498
513
|
@permission = args[:permission] if args.key?(:permission)
|
514
|
+
@permission_type = args[:permission_type] if args.key?(:permission_type)
|
499
515
|
@resource = args[:resource] if args.key?(:resource)
|
500
516
|
@resource_attributes = args[:resource_attributes] if args.key?(:resource_attributes)
|
501
517
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicecontrolV1
|
18
18
|
# Version of the google-apis-servicecontrol_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.35.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 = "20240419"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -440,6 +440,7 @@ module Google
|
|
440
440
|
collection :access_levels, as: 'accessLevels'
|
441
441
|
collection :audiences, as: 'audiences'
|
442
442
|
hash :claims, as: 'claims'
|
443
|
+
property :credential_id, as: 'credentialId'
|
443
444
|
property :presenter, as: 'presenter'
|
444
445
|
property :principal, as: 'principal'
|
445
446
|
end
|
@@ -465,6 +466,7 @@ module Google
|
|
465
466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
466
467
|
property :granted, as: 'granted'
|
467
468
|
property :permission, as: 'permission'
|
469
|
+
property :permission_type, as: 'permissionType'
|
468
470
|
property :resource, as: 'resource'
|
469
471
|
property :resource_attributes, as: 'resourceAttributes', class: Google::Apis::ServicecontrolV1::Resource, decorator: Google::Apis::ServicecontrolV1::Resource::Representation
|
470
472
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicecontrol_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.35.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-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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.35.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|