google-apis-container_v1beta1 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: adde408d57f43f442b3eac9ad7a57c295dc22059bfa553eb81ffbc2e5766608c
4
- data.tar.gz: c70f806064994d643b9c115b950f935660aad1c7a26bd7bd27659cca76d7c4dd
3
+ metadata.gz: 2a619e41219e5d369424496fc898879f0ca0fdbf6500f1bd015b95eb8f3525da
4
+ data.tar.gz: ce8d64f24f2a50aae0c6ecb4c75038c8e013e23654f7a02ccbf0a6332a75f252
5
5
  SHA512:
6
- metadata.gz: 85b7b979c1c6f3879b004c53cc25fd60bc5fcfe66c6ce5fc8497fb0a57e82047865bb4bcd6426d122b31bc50eb05fcebc4c27d365313bd20972c1f9f28365539
7
- data.tar.gz: 7e8e8f0b8464feb3561a2ab2db6af78336301376bca12d5e3f3e7f816de86764eba1b623ea087e2baf288cd7a4bd19d80bcbc761157bfdae971c0cfaa8f9c12f
6
+ metadata.gz: 4d40d0364709ff53c7d0d56a3791bdc7545b4b02995aa95b2adada796db2ebc16f94295bb24dde39f9b1e020965e5a6a846e9807ed89e82ab3e8fffd52e0c7d6
7
+ data.tar.gz: d241f6ac9eacae4fd39d3a11c000b479f0c0168e4ff4b4f195393ece5bf702198cc1c2def1b68b091ceea9267141aedd082f7894621b69c6060f7d9cdd88f356
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.7.0 (2021-05-13)
4
+
5
+ * Regenerated from discovery document revision 20210429
6
+
3
7
  ### v0.6.0 (2021-03-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20210312
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta1'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
33
+ # See, edit, configure, and delete your Google Cloud Platform data
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
@@ -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
 
@@ -615,6 +623,11 @@ module Google
615
623
  # @return [String]
616
624
  attr_accessor :expire_time
617
625
 
626
+ # Output only. Unique id for the cluster.
627
+ # Corresponds to the JSON property `id`
628
+ # @return [String]
629
+ attr_accessor :id
630
+
618
631
  # The initial Kubernetes version for this cluster. Valid versions are those
619
632
  # found in validMasterVersions returned by getServerConfig. The version can be
620
633
  # upgraded over time; such upgrades are reflected in currentMasterVersion and
@@ -878,6 +891,11 @@ module Google
878
891
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
879
892
  attr_accessor :vertical_pod_autoscaling
880
893
 
894
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
895
+ # Corresponds to the JSON property `workloadCertificates`
896
+ # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
897
+ attr_accessor :workload_certificates
898
+
881
899
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
882
900
  # Corresponds to the JSON property `workloadIdentityConfig`
883
901
  # @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
@@ -916,6 +934,7 @@ module Google
916
934
  @enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
917
935
  @endpoint = args[:endpoint] if args.key?(:endpoint)
918
936
  @expire_time = args[:expire_time] if args.key?(:expire_time)
937
+ @id = args[:id] if args.key?(:id)
919
938
  @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
920
939
  @initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
921
940
  @instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
@@ -954,6 +973,7 @@ module Google
954
973
  @tpu_config = args[:tpu_config] if args.key?(:tpu_config)
955
974
  @tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
956
975
  @vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
976
+ @workload_certificates = args[:workload_certificates] if args.key?(:workload_certificates)
957
977
  @workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
958
978
  @zone = args[:zone] if args.key?(:zone)
959
979
  end
@@ -1038,6 +1058,11 @@ module Google
1038
1058
  # @return [Google::Apis::ContainerV1beta1::AddonsConfig]
1039
1059
  attr_accessor :desired_addons_config
1040
1060
 
1061
+ # Autopilot is the configuration for Autopilot settings on the cluster.
1062
+ # Corresponds to the JSON property `desiredAutopilot`
1063
+ # @return [Google::Apis::ContainerV1beta1::Autopilot]
1064
+ attr_accessor :desired_autopilot
1065
+
1041
1066
  # Configuration for Binary Authorization.
1042
1067
  # Corresponds to the JSON property `desiredBinaryAuthorization`
1043
1068
  # @return [Google::Apis::ContainerV1beta1::BinaryAuthorization]
@@ -1071,6 +1096,11 @@ module Google
1071
1096
  # @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
1072
1097
  attr_accessor :desired_default_snat_status
1073
1098
 
1099
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
1100
+ # Corresponds to the JSON property `desiredDnsConfig`
1101
+ # @return [Google::Apis::ContainerV1beta1::DnsConfig]
1102
+ attr_accessor :desired_dns_config
1103
+
1074
1104
  # The desired image type for the node pool. NOTE: Set the "desired_node_pool"
1075
1105
  # field as well.
1076
1106
  # Corresponds to the JSON property `desiredImageType`
