google-apis-gkehub_v1beta 0.73.0 → 0.75.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: 5a7c00ab3c8d1a0aee83119c4d5a18b0b8308000c32e7de2147370d077cb37cf
|
4
|
+
data.tar.gz: cbc9b39ac3310e070ac20486b234d1c8fa10b1ee2711a0528400c914784a59d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 249fe575dd8de3fe6f2466c03f1dc2a67b36ca6e22dabfac6ca7263477c412d3d9cbfbf55b971e079f5071bbd1f5d02138fa1ecdc1b46bdfee8abd9c2103fcbc
|
7
|
+
data.tar.gz: 8f08e859a0073c6fbcbdf41e82dd1710b7edc29fa105ab657e11efb22d9f7225280a277ec9728111e6dc0e78f9ba9c74efef365904c838dd2cc8722a99c3eba4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
2
2
|
|
3
|
+
### v0.75.0 (2024-05-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240428
|
6
|
+
|
7
|
+
### v0.74.0 (2024-04-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240412
|
10
|
+
|
3
11
|
### v0.73.0 (2024-03-31)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240322
|
@@ -2875,6 +2875,26 @@ module Google
|
|
2875
2875
|
end
|
2876
2876
|
end
|
2877
2877
|
|
2878
|
+
# Holds non-protocol-related configuration options.
|
2879
|
+
class IdentityServiceIdentityServiceOptions
|
2880
|
+
include Google::Apis::Core::Hashable
|
2881
|
+
|
2882
|
+
# Optional. Determines the lifespan of STS tokens issued by Anthos Identity
|
2883
|
+
# Service.
|
2884
|
+
# Corresponds to the JSON property `sessionDuration`
|
2885
|
+
# @return [String]
|
2886
|
+
attr_accessor :session_duration
|
2887
|
+
|
2888
|
+
def initialize(**args)
|
2889
|
+
update!(**args)
|
2890
|
+
end
|
2891
|
+
|
2892
|
+
# Update properties of this object
|
2893
|
+
def update!(**args)
|
2894
|
+
@session_duration = args[:session_duration] if args.key?(:session_duration)
|
2895
|
+
end
|
2896
|
+
end
|
2897
|
+
|
2878
2898
|
# Configuration for the LDAP Auth flow.
|
2879
2899
|
class IdentityServiceLdapConfig
|
2880
2900
|
include Google::Apis::Core::Hashable
|
@@ -2924,6 +2944,11 @@ module Google
|
|
2924
2944
|
# @return [Array<Google::Apis::GkehubV1beta::IdentityServiceAuthMethod>]
|
2925
2945
|
attr_accessor :auth_methods
|
2926
2946
|
|
2947
|
+
# Holds non-protocol-related configuration options.
|
2948
|
+
# Corresponds to the JSON property `identityServiceOptions`
|
2949
|
+
# @return [Google::Apis::GkehubV1beta::IdentityServiceIdentityServiceOptions]
|
2950
|
+
attr_accessor :identity_service_options
|
2951
|
+
|
2927
2952
|
def initialize(**args)
|
2928
2953
|
update!(**args)
|
2929
2954
|
end
|
@@ -2931,6 +2956,7 @@ module Google
|
|
2931
2956
|
# Update properties of this object
|
2932
2957
|
def update!(**args)
|
2933
2958
|
@auth_methods = args[:auth_methods] if args.key?(:auth_methods)
|
2959
|
+
@identity_service_options = args[:identity_service_options] if args.key?(:identity_service_options)
|
2934
2960
|
end
|
2935
2961
|
end
|
2936
2962
|
|
@@ -5550,6 +5576,11 @@ module Google
|
|
5550
5576
|
# @return [Array<Google::Apis::GkehubV1beta::ServiceMeshStatusDetails>]
|
5551
5577
|
attr_accessor :details
|
5552
5578
|
|
5579
|
+
# Output only. Implementation of managed control plane.
|
5580
|
+
# Corresponds to the JSON property `implementation`
|
5581
|
+
# @return [String]
|
5582
|
+
attr_accessor :implementation
|
5583
|
+
|
5553
5584
|
# LifecycleState of control plane management.
|
5554
5585
|
# Corresponds to the JSON property `state`
|
5555
5586
|
# @return [String]
|
@@ -5562,6 +5593,7 @@ module Google
|
|
5562
5593
|
# Update properties of this object
|
5563
5594
|
def update!(**args)
|
5564
5595
|
@details = args[:details] if args.key?(:details)
|
5596
|
+
@implementation = args[:implementation] if args.key?(:implementation)
|
5565
5597
|
@state = args[:state] if args.key?(:state)
|
5566
5598
|
end
|
5567
5599
|
end
|
@@ -5622,7 +5654,7 @@ module Google
|
|
5622
5654
|
class ServiceMeshMembershipState
|
5623
5655
|
include Google::Apis::Core::Hashable
|
5624
5656
|
|
5625
|
-
# Output only. List of
|
5657
|
+
# Output only. List of conditions reported for this membership.
|
5626
5658
|
# Corresponds to the JSON property `conditions`
|
5627
5659
|
# @return [Array<Google::Apis::GkehubV1beta::ServiceMeshCondition>]
|
5628
5660
|
attr_accessor :conditions
|
@@ -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.75.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 = "20240428"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -520,6 +520,12 @@ module Google
|
|
520
520
|
include Google::Apis::Core::JsonObjectSupport
|
521
521
|
end
|
522
522
|
|
523
|
+
class IdentityServiceIdentityServiceOptions
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
+
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
527
|
+
end
|
528
|
+
|
523
529
|
class IdentityServiceLdapConfig
|
524
530
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
531
|
|
@@ -1820,6 +1826,13 @@ module Google
|
|
1820
1826
|
end
|
1821
1827
|
end
|
1822
1828
|
|
1829
|
+
class IdentityServiceIdentityServiceOptions
|
1830
|
+
# @private
|
1831
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1832
|
+
property :session_duration, as: 'sessionDuration'
|
1833
|
+
end
|
1834
|
+
end
|
1835
|
+
|
1823
1836
|
class IdentityServiceLdapConfig
|
1824
1837
|
# @private
|
1825
1838
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1839,6 +1852,8 @@ module Google
|
|
1839
1852
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1840
1853
|
collection :auth_methods, as: 'authMethods', class: Google::Apis::GkehubV1beta::IdentityServiceAuthMethod, decorator: Google::Apis::GkehubV1beta::IdentityServiceAuthMethod::Representation
|
1841
1854
|
|
1855
|
+
property :identity_service_options, as: 'identityServiceOptions', class: Google::Apis::GkehubV1beta::IdentityServiceIdentityServiceOptions, decorator: Google::Apis::GkehubV1beta::IdentityServiceIdentityServiceOptions::Representation
|
1856
|
+
|
1842
1857
|
end
|
1843
1858
|
end
|
1844
1859
|
|
@@ -2554,6 +2569,7 @@ module Google
|
|
2554
2569
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2555
2570
|
collection :details, as: 'details', class: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails::Representation
|
2556
2571
|
|
2572
|
+
property :implementation, as: 'implementation'
|
2557
2573
|
property :state, as: 'state'
|
2558
2574
|
end
|
2559
2575
|
end
|
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.75.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-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.75.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: []
|