google-apis-container_v1beta1 0.15.0 → 0.16.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: e9815af4ecba9d83624fb388bd9c839206284aad528aa6f111d06fa2bdccc8db
|
4
|
+
data.tar.gz: 5909d3f984b860f21b38692db5c21c41ab36433054c58bc822563e673de0caed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 393454d3507eda691cca737cc50fd24eef6808638543b0ecb562878a53bb0e2af9ec3c201ae1556ce211e5203c40aeecaf3646988ed05ea63662d9ced14b56e8
|
7
|
+
data.tar.gz: 6ca6df5862f1d3febbd73ddb16b75b2a039b84b8b33f715608583de816bc6797de79014adcc0c8c400ed15df6d38ef625bf2d898ad6030cd67c0bbdf15fe82c5
|
data/CHANGELOG.md
CHANGED
@@ -621,6 +621,12 @@ module Google
|
|
621
621
|
# @return [String]
|
622
622
|
attr_accessor :id
|
623
623
|
|
624
|
+
# IdentityServiceConfig is configuration for Identity Service which allows
|
625
|
+
# customers to use external identity providers with the K8S API
|
626
|
+
# Corresponds to the JSON property `identityServiceConfig`
|
627
|
+
# @return [Google::Apis::ContainerV1beta1::IdentityServiceConfig]
|
628
|
+
attr_accessor :identity_service_config
|
629
|
+
|
624
630
|
# The initial Kubernetes version for this cluster. Valid versions are those
|
625
631
|
# found in validMasterVersions returned by getServerConfig. The version can be
|
626
632
|
# upgraded over time; such upgrades are reflected in currentMasterVersion and
|
@@ -933,6 +939,7 @@ module Google
|
|
933
939
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
934
940
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
935
941
|
@id = args[:id] if args.key?(:id)
|
942
|
+
@identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
|
936
943
|
@initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
|
937
944
|
@initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
|
938
945
|
@instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
|
@@ -1105,6 +1112,12 @@ module Google
|
|
1105
1112
|
# @return [Google::Apis::ContainerV1beta1::DnsConfig]
|
1106
1113
|
attr_accessor :desired_dns_config
|
1107
1114
|
|
1115
|
+
# IdentityServiceConfig is configuration for Identity Service which allows
|
1116
|
+
# customers to use external identity providers with the K8S API
|
1117
|
+
# Corresponds to the JSON property `desiredIdentityServiceConfig`
|
1118
|
+
# @return [Google::Apis::ContainerV1beta1::IdentityServiceConfig]
|
1119
|
+
attr_accessor :desired_identity_service_config
|
1120
|
+
|
1108
1121
|
# The desired image type for the node pool. NOTE: Set the "desired_node_pool"
|
1109
1122
|
# field as well.
|
1110
1123
|
# Corresponds to the JSON property `desiredImageType`
|
@@ -1284,6 +1297,7 @@ module Google
|
|
1284
1297
|
@desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
|
1285
1298
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1286
1299
|
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
1300
|
+
@desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
|
1287
1301
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
1288
1302
|
@desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
|
1289
1303
|
@desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
|
@@ -2085,6 +2099,27 @@ module Google
|
|
2085
2099
|
end
|
2086
2100
|
end
|
2087
2101
|
|
2102
|
+
# IdentityServiceConfig is configuration for Identity Service which allows
|
2103
|
+
# customers to use external identity providers with the K8S API
|
2104
|
+
class IdentityServiceConfig
|
2105
|
+
include Google::Apis::Core::Hashable
|
2106
|
+
|
2107
|
+
# Whether to enable the Identity Service component
|
2108
|
+
# Corresponds to the JSON property `enabled`
|
2109
|
+
# @return [Boolean]
|
2110
|
+
attr_accessor :enabled
|
2111
|
+
alias_method :enabled?, :enabled
|
2112
|
+
|
2113
|
+
def initialize(**args)
|
2114
|
+
update!(**args)
|
2115
|
+
end
|
2116
|
+
|
2117
|
+
# Update properties of this object
|
2118
|
+
def update!(**args)
|
2119
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
2120
|
+
end
|
2121
|
+
end
|
2122
|
+
|
2088
2123
|
# IntraNodeVisibilityConfig contains the desired config of the intra-node
|
2089
2124
|
# visibility on this cluster.
|
2090
2125
|
class IntraNodeVisibilityConfig
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1beta1
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210715"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,6 +256,12 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class IdentityServiceConfig
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
259
265
|
class IntraNodeVisibilityConfig
|
260
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
267
|
|
@@ -932,6 +938,8 @@ module Google
|
|
932
938
|
property :endpoint, as: 'endpoint'
|
933
939
|
property :expire_time, as: 'expireTime'
|
934
940
|
property :id, as: 'id'
|
941
|
+
property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
|
942
|
+
|
935
943
|
property :initial_cluster_version, as: 'initialClusterVersion'
|
936
944
|
property :initial_node_count, as: 'initialNodeCount'
|
937
945
|
collection :instance_group_urls, as: 'instanceGroupUrls'
|
@@ -1040,6 +1048,8 @@ module Google
|
|
1040
1048
|
|
1041
1049
|
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
|
1042
1050
|
|
1051
|
+
property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
|
1052
|
+
|
1043
1053
|
property :desired_image_type, as: 'desiredImageType'
|
1044
1054
|
property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
|
1045
1055
|
|
@@ -1280,6 +1290,13 @@ module Google
|
|
1280
1290
|
end
|
1281
1291
|
end
|
1282
1292
|
|
1293
|
+
class IdentityServiceConfig
|
1294
|
+
# @private
|
1295
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1296
|
+
property :enabled, as: 'enabled'
|
1297
|
+
end
|
1298
|
+
end
|
1299
|
+
|
1283
1300
|
class IntraNodeVisibilityConfig
|
1284
1301
|
# @private
|
1285
1302
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.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: 2021-
|
11
|
+
date: 2021-08-02 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/master/generated/google-apis-container_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|