@@ -1219,6 +1249,11 @@ module Google
1219
1249
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
1220
1250
  attr_accessor :desired_vertical_pod_autoscaling
1221
1251
 
1252
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
1253
+ # Corresponds to the JSON property `desiredWorkloadCertificates`
1254
+ # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
1255
+ attr_accessor :desired_workload_certificates
1256
+
1222
1257
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
1223
1258
  # Corresponds to the JSON property `desiredWorkloadIdentityConfig`
1224
1259
  # @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
@@ -1231,12 +1266,14 @@ module Google
1231
1266
  # Update properties of this object
1232
1267
  def update!(**args)
1233
1268
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
1269
+ @desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
1234
1270
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1235
1271
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1236
1272
  @desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
1237
1273
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
1238
1274
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
1239
1275
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1276
+ @desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
1240
1277
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1241
1278
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
1242
1279
  @desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
@@ -1258,6 +1295,7 @@ module Google
1258
1295
  @desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
1259
1296
  @desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
1260
1297
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
1298
+ @desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
1261
1299
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
1262
1300
  end
1263
1301
  end
@@ -1463,6 +1501,37 @@ module Google
1463
1501
  end
1464
1502
  end
1465
1503
 
1504
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
1505
+ class DnsConfig
1506
+ include Google::Apis::Core::Hashable
1507
+
1508
+ # cluster_dns indicates which in-cluster DNS provider should be used.
1509
+ # Corresponds to the JSON property `clusterDns`
1510
+ # @return [String]
1511
+ attr_accessor :cluster_dns
1512
+
1513
+ # cluster_dns_domain is the suffix used for all cluster service records.
1514
+ # Corresponds to the JSON property `clusterDnsDomain`
1515
+ # @return [String]
1516
+ attr_accessor :cluster_dns_domain
1517
+
1518
+ # cluster_dns_scope indicates the scope of access to cluster DNS records.
1519
+ # Corresponds to the JSON property `clusterDnsScope`
1520
+ # @return [String]
1521
+ attr_accessor :cluster_dns_scope
1522
+
1523
+ def initialize(**args)
1524
+ update!(**args)
1525
+ end
1526
+
1527
+ # Update properties of this object
1528
+ def update!(**args)
1529
+ @cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
1530
+ @cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
1531
+ @cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
1532
+ end
1533
+ end
1534
+
1466
1535
  # Time window specified for daily maintenance operations.
1467
1536
  class DailyMaintenanceWindow
1468
1537
  include Google::Apis::Core::Hashable
@@ -2552,6 +2621,11 @@ module Google
2552
2621
  # @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
2553
2622
  attr_accessor :default_snat_status
2554
2623
 
2624
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
2625
+ # Corresponds to the JSON property `dnsConfig`
2626
+ # @return [Google::Apis::ContainerV1beta1::DnsConfig]
2627
+ attr_accessor :dns_config
2628
+
2555
2629
  # Whether Intra-node visibility is enabled for this cluster. This makes same
2556
2630
  # node pod to pod traffic visible for VPC network.
2557
2631
  # Corresponds to the JSON property `enableIntraNodeVisibility`
@@ -2593,6 +2667,7 @@ module Google
2593
2667
  def update!(**args)
2594
2668
  @datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
2595
2669
  @default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
2670
+ @dns_config = args[:dns_config] if args.key?(:dns_config)
2596
2671
  @enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
2597
2672
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
2598
2673
  @network = args[:network] if args.key?(:network)
@@ -2651,7 +2726,7 @@ module Google
2651
2726
  end
2652
2727
 
2653
2728
  # Collection of Compute Engine network tags that can be applied to a node's
2654
- # underyling VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
2729
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
2655
2730
  # docs/reference/rest/v1/NodeConfig)).
2656
2731
  class NetworkTags
2657
2732
  include Google::Apis::Core::Hashable
@@ -4961,7 +5036,7 @@ module Google
4961
5036
  attr_accessor :project_id
4962
5037
 
4963
5038
  # Collection of Compute Engine network tags that can be applied to a node's
4964
- # underyling VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
5039
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
4965
5040
  # docs/reference/rest/v1/NodeConfig)).
4966
5041
  # Corresponds to the JSON property `tags`
4967
5042
  # @return [Google::Apis::ContainerV1beta1::NetworkTags]
@@ -5041,8 +5116,8 @@ module Google
5041
5116
  # @return [Google::Apis::ContainerV1beta1::ReleaseChannel]
5042
5117
  attr_accessor :release_channel
5043
5118
 
5044
- # Optional. Optional relative path to the resource. For example, the relative
5045
- # path of the node pool.
5119
+ # Optional relative path to the resource. For example, the relative path of the
5120
+ # node pool.
5046
5121
  # Corresponds to the JSON property `resource`
5047
5122
  # @return [String]
5048
5123
  attr_accessor :resource
@@ -5263,6 +5338,30 @@ module Google
5263
5338
  end
5264
5339
  end
5265
5340
 
