google-apis-gkehub_v1beta 0.30.0 → 0.31.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48dd59abc5094ecc38fb9a027cd91c7cfc552eb0b270977cf2f9e03c6fe685da
|
4
|
+
data.tar.gz: 110d5f5e89da8cc9bdc7c9b508ecc4b3041207622fa87735f56ea88ddf6c0dd8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd6bb80f0ef211db895901cdc53676e41338c0b0073d75ffd76c91e45247f3d9b270c9e4b0e227dde8a31e53aba1e886e731527aabc21462ebae72424376e716
|
7
|
+
data.tar.gz: c3d90ac89a4f3b8520f3a61ed5baab15d97fbba1c2e740349ab4793bacce754e2c217bbc3a126a031c48ce25caa051e1940d9b30ab797bed5a9011dc55c0a107
|
data/CHANGELOG.md
CHANGED
@@ -45,7 +45,7 @@ module Google
|
|
45
45
|
class AnthosObservabilityMembershipSpec
|
46
46
|
include Google::Apis::Core::Hashable
|
47
47
|
|
48
|
-
#
|
48
|
+
# Use full of metrics rather than optimized metrics. See https://cloud.google.
|
49
49
|
# com/anthos/clusters/docs/on-prem/1.8/concepts/logging-and-monitoring#
|
50
50
|
# optimized_metrics_default_metrics
|
51
51
|
# Corresponds to the JSON property `doNotOptimizeMetrics`
|
@@ -53,8 +53,7 @@ module Google
|
|
53
53
|
attr_accessor :do_not_optimize_metrics
|
54
54
|
alias_method :do_not_optimize_metrics?, :do_not_optimize_metrics
|
55
55
|
|
56
|
-
#
|
57
|
-
# application-metrics-logs-user-guide
|
56
|
+
# Enable collecting and reporting metrics and logs from user apps.
|
58
57
|
# Corresponds to the JSON property `enableStackdriverOnApplications`
|
59
58
|
# @return [Boolean]
|
60
59
|
attr_accessor :enable_stackdriver_on_applications
|
@@ -330,31 +329,33 @@ module Google
|
|
330
329
|
# members` can have the following values: * `allUsers`: A special identifier
|
331
330
|
# that represents anyone who is on the internet; with or without a Google
|
332
331
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
333
|
-
# anyone who is authenticated with a Google account or a service account.
|
334
|
-
#
|
335
|
-
#
|
336
|
-
#
|
337
|
-
#
|
338
|
-
#
|
339
|
-
#
|
340
|
-
#
|
341
|
-
# .
|
342
|
-
#
|
343
|
-
# email address
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
# emailid
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
332
|
+
# anyone who is authenticated with a Google account or a service account. Does
|
333
|
+
# not include identities that come from external identity providers (IdPs)
|
334
|
+
# through identity federation. * `user:`emailid``: An email address that
|
335
|
+
# represents a specific Google account. For example, `alice@example.com` . * `
|
336
|
+
# serviceAccount:`emailid``: An email address that represents a Google service
|
337
|
+
# account. For example, `my-other-app@appspot.gserviceaccount.com`. * `
|
338
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]`: An
|
339
|
+
# identifier for a [Kubernetes service account](https://cloud.google.com/
|
340
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
341
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
342
|
+
# email address that represents a Google group. For example, `admins@example.com`
|
343
|
+
# . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
|
344
|
+
# identifier) representing a user that has been recently deleted. For example, `
|
345
|
+
# alice@example.com?uid=123456789012345678901`. If the user is recovered, this
|
346
|
+
# value reverts to `user:`emailid`` and the recovered user retains the role in
|
347
|
+
# the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
|
348
|
+
# address (plus unique identifier) representing a service account that has been
|
349
|
+
# recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
350
|
+
# 123456789012345678901`. If the service account is undeleted, this value
|
351
|
+
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
352
|
+
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
353
|
+
# An email address (plus unique identifier) representing a Google group that has
|
354
|
+
# been recently deleted. For example, `admins@example.com?uid=
|
355
|
+
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
356
|
+
# group:`emailid`` and the recovered group retains the role in the binding. * `
|
357
|
+
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
358
|
+
# of that domain. For example, `google.com` or `example.com`.
|
358
359
|
# Corresponds to the JSON property `members`
|
359
360
|
# @return [Array<String>]
|
360
361
|
attr_accessor :members
|
@@ -545,7 +546,7 @@ module Google
|
|
545
546
|
attr_accessor :prevent_drift
|
546
547
|
alias_method :prevent_drift?, :prevent_drift
|
547
548
|
|
548
|
-
# Specifies whether the Config Sync Repo is in
|
549
|
+
# Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured"
|
549
550
|
# mode.
|
550
551
|
# Corresponds to the JSON property `sourceFormat`
|
551
552
|
# @return [String]
|
@@ -757,6 +758,11 @@ module Google
|
|
757
758
|
# @return [String]
|
758
759
|
attr_accessor :gatekeeper_controller_manager_state
|
759
760
|
|
761
|
+
# Status of the pod serving the mutation webhook.
|
762
|
+
# Corresponds to the JSON property `gatekeeperMutation`
|
763
|
+
# @return [String]
|
764
|
+
attr_accessor :gatekeeper_mutation
|
765
|
+
|
760
766
|
def initialize(**args)
|
761
767
|
update!(**args)
|
762
768
|
end
|
@@ -765,6 +771,7 @@ module Google
|
|
765
771
|
def update!(**args)
|
766
772
|
@gatekeeper_audit = args[:gatekeeper_audit] if args.key?(:gatekeeper_audit)
|
767
773
|
@gatekeeper_controller_manager_state = args[:gatekeeper_controller_manager_state] if args.key?(:gatekeeper_controller_manager_state)
|
774
|
+
@gatekeeper_mutation = args[:gatekeeper_mutation] if args.key?(:gatekeeper_mutation)
|
768
775
|
end
|
769
776
|
end
|
770
777
|
|
@@ -1661,6 +1668,11 @@ module Google
|
|
1661
1668
|
class IdentityServiceAuthMethod
|
1662
1669
|
include Google::Apis::Core::Hashable
|
1663
1670
|
|
1671
|
+
# Configuration for the Google Plugin Auth flow.
|
1672
|
+
# Corresponds to the JSON property `googleConfig`
|
1673
|
+
# @return [Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig]
|
1674
|
+
attr_accessor :google_config
|
1675
|
+
|
1664
1676
|
# Identifier for auth config.
|
1665
1677
|
# Corresponds to the JSON property `name`
|
1666
1678
|
# @return [String]
|
@@ -1682,12 +1694,33 @@ module Google
|
|
1682
1694
|
|
1683
1695
|
# Update properties of this object
|
1684
1696
|
def update!(**args)
|
1697
|
+
@google_config = args[:google_config] if args.key?(:google_config)
|
1685
1698
|
@name = args[:name] if args.key?(:name)
|
1686
1699
|
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
1687
1700
|
@proxy = args[:proxy] if args.key?(:proxy)
|
1688
1701
|
end
|
1689
1702
|
end
|
1690
1703
|
|
1704
|
+
# Configuration for the Google Plugin Auth flow.
|
1705
|
+
class IdentityServiceGoogleConfig
|
1706
|
+
include Google::Apis::Core::Hashable
|
1707
|
+
|
1708
|
+
# Disable automatic configuration of Google Plugin on supported platforms.
|
1709
|
+
# Corresponds to the JSON property `disable`
|
1710
|
+
# @return [Boolean]
|
1711
|
+
attr_accessor :disable
|
1712
|
+
alias_method :disable?, :disable
|
1713
|
+
|
1714
|
+
def initialize(**args)
|
1715
|
+
update!(**args)
|
1716
|
+
end
|
1717
|
+
|
1718
|
+
# Update properties of this object
|
1719
|
+
def update!(**args)
|
1720
|
+
@disable = args[:disable] if args.key?(:disable)
|
1721
|
+
end
|
1722
|
+
end
|
1723
|
+
|
1691
1724
|
# **Anthos Identity Service**: Configuration for a single Membership.
|
1692
1725
|
class IdentityServiceMembershipSpec
|
1693
1726
|
include Google::Apis::Core::Hashable
|
@@ -1771,6 +1804,12 @@ module Google
|
|
1771
1804
|
attr_accessor :deploy_cloud_console_proxy
|
1772
1805
|
alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
|
1773
1806
|
|
1807
|
+
# Enable access token.
|
1808
|
+
# Corresponds to the JSON property `enableAccessToken`
|
1809
|
+
# @return [Boolean]
|
1810
|
+
attr_accessor :enable_access_token
|
1811
|
+
alias_method :enable_access_token?, :enable_access_token
|
1812
|
+
|
1774
1813
|
# Output only. Encrypted OIDC Client secret
|
1775
1814
|
# Corresponds to the JSON property `encryptedClientSecret`
|
1776
1815
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
@@ -1829,6 +1868,7 @@ module Google
|
|
1829
1868
|
@client_id = args[:client_id] if args.key?(:client_id)
|
1830
1869
|
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1831
1870
|
@deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
|
1871
|
+
@enable_access_token = args[:enable_access_token] if args.key?(:enable_access_token)
|
1832
1872
|
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1833
1873
|
@extra_params = args[:extra_params] if args.key?(:extra_params)
|
1834
1874
|
@group_prefix = args[:group_prefix] if args.key?(:group_prefix)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1beta
|
18
18
|
# Version of the google-apis-gkehub_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
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
|
@@ -304,6 +304,12 @@ module Google
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
305
305
|
end
|
306
306
|
|
307
|
+
class IdentityServiceGoogleConfig
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
307
313
|
class IdentityServiceMembershipSpec
|
308
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
315
|
|
@@ -725,6 +731,7 @@ module Google
|
|
725
731
|
class Representation < Google::Apis::Core::JsonRepresentation
|
726
732
|
property :gatekeeper_audit, as: 'gatekeeperAudit'
|
727
733
|
property :gatekeeper_controller_manager_state, as: 'gatekeeperControllerManagerState'
|
734
|
+
property :gatekeeper_mutation, as: 'gatekeeperMutation'
|
728
735
|
end
|
729
736
|
end
|
730
737
|
|
@@ -976,6 +983,8 @@ module Google
|
|
976
983
|
class IdentityServiceAuthMethod
|
977
984
|
# @private
|
978
985
|
class Representation < Google::Apis::Core::JsonRepresentation
|
986
|
+
property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig::Representation
|
987
|
+
|
979
988
|
property :name, as: 'name'
|
980
989
|
property :oidc_config, as: 'oidcConfig', class: Google::Apis::GkehubV1beta::IdentityServiceOidcConfig, decorator: Google::Apis::GkehubV1beta::IdentityServiceOidcConfig::Representation
|
981
990
|
|
@@ -983,6 +992,13 @@ module Google
|
|
983
992
|
end
|
984
993
|
end
|
985
994
|
|
995
|
+
class IdentityServiceGoogleConfig
|
996
|
+
# @private
|
997
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
998
|
+
property :disable, as: 'disable'
|
999
|
+
end
|
1000
|
+
end
|
1001
|
+
|
986
1002
|
class IdentityServiceMembershipSpec
|
987
1003
|
# @private
|
988
1004
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1009,6 +1025,7 @@ module Google
|
|
1009
1025
|
property :client_id, as: 'clientId'
|
1010
1026
|
property :client_secret, as: 'clientSecret'
|
1011
1027
|
property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
|
1028
|
+
property :enable_access_token, as: 'enableAccessToken'
|
1012
1029
|
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1013
1030
|
property :extra_params, as: 'extraParams'
|
1014
1031
|
property :group_prefix, as: 'groupPrefix'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.31.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|