google-apis-gkehub_v1 0.53.0 → 0.54.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: 533e661344348117f3fa461d767519e8c4396ee6672f045594fcfc50df606970
|
4
|
+
data.tar.gz: 8963160fb060d038c3cad24e6edbc72a907beef4e62fa731ca7600bbe6885209
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b270298b3048ba02f9d293f6fd0bef0f2f5400a1d45236e0f7ff641b04c7c3075ac31629ce8b1729b9da3021f1ec3ef06370c4b4ab99c0fcc758c64480aaf52f
|
7
|
+
data.tar.gz: b3367243e70f8124744a7c15a3f0cc95ca35b22612d4437cc78b0f52c50eed30d35668314c24aade3e16639ff696ac7960b2347b4f14fad7cf20ad8066b281d6
|
data/CHANGELOG.md
CHANGED
@@ -2115,6 +2115,11 @@ module Google
|
|
2115
2115
|
# @return [String]
|
2116
2116
|
attr_accessor :tenant
|
2117
2117
|
|
2118
|
+
# Optional. Claim in the AzureAD ID Token that holds the user details.
|
2119
|
+
# Corresponds to the JSON property `userClaim`
|
2120
|
+
# @return [String]
|
2121
|
+
attr_accessor :user_claim
|
2122
|
+
|
2118
2123
|
def initialize(**args)
|
2119
2124
|
update!(**args)
|
2120
2125
|
end
|
@@ -2126,6 +2131,7 @@ module Google
|
|
2126
2131
|
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
2127
2132
|
@kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
|
2128
2133
|
@tenant = args[:tenant] if args.key?(:tenant)
|
2134
|
+
@user_claim = args[:user_claim] if args.key?(:user_claim)
|
2129
2135
|
end
|
2130
2136
|
end
|
2131
2137
|
|
@@ -3375,13 +3381,13 @@ module Google
|
|
3375
3381
|
# @return [String]
|
3376
3382
|
attr_accessor :name
|
3377
3383
|
|
3378
|
-
# The normal response of the operation
|
3379
|
-
#
|
3380
|
-
#
|
3381
|
-
#
|
3382
|
-
#
|
3383
|
-
#
|
3384
|
-
#
|
3384
|
+
# The normal, successful response of the operation. If the original method
|
3385
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
3386
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
3387
|
+
# response should be the resource. For other methods, the response should have
|
3388
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
3389
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
3390
|
+
# `TakeSnapshotResponse`.
|
3385
3391
|
# Corresponds to the JSON property `response`
|
3386
3392
|
# @return [Hash<String,Object>]
|
3387
3393
|
attr_accessor :response
|
@@ -3489,22 +3495,22 @@ module Google
|
|
3489
3495
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
3490
3496
|
# the request, the resource, or both. To learn which resources support
|
3491
3497
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
3492
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
3498
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
3493
3499
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
3494
3500
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
3495
3501
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
3496
3502
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
3497
3503
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
3498
3504
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
3499
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
3500
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
3501
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
3502
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
3503
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
3504
|
-
# access description: Does not grant access after Sep 2020
|
3505
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3506
|
-
# a description of IAM and its features, see the
|
3507
|
-
# cloud.google.com/iam/docs/).
|
3505
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
3506
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
3507
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
3508
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
3509
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
3510
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
3511
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3512
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
3513
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
3508
3514
|
class Policy
|
3509
3515
|
include Google::Apis::Core::Hashable
|
3510
3516
|
|
@@ -4029,22 +4035,22 @@ module Google
|
|
4029
4035
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
4030
4036
|
# the request, the resource, or both. To learn which resources support
|
4031
4037
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
4032
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
4038
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
4033
4039
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
4034
4040
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
4035
4041
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
4036
4042
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
4037
4043
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
4038
4044
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
4039
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
4040
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
4041
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
4042
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
4043
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
4044
|
-
# access description: Does not grant access after Sep 2020
|
4045
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
4046
|
-
# a description of IAM and its features, see the
|
4047
|
-
# cloud.google.com/iam/docs/).
|
4045
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
4046
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
4047
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
4048
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
4049
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
4050
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
4051
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
4052
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
4053
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
4048
4054
|
# Corresponds to the JSON property `policy`
|
4049
4055
|
# @return [Google::Apis::GkehubV1::Policy]
|
4050
4056
|
attr_accessor :policy
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1
|
18
18
|
# Version of the google-apis-gkehub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230804"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1289,6 +1289,7 @@ module Google
|
|
1289
1289
|
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1290
1290
|
property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
|
1291
1291
|
property :tenant, as: 'tenant'
|
1292
|
+
property :user_claim, as: 'userClaim'
|
1292
1293
|
end
|
1293
1294
|
end
|
1294
1295
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.54.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: 2023-08-
|
11
|
+
date: 2023-08-13 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-gkehub_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.54.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|