google-apis-container_v1beta1 0.19.0 → 0.20.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: 3a8def92b646f0bbe7b83b8edddf4157d4c835fe34dcc64e5182092723f85aa2
|
4
|
+
data.tar.gz: 339ddba26e70042327faa569fbc5bfef21aad2eb9ef41913f6a6d801b44774fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83e41726b0897422090c0400433f66d04ea634e9d6ab6e762d574e0f3104c95ddc0dad6a1c8e4490bcbf3215da032fc5b81a5826b879f5d488fb0c7a1201072b
|
7
|
+
data.tar.gz: 8b124d7a80cd8a9b61907339357cfe1e1133714bb80441367809454d60b2125110565895037c25e60ca34212528dc53029f8f11c069b87a35fa2a14003054398
|
data/CHANGELOG.md
CHANGED
@@ -747,6 +747,11 @@ module Google
|
|
747
747
|
# @return [String]
|
748
748
|
attr_accessor :master_ipv4_cidr_block
|
749
749
|
|
750
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
751
|
+
# Corresponds to the JSON property `meshCertificates`
|
752
|
+
# @return [Google::Apis::ContainerV1beta1::MeshCertificates]
|
753
|
+
attr_accessor :mesh_certificates
|
754
|
+
|
750
755
|
# MonitoringConfig is cluster monitoring configuration.
|
751
756
|
# Corresponds to the JSON property `monitoringConfig`
|
752
757
|
# @return [Google::Apis::ContainerV1beta1::MonitoringConfig]
|
@@ -971,6 +976,7 @@ module Google
|
|
971
976
|
@master_auth = args[:master_auth] if args.key?(:master_auth)
|
972
977
|
@master_authorized_networks_config = args[:master_authorized_networks_config] if args.key?(:master_authorized_networks_config)
|
973
978
|
@master_ipv4_cidr_block = args[:master_ipv4_cidr_block] if args.key?(:master_ipv4_cidr_block)
|
979
|
+
@mesh_certificates = args[:mesh_certificates] if args.key?(:mesh_certificates)
|
974
980
|
@monitoring_config = args[:monitoring_config] if args.key?(:monitoring_config)
|
975
981
|
@monitoring_service = args[:monitoring_service] if args.key?(:monitoring_service)
|
976
982
|
@name = args[:name] if args.key?(:name)
|
@@ -1203,6 +1209,11 @@ module Google
|
|
1203
1209
|
# @return [String]
|
1204
1210
|
attr_accessor :desired_master_version
|
1205
1211
|
|
1212
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
1213
|
+
# Corresponds to the JSON property `desiredMeshCertificates`
|
1214
|
+
# @return [Google::Apis::ContainerV1beta1::MeshCertificates]
|
1215
|
+
attr_accessor :desired_mesh_certificates
|
1216
|
+
|
1206
1217
|
# MonitoringConfig is cluster monitoring configuration.
|
1207
1218
|
# Corresponds to the JSON property `desiredMonitoringConfig`
|
1208
1219
|
# @return [Google::Apis::ContainerV1beta1::MonitoringConfig]
|
@@ -1335,6 +1346,7 @@ module Google
|
|
1335
1346
|
@desired_master = args[:desired_master] if args.key?(:desired_master)
|
1336
1347
|
@desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
|
1337
1348
|
@desired_master_version = args[:desired_master_version] if args.key?(:desired_master_version)
|
1349
|
+
@desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
|
1338
1350
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
1339
1351
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
1340
1352
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
@@ -2756,6 +2768,30 @@ module Google
|
|
2756
2768
|
end
|
2757
2769
|
end
|
2758
2770
|
|
2771
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
2772
|
+
class MeshCertificates
|
2773
|
+
include Google::Apis::Core::Hashable
|
2774
|
+
|
2775
|
+
# enable_certificates controls issuance of workload mTLS certificates. If set,
|
2776
|
+
# the GKE Workload Identity Certificates controller and node agent will be
|
2777
|
+
# deployed in the cluster, which can then be configured by creating a
|
2778
|
+
# WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
|
2779
|
+
# workload_pool must be non-empty).
|
2780
|
+
# Corresponds to the JSON property `enableCertificates`
|
2781
|
+
# @return [Boolean]
|
2782
|
+
attr_accessor :enable_certificates
|
2783
|
+
alias_method :enable_certificates?, :enable_certificates
|
2784
|
+
|
2785
|
+
def initialize(**args)
|
2786
|
+
update!(**args)
|
2787
|
+
end
|
2788
|
+
|
2789
|
+
# Update properties of this object
|
2790
|
+
def update!(**args)
|
2791
|
+
@enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
|
2792
|
+
end
|
2793
|
+
end
|
2794
|
+
|
2759
2795
|
# Progress metric is (string, int|float|string) pair.
|
2760
2796
|
class Metric
|
2761
2797
|
include Google::Apis::Core::Hashable
|
@@ -3143,6 +3179,13 @@ module Google
|
|
3143
3179
|
# @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
|
3144
3180
|
attr_accessor :shielded_instance_config
|
3145
3181
|
|
3182
|
+
# Spot flag for enabling Spot VM, which is a rebrand of the existing preemptible
|
3183
|
+
# flag.
|
3184
|
+
# Corresponds to the JSON property `spot`
|
3185
|
+
# @return [Boolean]
|
3186
|
+
attr_accessor :spot
|
3187
|
+
alias_method :spot?, :spot
|
3188
|
+
|
3146
3189
|
# The list of instance tags applied to all nodes. Tags are used to identify
|
3147
3190
|
# valid sources or targets for network firewalls and are specified by the client
|
3148
3191
|
# during cluster or node pool creation. Each tag within the list must comply
|
@@ -3191,6 +3234,7 @@ module Google
|
|
3191
3234
|
@sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
|
3192
3235
|
@service_account = args[:service_account] if args.key?(:service_account)
|
3193
3236
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
3237
|
+
@spot = args[:spot] if args.key?(:spot)
|
3194
3238
|
@tags = args[:tags] if args.key?(:tags)
|
3195
3239
|
@taints = args[:taints] if args.key?(:taints)
|
3196
3240
|
@workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
|
@@ -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.20.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 = "20210914"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -394,6 +394,12 @@ module Google
|
|
394
394
|
include Google::Apis::Core::JsonObjectSupport
|
395
395
|
end
|
396
396
|
|
397
|
+
class MeshCertificates
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
397
403
|
class Metric
|
398
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
405
|
|
@@ -1000,6 +1006,8 @@ module Google
|
|
1000
1006
|
property :master_authorized_networks_config, as: 'masterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
|
1001
1007
|
|
1002
1008
|
property :master_ipv4_cidr_block, as: 'masterIpv4CidrBlock'
|
1009
|
+
property :mesh_certificates, as: 'meshCertificates', class: Google::Apis::ContainerV1beta1::MeshCertificates, decorator: Google::Apis::ContainerV1beta1::MeshCertificates::Representation
|
1010
|
+
|
1003
1011
|
property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
|
1004
1012
|
|
1005
1013
|
property :monitoring_service, as: 'monitoringService'
|
@@ -1106,6 +1114,8 @@ module Google
|
|
1106
1114
|
property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
|
1107
1115
|
|
1108
1116
|
property :desired_master_version, as: 'desiredMasterVersion'
|
1117
|
+
property :desired_mesh_certificates, as: 'desiredMeshCertificates', class: Google::Apis::ContainerV1beta1::MeshCertificates, decorator: Google::Apis::ContainerV1beta1::MeshCertificates::Representation
|
1118
|
+
|
1109
1119
|
property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
|
1110
1120
|
|
1111
1121
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
@@ -1532,6 +1542,13 @@ module Google
|
|
1532
1542
|
end
|
1533
1543
|
end
|
1534
1544
|
|
1545
|
+
class MeshCertificates
|
1546
|
+
# @private
|
1547
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1548
|
+
property :enable_certificates, as: 'enableCertificates'
|
1549
|
+
end
|
1550
|
+
end
|
1551
|
+
|
1535
1552
|
class Metric
|
1536
1553
|
# @private
|
1537
1554
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1629,6 +1646,7 @@ module Google
|
|
1629
1646
|
property :service_account, as: 'serviceAccount'
|
1630
1647
|
property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig, decorator: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig::Representation
|
1631
1648
|
|
1649
|
+
property :spot, as: 'spot'
|
1632
1650
|
collection :tags, as: 'tags'
|
1633
1651
|
collection :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaint, decorator: Google::Apis::ContainerV1beta1::NodeTaint::Representation
|
1634
1652
|
|
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.20.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-10-04 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.20.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: []
|