google-apis-gkehub_v1alpha 0.80.0 → 0.82.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: 89a3187d7990a5f500e0cf56aa1eac6bc4d2c130323332124e2e54613860b3c7
|
4
|
+
data.tar.gz: b1d78bcc5725da6648d15f29c699f62525c2318ba8c3d09381d56eb454e67f5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f85fe8e8bf736a2c616b662c2b350b6311fc7f8113808f67ebe591ce57f09498a5eb69cc500adedf4ccfd6b3aeceb6ab3de2081038eb38919524752a12920c98
|
7
|
+
data.tar.gz: 7f490c4ae6746ff6dfe5f93021f851e42e23f7755d7b68a6b731374c55b0f51526f4da1ca476f43e83fa7822391f17822fbbebe94a025d87645d76c931f28bec
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1alpha
|
2
2
|
|
3
|
+
### v0.82.0 (2024-05-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240511
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
8
|
+
### v0.81.0 (2024-05-05)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240428
|
11
|
+
|
3
12
|
### v0.80.0 (2024-04-21)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240412
|
@@ -3065,6 +3065,26 @@ module Google
|
|
3065
3065
|
end
|
3066
3066
|
end
|
3067
3067
|
|
3068
|
+
# Holds non-protocol-related configuration options.
|
3069
|
+
class IdentityServiceIdentityServiceOptions
|
3070
|
+
include Google::Apis::Core::Hashable
|
3071
|
+
|
3072
|
+
# Optional. Determines the lifespan of STS tokens issued by Anthos Identity
|
3073
|
+
# Service.
|
3074
|
+
# Corresponds to the JSON property `sessionDuration`
|
3075
|
+
# @return [String]
|
3076
|
+
attr_accessor :session_duration
|
3077
|
+
|
3078
|
+
def initialize(**args)
|
3079
|
+
update!(**args)
|
3080
|
+
end
|
3081
|
+
|
3082
|
+
# Update properties of this object
|
3083
|
+
def update!(**args)
|
3084
|
+
@session_duration = args[:session_duration] if args.key?(:session_duration)
|
3085
|
+
end
|
3086
|
+
end
|
3087
|
+
|
3068
3088
|
# Configuration for the LDAP Auth flow.
|
3069
3089
|
class IdentityServiceLdapConfig
|
3070
3090
|
include Google::Apis::Core::Hashable
|
@@ -3114,6 +3134,11 @@ module Google
|
|
3114
3134
|
# @return [Array<Google::Apis::GkehubV1alpha::IdentityServiceAuthMethod>]
|
3115
3135
|
attr_accessor :auth_methods
|
3116
3136
|
|
3137
|
+
# Holds non-protocol-related configuration options.
|
3138
|
+
# Corresponds to the JSON property `identityServiceOptions`
|
3139
|
+
# @return [Google::Apis::GkehubV1alpha::IdentityServiceIdentityServiceOptions]
|
3140
|
+
attr_accessor :identity_service_options
|
3141
|
+
|
3117
3142
|
def initialize(**args)
|
3118
3143
|
update!(**args)
|
3119
3144
|
end
|
@@ -3121,6 +3146,7 @@ module Google
|
|
3121
3146
|
# Update properties of this object
|
3122
3147
|
def update!(**args)
|
3123
3148
|
@auth_methods = args[:auth_methods] if args.key?(:auth_methods)
|
3149
|
+
@identity_service_options = args[:identity_service_options] if args.key?(:identity_service_options)
|
3124
3150
|
end
|
3125
3151
|
end
|
3126
3152
|
|
@@ -3747,6 +3773,11 @@ module Google
|
|
3747
3773
|
# @return [String]
|
3748
3774
|
attr_accessor :next_page_token
|
3749
3775
|
|
3776
|
+
# List of locations that could not be reached while fetching this list.
|
3777
|
+
# Corresponds to the JSON property `unreachable`
|
3778
|
+
# @return [Array<String>]
|
3779
|
+
attr_accessor :unreachable
|
3780
|
+
|
3750
3781
|
def initialize(**args)
|
3751
3782
|
update!(**args)
|
3752
3783
|
end
|
@@ -3755,6 +3786,7 @@ module Google
|
|
3755
3786
|
def update!(**args)
|
3756
3787
|
@membership_bindings = args[:membership_bindings] if args.key?(:membership_bindings)
|
3757
3788
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3789
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3758
3790
|
end
|
3759
3791
|
end
|
3760
3792
|
|
@@ -3774,6 +3806,11 @@ module Google
|
|
3774
3806
|
# @return [Array<Google::Apis::GkehubV1alpha::RbacRoleBinding>]
|
3775
3807
|
attr_accessor :rbacrolebindings
|
3776
3808
|
|
3809
|
+
# List of locations that could not be reached while fetching this list.
|
3810
|
+
# Corresponds to the JSON property `unreachable`
|
3811
|
+
# @return [Array<String>]
|
3812
|
+
attr_accessor :unreachable
|
3813
|
+
|
3777
3814
|
def initialize(**args)
|
3778
3815
|
update!(**args)
|
3779
3816
|
end
|
@@ -3782,6 +3819,7 @@ module Google
|
|
3782
3819
|
def update!(**args)
|
3783
3820
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3784
3821
|
@rbacrolebindings = args[:rbacrolebindings] if args.key?(:rbacrolebindings)
|
3822
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3785
3823
|
end
|
3786
3824
|
end
|
3787
3825
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1alpha
|
18
18
|
# Version of the google-apis-gkehub_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.82.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240511"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -550,6 +550,12 @@ module Google
|
|
550
550
|
include Google::Apis::Core::JsonObjectSupport
|
551
551
|
end
|
552
552
|
|
553
|
+
class IdentityServiceIdentityServiceOptions
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
553
559
|
class IdentityServiceLdapConfig
|
554
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
561
|
|
@@ -1979,6 +1985,13 @@ module Google
|
|
1979
1985
|
end
|
1980
1986
|
end
|
1981
1987
|
|
1988
|
+
class IdentityServiceIdentityServiceOptions
|
1989
|
+
# @private
|
1990
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1991
|
+
property :session_duration, as: 'sessionDuration'
|
1992
|
+
end
|
1993
|
+
end
|
1994
|
+
|
1982
1995
|
class IdentityServiceLdapConfig
|
1983
1996
|
# @private
|
1984
1997
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1998,6 +2011,8 @@ module Google
|
|
1998
2011
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1999
2012
|
collection :auth_methods, as: 'authMethods', class: Google::Apis::GkehubV1alpha::IdentityServiceAuthMethod, decorator: Google::Apis::GkehubV1alpha::IdentityServiceAuthMethod::Representation
|
2000
2013
|
|
2014
|
+
property :identity_service_options, as: 'identityServiceOptions', class: Google::Apis::GkehubV1alpha::IdentityServiceIdentityServiceOptions, decorator: Google::Apis::GkehubV1alpha::IdentityServiceIdentityServiceOptions::Representation
|
2015
|
+
|
2001
2016
|
end
|
2002
2017
|
end
|
2003
2018
|
|
@@ -2160,6 +2175,7 @@ module Google
|
|
2160
2175
|
collection :membership_bindings, as: 'membershipBindings', class: Google::Apis::GkehubV1alpha::MembershipBinding, decorator: Google::Apis::GkehubV1alpha::MembershipBinding::Representation
|
2161
2176
|
|
2162
2177
|
property :next_page_token, as: 'nextPageToken'
|
2178
|
+
collection :unreachable, as: 'unreachable'
|
2163
2179
|
end
|
2164
2180
|
end
|
2165
2181
|
|
@@ -2169,6 +2185,7 @@ module Google
|
|
2169
2185
|
property :next_page_token, as: 'nextPageToken'
|
2170
2186
|
collection :rbacrolebindings, as: 'rbacrolebindings', class: Google::Apis::GkehubV1alpha::RbacRoleBinding, decorator: Google::Apis::GkehubV1alpha::RbacRoleBinding::Representation
|
2171
2187
|
|
2188
|
+
collection :unreachable, as: 'unreachable'
|
2172
2189
|
end
|
2173
2190
|
end
|
2174
2191
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.82.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-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.82.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|