google-apis-container_v1 0.15.0 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/container_v1/classes.rb +227 -12
- data/lib/google/apis/container_v1/gem_version.rb +2 -2
- data/lib/google/apis/container_v1/representations.rb +117 -2
- data/lib/google/apis/container_v1.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43950a87c679f347db47f4bceaff32ea85a1adcc7b01a872d40b689146b22786
|
4
|
+
data.tar.gz: 88c02b303fe11d54d889ab448ff65372802246138882ab7ec380fd105e1fd8e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b112cb5bc82d639e96b88f1a5e9d995abd2bf806a1157d99f5f02b231dbc9db4cba4b7450edb6b2e6d679c5c53974fa02fc91e2eb3f66571d2c71a9a24f491c
|
7
|
+
data.tar.gz: 6d44d2c2dced8d7a8be2652b8fa23fc3b55f148212e638d6f1a25b7fd020763203ecf76b125147958ef0f52b31b2b4dab8c76ee576e410e3a9487eda1f6b8b45
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.19.0 (2021-10-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20211008
|
6
|
+
* Unspecified changes
|
7
|
+
|
8
|
+
### v0.18.0 (2021-10-02)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20210914
|
11
|
+
|
12
|
+
### v0.17.0 (2021-09-20)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210906
|
15
|
+
|
16
|
+
### v0.16.0 (2021-09-03)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210820
|
19
|
+
|
3
20
|
### v0.15.0 (2021-08-05)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210722
|
data/OVERVIEW.md
CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
|
|
60
60
|
|
61
61
|
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
62
|
|
63
|
-
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
|
64
|
+
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Container service in particular.)
|
67
67
|
|
@@ -37,6 +37,13 @@ module Google
|
|
37
37
|
# @return [String]
|
38
38
|
attr_accessor :accelerator_type
|
39
39
|
|
40
|
+
# Size of partitions to create on the GPU. Valid values are described in the
|
41
|
+
# NVIDIA [mig user guide](https://docs.nvidia.com/datacenter/tesla/mig-user-
|
42
|
+
# guide/#partitioning).
|
43
|
+
# Corresponds to the JSON property `gpuPartitionSize`
|
44
|
+
# @return [String]
|
45
|
+
attr_accessor :gpu_partition_size
|
46
|
+
|
40
47
|
def initialize(**args)
|
41
48
|
update!(**args)
|
42
49
|
end
|
@@ -45,6 +52,7 @@ module Google
|
|
45
52
|
def update!(**args)
|
46
53
|
@accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
|
47
54
|
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
55
|
+
@gpu_partition_size = args[:gpu_partition_size] if args.key?(:gpu_partition_size)
|
48
56
|
end
|
49
57
|
end
|
50
58
|
|
@@ -73,6 +81,11 @@ module Google
|
|
73
81
|
# @return [Google::Apis::ContainerV1::GcePersistentDiskCsiDriverConfig]
|
74
82
|
attr_accessor :gce_persistent_disk_csi_driver_config
|
75
83
|
|
84
|
+
# Configuration for the GCP Filestore CSI driver.
|
85
|
+
# Corresponds to the JSON property `gcpFilestoreCsiDriverConfig`
|
86
|
+
# @return [Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig]
|
87
|
+
attr_accessor :gcp_filestore_csi_driver_config
|
88
|
+
|
76
89
|
# Configuration options for the horizontal pod autoscaling feature, which
|
77
90
|
# increases or decreases the number of replica pods a replication controller has
|
78
91
|
# based on the resource usage of the existing pods.
|
@@ -108,6 +121,7 @@ module Google
|
|
108
121
|
@config_connector_config = args[:config_connector_config] if args.key?(:config_connector_config)
|
109
122
|
@dns_cache_config = args[:dns_cache_config] if args.key?(:dns_cache_config)
|
110
123
|
@gce_persistent_disk_csi_driver_config = args[:gce_persistent_disk_csi_driver_config] if args.key?(:gce_persistent_disk_csi_driver_config)
|
124
|
+
@gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
|
111
125
|
@horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
|
112
126
|
@http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
|
113
127
|
@kubernetes_dashboard = args[:kubernetes_dashboard] if args.key?(:kubernetes_dashboard)
|
@@ -674,6 +688,11 @@ module Google
|
|
674
688
|
# @return [Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig]
|
675
689
|
attr_accessor :master_authorized_networks_config
|
676
690
|
|
691
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
692
|
+
# Corresponds to the JSON property `meshCertificates`
|
693
|
+
# @return [Google::Apis::ContainerV1::MeshCertificates]
|
694
|
+
attr_accessor :mesh_certificates
|
695
|
+
|
677
696
|
# MonitoringConfig is cluster monitoring configuration.
|
678
697
|
# Corresponds to the JSON property `monitoringConfig`
|
679
698
|
# @return [Google::Apis::ContainerV1::MonitoringConfig]
|
@@ -728,6 +747,11 @@ module Google
|
|
728
747
|
# @return [Fixnum]
|
729
748
|
attr_accessor :node_ipv4_cidr_size
|
730
749
|
|
750
|
+
# Subset of Nodepool message that has defaults.
|
751
|
+
# Corresponds to the JSON property `nodePoolDefaults`
|
752
|
+
# @return [Google::Apis::ContainerV1::NodePoolDefaults]
|
753
|
+
attr_accessor :node_pool_defaults
|
754
|
+
|
731
755
|
# The node pools associated with this cluster. This field should not be set if "
|
732
756
|
# node_config" or "initial_node_count" are specified.
|
733
757
|
# Corresponds to the JSON property `nodePools`
|
@@ -863,6 +887,7 @@ module Google
|
|
863
887
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
864
888
|
@master_auth = args[:master_auth] if args.key?(:master_auth)
|
865
889
|
@master_authorized_networks_config = args[:master_authorized_networks_config] if args.key?(:master_authorized_networks_config)
|
890
|
+
@mesh_certificates = args[:mesh_certificates] if args.key?(:mesh_certificates)
|
866
891
|
@monitoring_config = args[:monitoring_config] if args.key?(:monitoring_config)
|
867
892
|
@monitoring_service = args[:monitoring_service] if args.key?(:monitoring_service)
|
868
893
|
@name = args[:name] if args.key?(:name)
|
@@ -871,6 +896,7 @@ module Google
|
|
871
896
|
@network_policy = args[:network_policy] if args.key?(:network_policy)
|
872
897
|
@node_config = args[:node_config] if args.key?(:node_config)
|
873
898
|
@node_ipv4_cidr_size = args[:node_ipv4_cidr_size] if args.key?(:node_ipv4_cidr_size)
|
899
|
+
@node_pool_defaults = args[:node_pool_defaults] if args.key?(:node_pool_defaults)
|
874
900
|
@node_pools = args[:node_pools] if args.key?(:node_pools)
|
875
901
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
876
902
|
@private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
|
@@ -955,11 +981,6 @@ module Google
|
|
955
981
|
# @return [Google::Apis::ContainerV1::AuthenticatorGroupsConfig]
|
956
982
|
attr_accessor :desired_authenticator_groups_config
|
957
983
|
|
958
|
-
# Autopilot is the configuration for Autopilot settings on the cluster.
|
959
|
-
# Corresponds to the JSON property `desiredAutopilot`
|
960
|
-
# @return [Google::Apis::ContainerV1::Autopilot]
|
961
|
-
attr_accessor :desired_autopilot
|
962
|
-
|
963
984
|
# Configuration for Binary Authorization.
|
964
985
|
# Corresponds to the JSON property `desiredBinaryAuthorization`
|
965
986
|
# @return [Google::Apis::ContainerV1::BinaryAuthorization]
|
@@ -988,6 +1009,17 @@ module Google
|
|
988
1009
|
# @return [Google::Apis::ContainerV1::DefaultSnatStatus]
|
989
1010
|
attr_accessor :desired_default_snat_status
|
990
1011
|
|
1012
|
+
# DNSConfig contains the desired set of options for configuring clusterDNS.
|
1013
|
+
# Corresponds to the JSON property `desiredDnsConfig`
|
1014
|
+
# @return [Google::Apis::ContainerV1::DnsConfig]
|
1015
|
+
attr_accessor :desired_dns_config
|
1016
|
+
|
1017
|
+
# GcfsConfig contains configurations of Google Container File System (image
|
1018
|
+
# streaming).
|
1019
|
+
# Corresponds to the JSON property `desiredGcfsConfig`
|
1020
|
+
# @return [Google::Apis::ContainerV1::GcfsConfig]
|
1021
|
+
attr_accessor :desired_gcfs_config
|
1022
|
+
|
991
1023
|
# The desired image type for the node pool. NOTE: Set the "desired_node_pool"
|
992
1024
|
# field as well.
|
993
1025
|
# Corresponds to the JSON property `desiredImageType`
|
@@ -1050,6 +1082,11 @@ module Google
|
|
1050
1082
|
# @return [String]
|
1051
1083
|
attr_accessor :desired_master_version
|
1052
1084
|
|
1085
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
1086
|
+
# Corresponds to the JSON property `desiredMeshCertificates`
|
1087
|
+
# @return [Google::Apis::ContainerV1::MeshCertificates]
|
1088
|
+
attr_accessor :desired_mesh_certificates
|
1089
|
+
|
1053
1090
|
# MonitoringConfig is cluster monitoring configuration.
|
1054
1091
|
# Corresponds to the JSON property `desiredMonitoringConfig`
|
1055
1092
|
# @return [Google::Apis::ContainerV1::MonitoringConfig]
|
@@ -1143,12 +1180,13 @@ module Google
|
|
1143
1180
|
def update!(**args)
|
1144
1181
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
1145
1182
|
@desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
|
1146
|
-
@desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
|
1147
1183
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
1148
1184
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
1149
1185
|
@desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
|
1150
1186
|
@desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
|
1151
1187
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1188
|
+
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
1189
|
+
@desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
|
1152
1190
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
1153
1191
|
@desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
|
1154
1192
|
@desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
|
@@ -1157,6 +1195,7 @@ module Google
|
|
1157
1195
|
@desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
|
1158
1196
|
@desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
|
1159
1197
|
@desired_master_version = args[:desired_master_version] if args.key?(:desired_master_version)
|
1198
|
+
@desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
|
1160
1199
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
1161
1200
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
1162
1201
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
@@ -1374,6 +1413,37 @@ module Google
|
|
1374
1413
|
end
|
1375
1414
|
end
|
1376
1415
|
|
1416
|
+
# DNSConfig contains the desired set of options for configuring clusterDNS.
|
1417
|
+
class DnsConfig
|
1418
|
+
include Google::Apis::Core::Hashable
|
1419
|
+
|
1420
|
+
# cluster_dns indicates which in-cluster DNS provider should be used.
|
1421
|
+
# Corresponds to the JSON property `clusterDns`
|
1422
|
+
# @return [String]
|
1423
|
+
attr_accessor :cluster_dns
|
1424
|
+
|
1425
|
+
# cluster_dns_domain is the suffix used for all cluster service records.
|
1426
|
+
# Corresponds to the JSON property `clusterDnsDomain`
|
1427
|
+
# @return [String]
|
1428
|
+
attr_accessor :cluster_dns_domain
|
1429
|
+
|
1430
|
+
# cluster_dns_scope indicates the scope of access to cluster DNS records.
|
1431
|
+
# Corresponds to the JSON property `clusterDnsScope`
|
1432
|
+
# @return [String]
|
1433
|
+
attr_accessor :cluster_dns_scope
|
1434
|
+
|
1435
|
+
def initialize(**args)
|
1436
|
+
update!(**args)
|
1437
|
+
end
|
1438
|
+
|
1439
|
+
# Update properties of this object
|
1440
|
+
def update!(**args)
|
1441
|
+
@cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
|
1442
|
+
@cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
|
1443
|
+
@cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
|
1444
|
+
end
|
1445
|
+
end
|
1446
|
+
|
1377
1447
|
# Time window specified for daily maintenance operations.
|
1378
1448
|
class DailyMaintenanceWindow
|
1379
1449
|
include Google::Apis::Core::Hashable
|
@@ -1507,6 +1577,47 @@ module Google
|
|
1507
1577
|
end
|
1508
1578
|
end
|
1509
1579
|
|
1580
|
+
# GcfsConfig contains configurations of Google Container File System (image
|
1581
|
+
# streaming).
|
1582
|
+
class GcfsConfig
|
1583
|
+
include Google::Apis::Core::Hashable
|
1584
|
+
|
1585
|
+
# Whether to use GCFS.
|
1586
|
+
# Corresponds to the JSON property `enabled`
|
1587
|
+
# @return [Boolean]
|
1588
|
+
attr_accessor :enabled
|
1589
|
+
alias_method :enabled?, :enabled
|
1590
|
+
|
1591
|
+
def initialize(**args)
|
1592
|
+
update!(**args)
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
# Update properties of this object
|
1596
|
+
def update!(**args)
|
1597
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1598
|
+
end
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
# Configuration for the GCP Filestore CSI driver.
|
1602
|
+
class GcpFilestoreCsiDriverConfig
|
1603
|
+
include Google::Apis::Core::Hashable
|
1604
|
+
|
1605
|
+
# Whether the GCP Filestore CSI driver is enabled for this cluster.
|
1606
|
+
# Corresponds to the JSON property `enabled`
|
1607
|
+
# @return [Boolean]
|
1608
|
+
attr_accessor :enabled
|
1609
|
+
alias_method :enabled?, :enabled
|
1610
|
+
|
1611
|
+
def initialize(**args)
|
1612
|
+
update!(**args)
|
1613
|
+
end
|
1614
|
+
|
1615
|
+
# Update properties of this object
|
1616
|
+
def update!(**args)
|
1617
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1618
|
+
end
|
1619
|
+
end
|
1620
|
+
|
1510
1621
|
# GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517
|
1511
1622
|
class GetJsonWebKeysResponse
|
1512
1623
|
include Google::Apis::Core::Hashable
|
@@ -2291,6 +2402,19 @@ module Google
|
|
2291
2402
|
end
|
2292
2403
|
end
|
2293
2404
|
|
2405
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
2406
|
+
class MeshCertificates
|
2407
|
+
include Google::Apis::Core::Hashable
|
2408
|
+
|
2409
|
+
def initialize(**args)
|
2410
|
+
update!(**args)
|
2411
|
+
end
|
2412
|
+
|
2413
|
+
# Update properties of this object
|
2414
|
+
def update!(**args)
|
2415
|
+
end
|
2416
|
+
end
|
2417
|
+
|
2294
2418
|
# Progress metric is (string, int|float|string) pair.
|
2295
2419
|
class Metric
|
2296
2420
|
include Google::Apis::Core::Hashable
|
@@ -2383,6 +2507,11 @@ module Google
|
|
2383
2507
|
# @return [Google::Apis::ContainerV1::DefaultSnatStatus]
|
2384
2508
|
attr_accessor :default_snat_status
|
2385
2509
|
|
2510
|
+
# DNSConfig contains the desired set of options for configuring clusterDNS.
|
2511
|
+
# Corresponds to the JSON property `dnsConfig`
|
2512
|
+
# @return [Google::Apis::ContainerV1::DnsConfig]
|
2513
|
+
attr_accessor :dns_config
|
2514
|
+
|
2386
2515
|
# Whether Intra-node visibility is enabled for this cluster. This makes same
|
2387
2516
|
# node pod to pod traffic visible for VPC network.
|
2388
2517
|
# Corresponds to the JSON property `enableIntraNodeVisibility`
|
@@ -2424,6 +2553,7 @@ module Google
|
|
2424
2553
|
def update!(**args)
|
2425
2554
|
@datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
|
2426
2555
|
@default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
|
2556
|
+
@dns_config = args[:dns_config] if args.key?(:dns_config)
|
2427
2557
|
@enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
|
2428
2558
|
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
2429
2559
|
@network = args[:network] if args.key?(:network)
|
@@ -2512,6 +2642,17 @@ module Google
|
|
2512
2642
|
# @return [String]
|
2513
2643
|
attr_accessor :disk_type
|
2514
2644
|
|
2645
|
+
# GcfsConfig contains configurations of Google Container File System (image
|
2646
|
+
# streaming).
|
2647
|
+
# Corresponds to the JSON property `gcfsConfig`
|
2648
|
+
# @return [Google::Apis::ContainerV1::GcfsConfig]
|
2649
|
+
attr_accessor :gcfs_config
|
2650
|
+
|
2651
|
+
# Configuration of gVNIC feature.
|
2652
|
+
# Corresponds to the JSON property `gvnic`
|
2653
|
+
# @return [Google::Apis::ContainerV1::VirtualNic]
|
2654
|
+
attr_accessor :gvnic
|
2655
|
+
|
2515
2656
|
# The image type to use for this node. Note that for a given image type, the
|
2516
2657
|
# latest version of it will be used.
|
2517
2658
|
# Corresponds to the JSON property `imageType`
|
@@ -2563,9 +2704,8 @@ module Google
|
|
2563
2704
|
# - "gci-ensure-gke-docker" - "gci-metrics-enabled" - "gci-update-strategy" - "
|
2564
2705
|
# instance-template" - "kube-env" - "startup-script" - "user-data" - "disable-
|
2565
2706
|
# address-manager" - "windows-startup-script-ps1" - "common-psm1" - "k8s-node-
|
2566
|
-
# setup-psm1" - "install-ssh-psm1" - "user-profile-psm1"
|
2567
|
-
#
|
2568
|
-
# form strings, and only have meaning as interpreted by the image running in the
|
2707
|
+
# setup-psm1" - "install-ssh-psm1" - "user-profile-psm1" Values are free-form
|
2708
|
+
# strings, and only have meaning as interpreted by the image running in the
|
2569
2709
|
# instance. The only restriction placed on them is that each value's size must
|
2570
2710
|
# be less than or equal to 32 KB. The total size of all keys and values must be
|
2571
2711
|
# less than 512 KB.
|
@@ -2666,6 +2806,8 @@ module Google
|
|
2666
2806
|
@boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
|
2667
2807
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
2668
2808
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
2809
|
+
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
2810
|
+
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
2669
2811
|
@image_type = args[:image_type] if args.key?(:image_type)
|
2670
2812
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
2671
2813
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -2687,6 +2829,26 @@ module Google
|
|
2687
2829
|
end
|
2688
2830
|
end
|
2689
2831
|
|
2832
|
+
# Subset of NodeConfig message that has defaults.
|
2833
|
+
class NodeConfigDefaults
|
2834
|
+
include Google::Apis::Core::Hashable
|
2835
|
+
|
2836
|
+
# GcfsConfig contains configurations of Google Container File System (image
|
2837
|
+
# streaming).
|
2838
|
+
# Corresponds to the JSON property `gcfsConfig`
|
2839
|
+
# @return [Google::Apis::ContainerV1::GcfsConfig]
|
2840
|
+
attr_accessor :gcfs_config
|
2841
|
+
|
2842
|
+
def initialize(**args)
|
2843
|
+
update!(**args)
|
2844
|
+
end
|
2845
|
+
|
2846
|
+
# Update properties of this object
|
2847
|
+
def update!(**args)
|
2848
|
+
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
2849
|
+
end
|
2850
|
+
end
|
2851
|
+
|
2690
2852
|
# Node kubelet configs.
|
2691
2853
|
class NodeKubeletConfig
|
2692
2854
|
include Google::Apis::Core::Hashable
|
@@ -2977,13 +3139,14 @@ module Google
|
|
2977
3139
|
attr_accessor :enabled
|
2978
3140
|
alias_method :enabled?, :enabled
|
2979
3141
|
|
2980
|
-
# Maximum number of nodes in the NodePool. Must be >=
|
2981
|
-
# to be enough quota to scale up the cluster.
|
3142
|
+
# Maximum number of nodes for one location in the NodePool. Must be >=
|
3143
|
+
# min_node_count. There has to be enough quota to scale up the cluster.
|
2982
3144
|
# Corresponds to the JSON property `maxNodeCount`
|
2983
3145
|
# @return [Fixnum]
|
2984
3146
|
attr_accessor :max_node_count
|
2985
3147
|
|
2986
|
-
# Minimum number of nodes in the NodePool. Must be >= 1 and <=
|
3148
|
+
# Minimum number of nodes for one location in the NodePool. Must be >= 1 and <=
|
3149
|
+
# max_node_count.
|
2987
3150
|
# Corresponds to the JSON property `minNodeCount`
|
2988
3151
|
# @return [Fixnum]
|
2989
3152
|
attr_accessor :min_node_count
|
@@ -3001,6 +3164,25 @@ module Google
|
|
3001
3164
|
end
|
3002
3165
|
end
|
3003
3166
|
|
3167
|
+
# Subset of Nodepool message that has defaults.
|
3168
|
+
class NodePoolDefaults
|
3169
|
+
include Google::Apis::Core::Hashable
|
3170
|
+
|
3171
|
+
# Subset of NodeConfig message that has defaults.
|
3172
|
+
# Corresponds to the JSON property `nodeConfigDefaults`
|
3173
|
+
# @return [Google::Apis::ContainerV1::NodeConfigDefaults]
|
3174
|
+
attr_accessor :node_config_defaults
|
3175
|
+
|
3176
|
+
def initialize(**args)
|
3177
|
+
update!(**args)
|
3178
|
+
end
|
3179
|
+
|
3180
|
+
# Update properties of this object
|
3181
|
+
def update!(**args)
|
3182
|
+
@node_config_defaults = args[:node_config_defaults] if args.key?(:node_config_defaults)
|
3183
|
+
end
|
3184
|
+
end
|
3185
|
+
|
3004
3186
|
# Kubernetes taint is comprised of three fields: key, value, and effect. Effect
|
3005
3187
|
# can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
|
3006
3188
|
# [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
|
@@ -4604,6 +4786,17 @@ module Google
|
|
4604
4786
|
# @return [String]
|
4605
4787
|
attr_accessor :cluster_id
|
4606
4788
|
|
4789
|
+
# GcfsConfig contains configurations of Google Container File System (image
|
4790
|
+
# streaming).
|
4791
|
+
# Corresponds to the JSON property `gcfsConfig`
|
4792
|
+
# @return [Google::Apis::ContainerV1::GcfsConfig]
|
4793
|
+
attr_accessor :gcfs_config
|
4794
|
+
|
4795
|
+
# Configuration of gVNIC feature.
|
4796
|
+
# Corresponds to the JSON property `gvnic`
|
4797
|
+
# @return [Google::Apis::ContainerV1::VirtualNic]
|
4798
|
+
attr_accessor :gvnic
|
4799
|
+
|
4607
4800
|
# Required. The desired image type for the node pool.
|
4608
4801
|
# Corresponds to the JSON property `imageType`
|
4609
4802
|
# @return [String]
|
@@ -4696,6 +4889,8 @@ module Google
|
|
4696
4889
|
# Update properties of this object
|
4697
4890
|
def update!(**args)
|
4698
4891
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
4892
|
+
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
4893
|
+
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
4699
4894
|
@image_type = args[:image_type] if args.key?(:image_type)
|
4700
4895
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
4701
4896
|
@linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
|
@@ -4945,6 +5140,26 @@ module Google
|
|
4945
5140
|
end
|
4946
5141
|
end
|
4947
5142
|
|
5143
|
+
# Configuration of gVNIC feature.
|
5144
|
+
class VirtualNic
|
5145
|
+
include Google::Apis::Core::Hashable
|
5146
|
+
|
5147
|
+
# Whether gVNIC features are enabled in the node pool.
|
5148
|
+
# Corresponds to the JSON property `enabled`
|
5149
|
+
# @return [Boolean]
|
5150
|
+
attr_accessor :enabled
|
5151
|
+
alias_method :enabled?, :enabled
|
5152
|
+
|
5153
|
+
def initialize(**args)
|
5154
|
+
update!(**args)
|
5155
|
+
end
|
5156
|
+
|
5157
|
+
# Update properties of this object
|
5158
|
+
def update!(**args)
|
5159
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
5160
|
+
end
|
5161
|
+
end
|
5162
|
+
|
4948
5163
|
# Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
|
4949
5164
|
class WorkloadIdentityConfig
|
4950
5165
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.19.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 = "20211008"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -148,6 +148,12 @@ module Google
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
149
149
|
end
|
150
150
|
|
151
|
+
class DnsConfig
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
151
157
|
class DailyMaintenanceWindow
|
152
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
159
|
|
@@ -184,6 +190,18 @@ module Google
|
|
184
190
|
include Google::Apis::Core::JsonObjectSupport
|
185
191
|
end
|
186
192
|
|
193
|
+
class GcfsConfig
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
199
|
+
class GcpFilestoreCsiDriverConfig
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
187
205
|
class GetJsonWebKeysResponse
|
188
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
207
|
|
@@ -322,6 +340,12 @@ module Google
|
|
322
340
|
include Google::Apis::Core::JsonObjectSupport
|
323
341
|
end
|
324
342
|
|
343
|
+
class MeshCertificates
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
325
349
|
class Metric
|
326
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
351
|
|
@@ -364,6 +388,12 @@ module Google
|
|
364
388
|
include Google::Apis::Core::JsonObjectSupport
|
365
389
|
end
|
366
390
|
|
391
|
+
class NodeConfigDefaults
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
367
397
|
class NodeKubeletConfig
|
368
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
399
|
|
@@ -394,6 +424,12 @@ module Google
|
|
394
424
|
include Google::Apis::Core::JsonObjectSupport
|
395
425
|
end
|
396
426
|
|
427
|
+
class NodePoolDefaults
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
397
433
|
class NodeTaint
|
398
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
435
|
|
@@ -652,6 +688,12 @@ module Google
|
|
652
688
|
include Google::Apis::Core::JsonObjectSupport
|
653
689
|
end
|
654
690
|
|
691
|
+
class VirtualNic
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
693
|
+
|
694
|
+
include Google::Apis::Core::JsonObjectSupport
|
695
|
+
end
|
696
|
+
|
655
697
|
class WorkloadIdentityConfig
|
656
698
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
699
|
|
@@ -669,6 +711,7 @@ module Google
|
|
669
711
|
class Representation < Google::Apis::Core::JsonRepresentation
|
670
712
|
property :accelerator_count, :numeric_string => true, as: 'acceleratorCount'
|
671
713
|
property :accelerator_type, as: 'acceleratorType'
|
714
|
+
property :gpu_partition_size, as: 'gpuPartitionSize'
|
672
715
|
end
|
673
716
|
end
|
674
717
|
|
@@ -683,6 +726,8 @@ module Google
|
|
683
726
|
|
684
727
|
property :gce_persistent_disk_csi_driver_config, as: 'gcePersistentDiskCsiDriverConfig', class: Google::Apis::ContainerV1::GcePersistentDiskCsiDriverConfig, decorator: Google::Apis::ContainerV1::GcePersistentDiskCsiDriverConfig::Representation
|
685
728
|
|
729
|
+
property :gcp_filestore_csi_driver_config, as: 'gcpFilestoreCsiDriverConfig', class: Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig, decorator: Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig::Representation
|
730
|
+
|
686
731
|
property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1::HorizontalPodAutoscaling::Representation
|
687
732
|
|
688
733
|
property :http_load_balancing, as: 'httpLoadBalancing', class: Google::Apis::ContainerV1::HttpLoadBalancing, decorator: Google::Apis::ContainerV1::HttpLoadBalancing::Representation
|
@@ -834,6 +879,8 @@ module Google
|
|
834
879
|
|
835
880
|
property :master_authorized_networks_config, as: 'masterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
836
881
|
|
882
|
+
property :mesh_certificates, as: 'meshCertificates', class: Google::Apis::ContainerV1::MeshCertificates, decorator: Google::Apis::ContainerV1::MeshCertificates::Representation
|
883
|
+
|
837
884
|
property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::ContainerV1::MonitoringConfig, decorator: Google::Apis::ContainerV1::MonitoringConfig::Representation
|
838
885
|
|
839
886
|
property :monitoring_service, as: 'monitoringService'
|
@@ -846,6 +893,8 @@ module Google
|
|
846
893
|
property :node_config, as: 'nodeConfig', class: Google::Apis::ContainerV1::NodeConfig, decorator: Google::Apis::ContainerV1::NodeConfig::Representation
|
847
894
|
|
848
895
|
property :node_ipv4_cidr_size, as: 'nodeIpv4CidrSize'
|
896
|
+
property :node_pool_defaults, as: 'nodePoolDefaults', class: Google::Apis::ContainerV1::NodePoolDefaults, decorator: Google::Apis::ContainerV1::NodePoolDefaults::Representation
|
897
|
+
|
849
898
|
collection :node_pools, as: 'nodePools', class: Google::Apis::ContainerV1::NodePool, decorator: Google::Apis::ContainerV1::NodePool::Representation
|
850
899
|
|
851
900
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::ContainerV1::NotificationConfig, decorator: Google::Apis::ContainerV1::NotificationConfig::Representation
|
@@ -893,8 +942,6 @@ module Google
|
|
893
942
|
|
894
943
|
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1::AuthenticatorGroupsConfig::Representation
|
895
944
|
|
896
|
-
property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1::Autopilot, decorator: Google::Apis::ContainerV1::Autopilot::Representation
|
897
|
-
|
898
945
|
property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1::BinaryAuthorization, decorator: Google::Apis::ContainerV1::BinaryAuthorization::Representation
|
899
946
|
|
900
947
|
property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1::ClusterAutoscaling::Representation
|
@@ -904,6 +951,10 @@ module Google
|
|
904
951
|
property :desired_datapath_provider, as: 'desiredDatapathProvider'
|
905
952
|
property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
906
953
|
|
954
|
+
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::Representation
|
955
|
+
|
956
|
+
property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
957
|
+
|
907
958
|
property :desired_image_type, as: 'desiredImageType'
|
908
959
|
property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1::IntraNodeVisibilityConfig::Representation
|
909
960
|
|
@@ -916,6 +967,8 @@ module Google
|
|
916
967
|
property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
917
968
|
|
918
969
|
property :desired_master_version, as: 'desiredMasterVersion'
|
970
|
+
property :desired_mesh_certificates, as: 'desiredMeshCertificates', class: Google::Apis::ContainerV1::MeshCertificates, decorator: Google::Apis::ContainerV1::MeshCertificates::Representation
|
971
|
+
|
919
972
|
property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1::MonitoringConfig, decorator: Google::Apis::ContainerV1::MonitoringConfig::Representation
|
920
973
|
|
921
974
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
@@ -995,6 +1048,15 @@ module Google
|
|
995
1048
|
end
|
996
1049
|
end
|
997
1050
|
|
1051
|
+
class DnsConfig
|
1052
|
+
# @private
|
1053
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1054
|
+
property :cluster_dns, as: 'clusterDns'
|
1055
|
+
property :cluster_dns_domain, as: 'clusterDnsDomain'
|
1056
|
+
property :cluster_dns_scope, as: 'clusterDnsScope'
|
1057
|
+
end
|
1058
|
+
end
|
1059
|
+
|
998
1060
|
class DailyMaintenanceWindow
|
999
1061
|
# @private
|
1000
1062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1038,6 +1100,20 @@ module Google
|
|
1038
1100
|
end
|
1039
1101
|
end
|
1040
1102
|
|
1103
|
+
class GcfsConfig
|
1104
|
+
# @private
|
1105
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1106
|
+
property :enabled, as: 'enabled'
|
1107
|
+
end
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class GcpFilestoreCsiDriverConfig
|
1111
|
+
# @private
|
1112
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1113
|
+
property :enabled, as: 'enabled'
|
1114
|
+
end
|
1115
|
+
end
|
1116
|
+
|
1041
1117
|
class GetJsonWebKeysResponse
|
1042
1118
|
# @private
|
1043
1119
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1255,6 +1331,12 @@ module Google
|
|
1255
1331
|
end
|
1256
1332
|
end
|
1257
1333
|
|
1334
|
+
class MeshCertificates
|
1335
|
+
# @private
|
1336
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1337
|
+
end
|
1338
|
+
end
|
1339
|
+
|
1258
1340
|
class Metric
|
1259
1341
|
# @private
|
1260
1342
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1286,6 +1368,8 @@ module Google
|
|
1286
1368
|
property :datapath_provider, as: 'datapathProvider'
|
1287
1369
|
property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
1288
1370
|
|
1371
|
+
property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::Representation
|
1372
|
+
|
1289
1373
|
property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
|
1290
1374
|
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
1291
1375
|
property :network, as: 'network'
|
@@ -1317,6 +1401,10 @@ module Google
|
|
1317
1401
|
property :boot_disk_kms_key, as: 'bootDiskKmsKey'
|
1318
1402
|
property :disk_size_gb, as: 'diskSizeGb'
|
1319
1403
|
property :disk_type, as: 'diskType'
|
1404
|
+
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
1405
|
+
|
1406
|
+
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
1407
|
+
|
1320
1408
|
property :image_type, as: 'imageType'
|
1321
1409
|
property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
1322
1410
|
|
@@ -1345,6 +1433,14 @@ module Google
|
|
1345
1433
|
end
|
1346
1434
|
end
|
1347
1435
|
|
1436
|
+
class NodeConfigDefaults
|
1437
|
+
# @private
|
1438
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1439
|
+
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
1440
|
+
|
1441
|
+
end
|
1442
|
+
end
|
1443
|
+
|
1348
1444
|
class NodeKubeletConfig
|
1349
1445
|
# @private
|
1350
1446
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1412,6 +1508,14 @@ module Google
|
|
1412
1508
|
end
|
1413
1509
|
end
|
1414
1510
|
|
1511
|
+
class NodePoolDefaults
|
1512
|
+
# @private
|
1513
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1514
|
+
property :node_config_defaults, as: 'nodeConfigDefaults', class: Google::Apis::ContainerV1::NodeConfigDefaults, decorator: Google::Apis::ContainerV1::NodeConfigDefaults::Representation
|
1515
|
+
|
1516
|
+
end
|
1517
|
+
end
|
1518
|
+
|
1415
1519
|
class NodeTaint
|
1416
1520
|
# @private
|
1417
1521
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1802,6 +1906,10 @@ module Google
|
|
1802
1906
|
# @private
|
1803
1907
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1804
1908
|
property :cluster_id, as: 'clusterId'
|
1909
|
+
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
1910
|
+
|
1911
|
+
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
1912
|
+
|
1805
1913
|
property :image_type, as: 'imageType'
|
1806
1914
|
property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
1807
1915
|
|
@@ -1879,6 +1987,13 @@ module Google
|
|
1879
1987
|
end
|
1880
1988
|
end
|
1881
1989
|
|
1990
|
+
class VirtualNic
|
1991
|
+
# @private
|
1992
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1993
|
+
property :enabled, as: 'enabled'
|
1994
|
+
end
|
1995
|
+
end
|
1996
|
+
|
1882
1997
|
class WorkloadIdentityConfig
|
1883
1998
|
# @private
|
1884
1999
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1'
|
32
32
|
|
33
|
-
# See, edit, configure, and delete your Google Cloud
|
33
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
end
|
36
36
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.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-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -57,9 +57,9 @@ licenses:
|
|
57
57
|
- Apache-2.0
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
|
-
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
60
|
+
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.19.0
|
62
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|