google-apis-container_v1 0.58.0 → 0.60.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21f318fead636effeb5b2cbfc7b4161c2855a268ef435deb272bc44e2c12c61a
|
4
|
+
data.tar.gz: 35ae0d1c75af1e1c706c22b700baf6a98b91c6f74c8821b5c3a2cf77d0213bc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c2859ced714a58992cb385cd8418b389136709f9e7ec00c9f8dff9d49a20a6072630feb9499ad62604004694bdeccbbd23d4ed25392258a25d3077ff10b92bf
|
7
|
+
data.tar.gz: e3a3ee87381cfcfffd0f9c005ba67b4715ee4a1fcfd90a074b522c801b3595a377098081c65a084f2a66f30dd2bb4bac53d89c7a5a5387139747598e44ee5d41
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.60.0 (2023-11-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231024
|
6
|
+
|
7
|
+
### v0.59.0 (2023-10-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231012
|
10
|
+
|
3
11
|
### v0.58.0 (2023-10-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230919
|
@@ -964,6 +964,11 @@ module Google
|
|
964
964
|
# @return [String]
|
965
965
|
attr_accessor :endpoint
|
966
966
|
|
967
|
+
# EnterpriseConfig is the cluster enterprise configuration.
|
968
|
+
# Corresponds to the JSON property `enterpriseConfig`
|
969
|
+
# @return [Google::Apis::ContainerV1::EnterpriseConfig]
|
970
|
+
attr_accessor :enterprise_config
|
971
|
+
|
967
972
|
# This checksum is computed by the server based on the value of cluster fields,
|
968
973
|
# and may be sent on update requests to ensure the client has an up-to-date
|
969
974
|
# value before proceeding.
|
@@ -1301,6 +1306,7 @@ module Google
|
|
1301
1306
|
@enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha)
|
1302
1307
|
@enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
|
1303
1308
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
1309
|
+
@enterprise_config = args[:enterprise_config] if args.key?(:enterprise_config)
|
1304
1310
|
@etag = args[:etag] if args.key?(:etag)
|
1305
1311
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1306
1312
|
@fleet = args[:fleet] if args.key?(:fleet)
|
@@ -1618,6 +1624,15 @@ module Google
|
|
1618
1624
|
# @return [Google::Apis::ContainerV1::NetworkTags]
|
1619
1625
|
attr_accessor :desired_node_pool_auto_config_network_tags
|
1620
1626
|
|
1627
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
1628
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
1629
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
1630
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
1631
|
+
# specified. Existing tags will be replaced with new values.
|
1632
|
+
# Corresponds to the JSON property `desiredNodePoolAutoConfigResourceManagerTags`
|
1633
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
1634
|
+
attr_accessor :desired_node_pool_auto_config_resource_manager_tags
|
1635
|
+
|
1621
1636
|
# NodePoolAutoscaling contains information required by cluster autoscaler to
|
1622
1637
|
# adjust the size of the node pool to the current cluster usage.
|
1623
1638
|
# Corresponds to the JSON property `desiredNodePoolAutoscaling`
|
@@ -1772,6 +1787,7 @@ module Google
|
|
1772
1787
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
1773
1788
|
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
1774
1789
|
@desired_node_pool_auto_config_network_tags = args[:desired_node_pool_auto_config_network_tags] if args.key?(:desired_node_pool_auto_config_network_tags)
|
1790
|
+
@desired_node_pool_auto_config_resource_manager_tags = args[:desired_node_pool_auto_config_resource_manager_tags] if args.key?(:desired_node_pool_auto_config_resource_manager_tags)
|
1775
1791
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
1776
1792
|
@desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
|
1777
1793
|
@desired_node_pool_logging_config = args[:desired_node_pool_logging_config] if args.key?(:desired_node_pool_logging_config)
|
@@ -2172,6 +2188,26 @@ module Google
|
|
2172
2188
|
end
|
2173
2189
|
end
|
2174
2190
|
|
2191
|
+
# EnterpriseConfig is the cluster enterprise configuration.
|
2192
|
+
class EnterpriseConfig
|
2193
|
+
include Google::Apis::Core::Hashable
|
2194
|
+
|
2195
|
+
# Output only. [Output only] cluster_tier specifies the premium tier of the
|
2196
|
+
# cluster.
|
2197
|
+
# Corresponds to the JSON property `clusterTier`
|
2198
|
+
# @return [String]
|
2199
|
+
attr_accessor :cluster_tier
|
2200
|
+
|
2201
|
+
def initialize(**args)
|
2202
|
+
update!(**args)
|
2203
|
+
end
|
2204
|
+
|
2205
|
+
# Update properties of this object
|
2206
|
+
def update!(**args)
|
2207
|
+
@cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
|
2208
|
+
end
|
2209
|
+
end
|
2210
|
+
|
2175
2211
|
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
2176
2212
|
# storage using Local SSDs.
|
2177
2213
|
class EphemeralStorageLocalSsdConfig
|
@@ -3947,6 +3983,15 @@ module Google
|
|
3947
3983
|
# @return [Hash<String,String>]
|
3948
3984
|
attr_accessor :resource_labels
|
3949
3985
|
|
3986
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
3987
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
3988
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
3989
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
3990
|
+
# specified. Existing tags will be replaced with new values.
|
3991
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
3992
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
3993
|
+
attr_accessor :resource_manager_tags
|
3994
|
+
|
3950
3995
|
# SandboxConfig contains configurations of the sandbox to use for the node.
|
3951
3996
|
# Corresponds to the JSON property `sandboxConfig`
|
3952
3997
|
# @return [Google::Apis::ContainerV1::SandboxConfig]
|
@@ -4036,6 +4081,7 @@ module Google
|
|
4036
4081
|
@preemptible = args[:preemptible] if args.key?(:preemptible)
|
4037
4082
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
4038
4083
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
4084
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
4039
4085
|
@sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
|
4040
4086
|
@service_account = args[:service_account] if args.key?(:service_account)
|
4041
4087
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
@@ -4486,6 +4532,15 @@ module Google
|
|
4486
4532
|
# @return [Google::Apis::ContainerV1::NetworkTags]
|
4487
4533
|
attr_accessor :network_tags
|
4488
4534
|
|
4535
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
4536
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
4537
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
4538
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
4539
|
+
# specified. Existing tags will be replaced with new values.
|
4540
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
4541
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
4542
|
+
attr_accessor :resource_manager_tags
|
4543
|
+
|
4489
4544
|
def initialize(**args)
|
4490
4545
|
update!(**args)
|
4491
4546
|
end
|
@@ -4493,6 +4548,7 @@ module Google
|
|
4493
4548
|
# Update properties of this object
|
4494
4549
|
def update!(**args)
|
4495
4550
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
4551
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
4496
4552
|
end
|
4497
4553
|
end
|
4498
4554
|
|
@@ -5250,6 +5306,31 @@ module Google
|
|
5250
5306
|
end
|
5251
5307
|
end
|
5252
5308
|
|
5309
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
5310
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
5311
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
5312
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
5313
|
+
# specified. Existing tags will be replaced with new values.
|
5314
|
+
class ResourceManagerTags
|
5315
|
+
include Google::Apis::Core::Hashable
|
5316
|
+
|
5317
|
+
# TagKeyValue must be in one of the following formats ([KEY]=[VALUE]) 1. `
|
5318
|
+
# tagKeys/`tag_key_id`=tagValues/`tag_value_id`` 2. ``org_id`/`tag_key_name`=`
|
5319
|
+
# tag_value_name`` 3. ``project_id`/`tag_key_name`=`tag_value_name``
|
5320
|
+
# Corresponds to the JSON property `tags`
|
5321
|
+
# @return [Hash<String,String>]
|
5322
|
+
attr_accessor :tags
|
5323
|
+
|
5324
|
+
def initialize(**args)
|
5325
|
+
update!(**args)
|
5326
|
+
end
|
5327
|
+
|
5328
|
+
# Update properties of this object
|
5329
|
+
def update!(**args)
|
5330
|
+
@tags = args[:tags] if args.key?(:tags)
|
5331
|
+
end
|
5332
|
+
end
|
5333
|
+
|
5253
5334
|
# Configuration for exporting cluster resource usages.
|
5254
5335
|
class ResourceUsageExportConfig
|
5255
5336
|
include Google::Apis::Core::Hashable
|
@@ -6716,6 +6797,15 @@ module Google
|
|
6716
6797
|
# @return [Google::Apis::ContainerV1::ResourceLabels]
|
6717
6798
|
attr_accessor :resource_labels
|
6718
6799
|
|
6800
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
6801
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
6802
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
6803
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
6804
|
+
# specified. Existing tags will be replaced with new values.
|
6805
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
6806
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
6807
|
+
attr_accessor :resource_manager_tags
|
6808
|
+
|
6719
6809
|
# Collection of Compute Engine network tags that can be applied to a node's
|
6720
6810
|
# underlying VM instance.
|
6721
6811
|
# Corresponds to the JSON property `tags`
|
@@ -6810,6 +6900,7 @@ module Google
|
|
6810
6900
|
@node_version = args[:node_version] if args.key?(:node_version)
|
6811
6901
|
@project_id = args[:project_id] if args.key?(:project_id)
|
6812
6902
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
6903
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
6813
6904
|
@tags = args[:tags] if args.key?(:tags)
|
6814
6905
|
@taints = args[:taints] if args.key?(:taints)
|
6815
6906
|
@upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
|
@@ -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.60.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231024"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -262,6 +262,12 @@ module Google
|
|
262
262
|
include Google::Apis::Core::JsonObjectSupport
|
263
263
|
end
|
264
264
|
|
265
|
+
class EnterpriseConfig
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
265
271
|
class EphemeralStorageLocalSsdConfig
|
266
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
273
|
|
@@ -742,6 +748,12 @@ module Google
|
|
742
748
|
include Google::Apis::Core::JsonObjectSupport
|
743
749
|
end
|
744
750
|
|
751
|
+
class ResourceManagerTags
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
|
+
|
754
|
+
include Google::Apis::Core::JsonObjectSupport
|
755
|
+
end
|
756
|
+
|
745
757
|
class ResourceUsageExportConfig
|
746
758
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
759
|
|
@@ -1253,6 +1265,8 @@ module Google
|
|
1253
1265
|
property :enable_kubernetes_alpha, as: 'enableKubernetesAlpha'
|
1254
1266
|
property :enable_tpu, as: 'enableTpu'
|
1255
1267
|
property :endpoint, as: 'endpoint'
|
1268
|
+
property :enterprise_config, as: 'enterpriseConfig', class: Google::Apis::ContainerV1::EnterpriseConfig, decorator: Google::Apis::ContainerV1::EnterpriseConfig::Representation
|
1269
|
+
|
1256
1270
|
property :etag, as: 'etag'
|
1257
1271
|
property :expire_time, as: 'expireTime'
|
1258
1272
|
property :fleet, as: 'fleet', class: Google::Apis::ContainerV1::Fleet, decorator: Google::Apis::ContainerV1::Fleet::Representation
|
@@ -1405,6 +1419,8 @@ module Google
|
|
1405
1419
|
|
1406
1420
|
property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
1407
1421
|
|
1422
|
+
property :desired_node_pool_auto_config_resource_manager_tags, as: 'desiredNodePoolAutoConfigResourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
1423
|
+
|
1408
1424
|
property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1::NodePoolAutoscaling::Representation
|
1409
1425
|
|
1410
1426
|
property :desired_node_pool_id, as: 'desiredNodePoolId'
|
@@ -1553,6 +1569,13 @@ module Google
|
|
1553
1569
|
end
|
1554
1570
|
end
|
1555
1571
|
|
1572
|
+
class EnterpriseConfig
|
1573
|
+
# @private
|
1574
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1575
|
+
property :cluster_tier, as: 'clusterTier'
|
1576
|
+
end
|
1577
|
+
end
|
1578
|
+
|
1556
1579
|
class EphemeralStorageLocalSsdConfig
|
1557
1580
|
# @private
|
1558
1581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2048,6 +2071,8 @@ module Google
|
|
2048
2071
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ContainerV1::ReservationAffinity, decorator: Google::Apis::ContainerV1::ReservationAffinity::Representation
|
2049
2072
|
|
2050
2073
|
hash :resource_labels, as: 'resourceLabels'
|
2074
|
+
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
2075
|
+
|
2051
2076
|
property :sandbox_config, as: 'sandboxConfig', class: Google::Apis::ContainerV1::SandboxConfig, decorator: Google::Apis::ContainerV1::SandboxConfig::Representation
|
2052
2077
|
|
2053
2078
|
property :service_account, as: 'serviceAccount'
|
@@ -2164,6 +2189,8 @@ module Google
|
|
2164
2189
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2165
2190
|
property :network_tags, as: 'networkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
2166
2191
|
|
2192
|
+
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
2193
|
+
|
2167
2194
|
end
|
2168
2195
|
end
|
2169
2196
|
|
@@ -2372,6 +2399,13 @@ module Google
|
|
2372
2399
|
end
|
2373
2400
|
end
|
2374
2401
|
|
2402
|
+
class ResourceManagerTags
|
2403
|
+
# @private
|
2404
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2405
|
+
hash :tags, as: 'tags'
|
2406
|
+
end
|
2407
|
+
end
|
2408
|
+
|
2375
2409
|
class ResourceUsageExportConfig
|
2376
2410
|
# @private
|
2377
2411
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2725,6 +2759,8 @@ module Google
|
|
2725
2759
|
property :project_id, as: 'projectId'
|
2726
2760
|
property :resource_labels, as: 'resourceLabels', class: Google::Apis::ContainerV1::ResourceLabels, decorator: Google::Apis::ContainerV1::ResourceLabels::Representation
|
2727
2761
|
|
2762
|
+
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
2763
|
+
|
2728
2764
|
property :tags, as: 'tags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
2729
2765
|
|
2730
2766
|
property :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaints, decorator: Google::Apis::ContainerV1::NodeTaints::Representation
|
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.60.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: 2023-
|
11
|
+
date: 2023-11-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-container_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.60.0
|
62
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: []
|