5341
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
5342
+ class WorkloadCertificates
5343
+ include Google::Apis::Core::Hashable
5344
+
5345
+ # enable_certificates controls issuance of workload mTLS certificates. If set,
5346
+ # the GKE Workload Identity Certificates controller and node agent will be
5347
+ # deployed in the cluster, which can then be configured by creating a
5348
+ # WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
5349
+ # workload_pool must be non-empty).
5350
+ # Corresponds to the JSON property `enableCertificates`
5351
+ # @return [Boolean]
5352
+ attr_accessor :enable_certificates
5353
+ alias_method :enable_certificates?, :enable_certificates
5354
+
5355
+ def initialize(**args)
5356
+ update!(**args)
5357
+ end
5358
+
5359
+ # Update properties of this object
5360
+ def update!(**args)
5361
+ @enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
5362
+ end
5363
+ end
5364
+
5266
5365
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
5267
5366
  class WorkloadIdentityConfig
5268
5367
  include Google::Apis::Core::Hashable
@@ -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.6.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210312"
25
+ REVISION = "20210429"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,12 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class DnsConfig
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
163
169
  class DailyMaintenanceWindow
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
@@ -706,6 +712,12 @@ module Google
706
712
  include Google::Apis::Core::JsonObjectSupport
707
713
  end
708
714
 
715
+ class WorkloadCertificates
716
+ class Representation < Google::Apis::Core::JsonRepresentation; end
717
+
718
+ include Google::Apis::Core::JsonObjectSupport
719
+ end
720
+
709
721
  class WorkloadIdentityConfig
710
722
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
723
 
@@ -723,6 +735,7 @@ module Google
723
735
  class Representation < Google::Apis::Core::JsonRepresentation
724
736
  property :accelerator_count, :numeric_string => true, as: 'acceleratorCount'
725
737
  property :accelerator_type, as: 'acceleratorType'
738
+ property :gpu_partition_size, as: 'gpuPartitionSize'
726
739
  end
727
740
  end
728
741
 
@@ -881,6 +894,7 @@ module Google
881
894
  property :enable_tpu, as: 'enableTpu'
882
895
  property :endpoint, as: 'endpoint'
883
896
  property :expire_time, as: 'expireTime'
897
+ property :id, as: 'id'
884
898
  property :initial_cluster_version, as: 'initialClusterVersion'
885
899
  property :initial_node_count, as: 'initialNodeCount'
886
900
  collection :instance_group_urls, as: 'instanceGroupUrls'
@@ -937,6 +951,8 @@ module Google
937
951
  property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
938
952
  property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
939
953
 
954
+ property :workload_certificates, as: 'workloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
955
+
940
956
  property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
941
957
 
942
958
  property :zone, as: 'zone'
@@ -968,6 +984,8 @@ module Google
968
984
  class Representation < Google::Apis::Core::JsonRepresentation
969
985
  property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
970
986
 
987
+ property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
988
+
971
989
  property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
972
990
 
973
991
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
@@ -979,6 +997,8 @@ module Google
979
997
  property :desired_datapath_provider, as: 'desiredDatapathProvider'
980
998
  property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
981
999
 
1000
+ property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1001
+
982
1002
  property :desired_image_type, as: 'desiredImageType'
983
1003
  property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
984
1004
 
@@ -1013,6 +1033,8 @@ module Google
1013
1033
 
1014
1034
  property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
1015
1035
 
1036
+ property :desired_workload_certificates, as: 'desiredWorkloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
1037
+
1016
1038
  property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
1017
1039
 
1018
1040
  end
@@ -1072,6 +1094,15 @@ module Google
1072
1094
  end
1073
1095
  end
1074
1096
 
1097
+ class DnsConfig
1098
+ # @private
1099
+ class Representation < Google::Apis::Core::JsonRepresentation
1100
+ property :cluster_dns, as: 'clusterDns'
1101
+ property :cluster_dns_domain, as: 'clusterDnsDomain'
1102
+ property :cluster_dns_scope, as: 'clusterDnsScope'
1103
+ end
1104
+ end
1105
+
1075
1106
  class DailyMaintenanceWindow
1076
1107
  # @private
1077
1108
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1380,6 +1411,8 @@ module Google
1380
1411
  property :datapath_provider, as: 'datapathProvider'
1381
1412
  property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
1382
1413
 
1414
+ property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1415
+
1383
1416
  property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
1384
1417
  property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
1385
1418
  property :network, as: 'network'
@@ -2022,6 +2055,13 @@ module Google
2022
2055
  end
2023
2056
  end
2024
2057
 
2058
+ class WorkloadCertificates
2059
+ # @private
2060
+ class Representation < Google::Apis::Core::JsonRepresentation
2061
+ property :enable_certificates, as: 'enableCertificates'
2062
+ end
2063
+ end
2064
+
2025
2065
  class WorkloadIdentityConfig
2026
2066
  # @private
2027
2067
  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.6.0
4
+ version: 0.7.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-03-29 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.6.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Kubernetes Engine API V1beta1