google-apis-gkehub_v1 0.30.0 → 0.33.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 +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/google/apis/gkehub_v1/classes.rb +69 -24
- data/lib/google/apis/gkehub_v1/gem_version.rb +3 -3
- data/lib/google/apis/gkehub_v1/representations.rb +17 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b5d68ac5ad120481598bf4273048efa7f89af2ea42c90a0ee743d514d36754d
|
4
|
+
data.tar.gz: cbcc35dbf9553b77bfe8485bac5d763d82cae393f2435752c0999caaf5218206
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2bca0c62f39dd3ada1b6b417c270784f567e0fa2d420b87bca710de9cbc9b160e4b7ec86206854521c0b954c0556c250a7d19b05ad88babb85376609aca1c61
|
7
|
+
data.tar.gz: a23da6820844705ff6f9793f3a1046a476d9eb5e09bb326ceff65003d30e6ab31e7c4c6b8dc0c19d7b91b30b3687dae5598739da15c624ef115e79017f555047
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1
|
2
2
|
|
3
|
+
### v0.33.0 (2022-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220828
|
6
|
+
|
7
|
+
### v0.32.0 (2022-08-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220805
|
10
|
+
|
11
|
+
### v0.31.0 (2022-07-23)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220715
|
14
|
+
* Regenerated using generator version 0.9.0
|
15
|
+
|
3
16
|
### v0.30.0 (2022-07-03)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20220628
|
@@ -350,28 +350,33 @@ module Google
|
|
350
350
|
# members` can have the following values: * `allUsers`: A special identifier
|
351
351
|
# that represents anyone who is on the internet; with or without a Google
|
352
352
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
353
|
-
# anyone who is authenticated with a Google account or a service account.
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
# `
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
# example, `
|
366
|
-
# If the
|
367
|
-
# emailid`` and the
|
368
|
-
# `deleted:
|
369
|
-
# identifier) representing a
|
370
|
-
# example, `
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
353
|
+
# anyone who is authenticated with a Google account or a service account. Does
|
354
|
+
# not include identities that come from external identity providers (IdPs)
|
355
|
+
# through identity federation. * `user:`emailid``: An email address that
|
356
|
+
# represents a specific Google account. For example, `alice@example.com` . * `
|
357
|
+
# serviceAccount:`emailid``: An email address that represents a Google service
|
358
|
+
# account. For example, `my-other-app@appspot.gserviceaccount.com`. * `
|
359
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]`: An
|
360
|
+
# identifier for a [Kubernetes service account](https://cloud.google.com/
|
361
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
362
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
363
|
+
# email address that represents a Google group. For example, `admins@example.com`
|
364
|
+
# . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
|
365
|
+
# identifier) representing a user that has been recently deleted. For example, `
|
366
|
+
# alice@example.com?uid=123456789012345678901`. If the user is recovered, this
|
367
|
+
# value reverts to `user:`emailid`` and the recovered user retains the role in
|
368
|
+
# the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
|
369
|
+
# address (plus unique identifier) representing a service account that has been
|
370
|
+
# recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
371
|
+
# 123456789012345678901`. If the service account is undeleted, this value
|
372
|
+
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
373
|
+
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
374
|
+
# An email address (plus unique identifier) representing a Google group that has
|
375
|
+
# been recently deleted. For example, `admins@example.com?uid=
|
376
|
+
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
377
|
+
# group:`emailid`` and the recovered group retains the role in the binding. * `
|
378
|
+
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
379
|
+
# of that domain. For example, `google.com` or `example.com`.
|
375
380
|
# Corresponds to the JSON property `members`
|
376
381
|
# @return [Array<String>]
|
377
382
|
attr_accessor :members
|
@@ -492,7 +497,7 @@ module Google
|
|
492
497
|
attr_accessor :prevent_drift
|
493
498
|
alias_method :prevent_drift?, :prevent_drift
|
494
499
|
|
495
|
-
# Specifies whether the Config Sync Repo is in
|
500
|
+
# Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured"
|
496
501
|
# mode.
|
497
502
|
# Corresponds to the JSON property `sourceFormat`
|
498
503
|
# @return [String]
|
@@ -704,6 +709,11 @@ module Google
|
|
704
709
|
# @return [String]
|
705
710
|
attr_accessor :gatekeeper_controller_manager_state
|
706
711
|
|
712
|
+
# Status of the pod serving the mutation webhook.
|
713
|
+
# Corresponds to the JSON property `gatekeeperMutation`
|
714
|
+
# @return [String]
|
715
|
+
attr_accessor :gatekeeper_mutation
|
716
|
+
|
707
717
|
def initialize(**args)
|
708
718
|
update!(**args)
|
709
719
|
end
|
@@ -712,6 +722,7 @@ module Google
|
|
712
722
|
def update!(**args)
|
713
723
|
@gatekeeper_audit = args[:gatekeeper_audit] if args.key?(:gatekeeper_audit)
|
714
724
|
@gatekeeper_controller_manager_state = args[:gatekeeper_controller_manager_state] if args.key?(:gatekeeper_controller_manager_state)
|
725
|
+
@gatekeeper_mutation = args[:gatekeeper_mutation] if args.key?(:gatekeeper_mutation)
|
715
726
|
end
|
716
727
|
end
|
717
728
|
|
@@ -1694,6 +1705,11 @@ module Google
|
|
1694
1705
|
class IdentityServiceAuthMethod
|
1695
1706
|
include Google::Apis::Core::Hashable
|
1696
1707
|
|
1708
|
+
# Configuration for the Google Plugin Auth flow.
|
1709
|
+
# Corresponds to the JSON property `googleConfig`
|
1710
|
+
# @return [Google::Apis::GkehubV1::IdentityServiceGoogleConfig]
|
1711
|
+
attr_accessor :google_config
|
1712
|
+
|
1697
1713
|
# Identifier for auth config.
|
1698
1714
|
# Corresponds to the JSON property `name`
|
1699
1715
|
# @return [String]
|
@@ -1715,12 +1731,33 @@ module Google
|
|
1715
1731
|
|
1716
1732
|
# Update properties of this object
|
1717
1733
|
def update!(**args)
|
1734
|
+
@google_config = args[:google_config] if args.key?(:google_config)
|
1718
1735
|
@name = args[:name] if args.key?(:name)
|
1719
1736
|
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
1720
1737
|
@proxy = args[:proxy] if args.key?(:proxy)
|
1721
1738
|
end
|
1722
1739
|
end
|
1723
1740
|
|
1741
|
+
# Configuration for the Google Plugin Auth flow.
|
1742
|
+
class IdentityServiceGoogleConfig
|
1743
|
+
include Google::Apis::Core::Hashable
|
1744
|
+
|
1745
|
+
# Disable automatic configuration of Google Plugin on supported platforms.
|
1746
|
+
# Corresponds to the JSON property `disable`
|
1747
|
+
# @return [Boolean]
|
1748
|
+
attr_accessor :disable
|
1749
|
+
alias_method :disable?, :disable
|
1750
|
+
|
1751
|
+
def initialize(**args)
|
1752
|
+
update!(**args)
|
1753
|
+
end
|
1754
|
+
|
1755
|
+
# Update properties of this object
|
1756
|
+
def update!(**args)
|
1757
|
+
@disable = args[:disable] if args.key?(:disable)
|
1758
|
+
end
|
1759
|
+
end
|
1760
|
+
|
1724
1761
|
# **Anthos Identity Service**: Configuration for a single Membership.
|
1725
1762
|
class IdentityServiceMembershipSpec
|
1726
1763
|
include Google::Apis::Core::Hashable
|
@@ -1804,6 +1841,12 @@ module Google
|
|
1804
1841
|
attr_accessor :deploy_cloud_console_proxy
|
1805
1842
|
alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
|
1806
1843
|
|
1844
|
+
# Enable access token.
|
1845
|
+
# Corresponds to the JSON property `enableAccessToken`
|
1846
|
+
# @return [Boolean]
|
1847
|
+
attr_accessor :enable_access_token
|
1848
|
+
alias_method :enable_access_token?, :enable_access_token
|
1849
|
+
|
1807
1850
|
# Output only. Encrypted OIDC Client secret
|
1808
1851
|
# Corresponds to the JSON property `encryptedClientSecret`
|
1809
1852
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
@@ -1862,6 +1905,7 @@ module Google
|
|
1862
1905
|
@client_id = args[:client_id] if args.key?(:client_id)
|
1863
1906
|
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1864
1907
|
@deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
|
1908
|
+
@enable_access_token = args[:enable_access_token] if args.key?(:enable_access_token)
|
1865
1909
|
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1866
1910
|
@extra_params = args[:extra_params] if args.key?(:extra_params)
|
1867
1911
|
@group_prefix = args[:group_prefix] if args.key?(:group_prefix)
|
@@ -2485,7 +2529,8 @@ module Google
|
|
2485
2529
|
# Immutable. Self-link of the GCP resource for the GKE Multi-Cloud cluster. For
|
2486
2530
|
# example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-
|
2487
2531
|
# a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/
|
2488
|
-
# locations/us-west1-a/azureClusters/my-cluster
|
2532
|
+
# locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/
|
2533
|
+
# projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
|
2489
2534
|
# Corresponds to the JSON property `resourceLink`
|
2490
2535
|
# @return [String]
|
2491
2536
|
attr_accessor :resource_link
|
@@ -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.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220828"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -310,6 +310,12 @@ module Google
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
311
311
|
end
|
312
312
|
|
313
|
+
class IdentityServiceGoogleConfig
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
313
319
|
class IdentityServiceMembershipSpec
|
314
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
321
|
|
@@ -724,6 +730,7 @@ module Google
|
|
724
730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
725
731
|
property :gatekeeper_audit, as: 'gatekeeperAudit'
|
726
732
|
property :gatekeeper_controller_manager_state, as: 'gatekeeperControllerManagerState'
|
733
|
+
property :gatekeeper_mutation, as: 'gatekeeperMutation'
|
727
734
|
end
|
728
735
|
end
|
729
736
|
|
@@ -1003,6 +1010,8 @@ module Google
|
|
1003
1010
|
class IdentityServiceAuthMethod
|
1004
1011
|
# @private
|
1005
1012
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1013
|
+
property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1::IdentityServiceGoogleConfig::Representation
|
1014
|
+
|
1006
1015
|
property :name, as: 'name'
|
1007
1016
|
property :oidc_config, as: 'oidcConfig', class: Google::Apis::GkehubV1::IdentityServiceOidcConfig, decorator: Google::Apis::GkehubV1::IdentityServiceOidcConfig::Representation
|
1008
1017
|
|
@@ -1010,6 +1019,13 @@ module Google
|
|
1010
1019
|
end
|
1011
1020
|
end
|
1012
1021
|
|
1022
|
+
class IdentityServiceGoogleConfig
|
1023
|
+
# @private
|
1024
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1025
|
+
property :disable, as: 'disable'
|
1026
|
+
end
|
1027
|
+
end
|
1028
|
+
|
1013
1029
|
class IdentityServiceMembershipSpec
|
1014
1030
|
# @private
|
1015
1031
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1036,6 +1052,7 @@ module Google
|
|
1036
1052
|
property :client_id, as: 'clientId'
|
1037
1053
|
property :client_secret, as: 'clientSecret'
|
1038
1054
|
property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
|
1055
|
+
property :enable_access_token, as: 'enableAccessToken'
|
1039
1056
|
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1040
1057
|
property :extra_params, as: 'extraParams'
|
1041
1058
|
property :group_prefix, as: 'groupPrefix'
|
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.33.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: 2022-
|
11
|
+
date: 2022-09-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-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.33.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: []
|