google-apis-container_v1 0.57.0 → 0.59.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: d1c7f7d695e9f7427c2e93701e1babc0a5f8db2d0d76130560dd925ad9a5ea26
|
4
|
+
data.tar.gz: e02fd042e811e4bf99c774d5962a5d860adc847bd3f438ea02346a644f16b7b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f4e13bb37ea85f823b6cdd3698d6f9f840d805ec4761b10116194bb0bd33cc0179d0b42f9945cc0566d219196d41a2b8e3586bd81e41ae78bf87f6c4b68b3e9
|
7
|
+
data.tar.gz: dcb48ee776e0ee667abb9136140795d97eed6bc8c080f98083247466f36029919357b354511d0cfa378511c2da9313c6bd66d6066d0df0ddbc3cddfc27f88a61
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.59.0 (2023-10-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231012
|
6
|
+
|
7
|
+
### v0.58.0 (2023-10-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230919
|
10
|
+
|
3
11
|
### v0.57.0 (2023-08-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230809
|
@@ -1177,6 +1177,13 @@ module Google
|
|
1177
1177
|
# @return [Google::Apis::ContainerV1::NotificationConfig]
|
1178
1178
|
attr_accessor :notification_config
|
1179
1179
|
|
1180
|
+
# ParentProductConfig is the configuration of the parent product of the cluster.
|
1181
|
+
# This field is used by Google internal products that are built on top of a GKE
|
1182
|
+
# cluster and take the ownership of the cluster.
|
1183
|
+
# Corresponds to the JSON property `parentProductConfig`
|
1184
|
+
# @return [Google::Apis::ContainerV1::ParentProductConfig]
|
1185
|
+
attr_accessor :parent_product_config
|
1186
|
+
|
1180
1187
|
# Configuration options for private clusters.
|
1181
1188
|
# Corresponds to the JSON property `privateClusterConfig`
|
1182
1189
|
# @return [Google::Apis::ContainerV1::PrivateClusterConfig]
|
@@ -1325,6 +1332,7 @@ module Google
|
|
1325
1332
|
@node_pool_defaults = args[:node_pool_defaults] if args.key?(:node_pool_defaults)
|
1326
1333
|
@node_pools = args[:node_pools] if args.key?(:node_pools)
|
1327
1334
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
1335
|
+
@parent_product_config = args[:parent_product_config] if args.key?(:parent_product_config)
|
1328
1336
|
@private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
|
1329
1337
|
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
1330
1338
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
@@ -1610,6 +1618,15 @@ module Google
|
|
1610
1618
|
# @return [Google::Apis::ContainerV1::NetworkTags]
|
1611
1619
|
attr_accessor :desired_node_pool_auto_config_network_tags
|
1612
1620
|
|
1621
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
1622
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
1623
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
1624
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
1625
|
+
# specified. Existing tags will be replaced with new values.
|
1626
|
+
# Corresponds to the JSON property `desiredNodePoolAutoConfigResourceManagerTags`
|
1627
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
1628
|
+
attr_accessor :desired_node_pool_auto_config_resource_manager_tags
|
1629
|
+
|
1613
1630
|
# NodePoolAutoscaling contains information required by cluster autoscaler to
|
1614
1631
|
# adjust the size of the node pool to the current cluster usage.
|
1615
1632
|
# Corresponds to the JSON property `desiredNodePoolAutoscaling`
|
@@ -1644,6 +1661,13 @@ module Google
|
|
1644
1661
|
# @return [Google::Apis::ContainerV1::NotificationConfig]
|
1645
1662
|
attr_accessor :desired_notification_config
|
1646
1663
|
|
1664
|
+
# ParentProductConfig is the configuration of the parent product of the cluster.
|
1665
|
+
# This field is used by Google internal products that are built on top of a GKE
|
1666
|
+
# cluster and take the ownership of the cluster.
|
1667
|
+
# Corresponds to the JSON property `desiredParentProductConfig`
|
1668
|
+
# @return [Google::Apis::ContainerV1::ParentProductConfig]
|
1669
|
+
attr_accessor :desired_parent_product_config
|
1670
|
+
|
1647
1671
|
# Configuration options for private clusters.
|
1648
1672
|
# Corresponds to the JSON property `desiredPrivateClusterConfig`
|
1649
1673
|
# @return [Google::Apis::ContainerV1::PrivateClusterConfig]
|
@@ -1757,11 +1781,13 @@ module Google
|
|
1757
1781
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
1758
1782
|
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
1759
1783
|
@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)
|
1784
|
+
@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)
|
1760
1785
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
1761
1786
|
@desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
|
1762
1787
|
@desired_node_pool_logging_config = args[:desired_node_pool_logging_config] if args.key?(:desired_node_pool_logging_config)
|
1763
1788
|
@desired_node_version = args[:desired_node_version] if args.key?(:desired_node_version)
|
1764
1789
|
@desired_notification_config = args[:desired_notification_config] if args.key?(:desired_notification_config)
|
1790
|
+
@desired_parent_product_config = args[:desired_parent_product_config] if args.key?(:desired_parent_product_config)
|
1765
1791
|
@desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
|
1766
1792
|
@desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
|
1767
1793
|
@desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
|
@@ -2157,15 +2183,22 @@ module Google
|
|
2157
2183
|
end
|
2158
2184
|
|
2159
2185
|
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
2160
|
-
# storage using Local
|
2186
|
+
# storage using Local SSDs.
|
2161
2187
|
class EphemeralStorageLocalSsdConfig
|
2162
2188
|
include Google::Apis::Core::Hashable
|
2163
2189
|
|
2164
|
-
# Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces.
|
2165
|
-
#
|
2166
|
-
#
|
2167
|
-
#
|
2168
|
-
#
|
2190
|
+
# Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A
|
2191
|
+
# zero (or unset) value has different meanings depending on machine type being
|
2192
|
+
# used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
|
2193
|
+
# zero (or unset) means to disable using local SSDs as ephemeral storage. The
|
2194
|
+
# limit for this value is dependent upon the maximum number of disk available on
|
2195
|
+
# a machine per zone. See: https://cloud.google.com/compute/docs/disks/local-ssd
|
2196
|
+
# for more information. 2. For Gen3 machines which dictate a specific number of
|
2197
|
+
# local ssds, zero (or unset) means to use the default number of local ssds that
|
2198
|
+
# goes with that machine type. For example, for a c3-standard-8-lssd machine, 2
|
2199
|
+
# local ssds would be provisioned. For c3-standard-8 (which doesn't support
|
2200
|
+
# local ssds), 0 will be provisioned. See https://cloud.google.com/compute/docs/
|
2201
|
+
# disks/local-ssd#choose_number_local_ssds for more info.
|
2169
2202
|
# Corresponds to the JSON property `localSsdCount`
|
2170
2203
|
# @return [Fixnum]
|
2171
2204
|
attr_accessor :local_ssd_count
|
@@ -3088,15 +3121,22 @@ module Google
|
|
3088
3121
|
end
|
3089
3122
|
|
3090
3123
|
# LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
|
3091
|
-
#
|
3124
|
+
# SSDs
|
3092
3125
|
class LocalNvmeSsdBlockConfig
|
3093
3126
|
include Google::Apis::Core::Hashable
|
3094
3127
|
|
3095
|
-
#
|
3096
|
-
#
|
3097
|
-
# disks
|
3098
|
-
#
|
3099
|
-
#
|
3128
|
+
# Number of local NVMe SSDs to use. The limit for this value is dependent upon
|
3129
|
+
# the maximum number of disk available on a machine per zone. See: https://cloud.
|
3130
|
+
# google.com/compute/docs/disks/local-ssd for more information. A zero (or unset)
|
3131
|
+
# value has different meanings depending on machine type being used: 1. For pre-
|
3132
|
+
# Gen3 machines, which support flexible numbers of local ssds, zero (or unset)
|
3133
|
+
# means to disable using local SSDs as ephemeral storage. 2. For Gen3 machines
|
3134
|
+
# which dictate a specific number of local ssds, zero (or unset) means to use
|
3135
|
+
# the default number of local ssds that goes with that machine type. For example,
|
3136
|
+
# for a c3-standard-8-lssd machine, 2 local ssds would be provisioned. For c3-
|
3137
|
+
# standard-8 (which doesn't support local ssds), 0 will be provisioned. See
|
3138
|
+
# https://cloud.google.com/compute/docs/disks/local-ssd#choose_number_local_ssds
|
3139
|
+
# for more info.
|
3100
3140
|
# Corresponds to the JSON property `localSsdCount`
|
3101
3141
|
# @return [Fixnum]
|
3102
3142
|
attr_accessor :local_ssd_count
|
@@ -3773,7 +3813,7 @@ module Google
|
|
3773
3813
|
attr_accessor :disk_type
|
3774
3814
|
|
3775
3815
|
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
3776
|
-
# storage using Local
|
3816
|
+
# storage using Local SSDs.
|
3777
3817
|
# Corresponds to the JSON property `ephemeralStorageLocalSsdConfig`
|
3778
3818
|
# @return [Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig]
|
3779
3819
|
attr_accessor :ephemeral_storage_local_ssd_config
|
@@ -3823,7 +3863,7 @@ module Google
|
|
3823
3863
|
attr_accessor :linux_node_config
|
3824
3864
|
|
3825
3865
|
# LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
|
3826
|
-
#
|
3866
|
+
# SSDs
|
3827
3867
|
# Corresponds to the JSON property `localNvmeSsdBlockConfig`
|
3828
3868
|
# @return [Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig]
|
3829
3869
|
attr_accessor :local_nvme_ssd_block_config
|
@@ -3917,6 +3957,15 @@ module Google
|
|
3917
3957
|
# @return [Hash<String,String>]
|
3918
3958
|
attr_accessor :resource_labels
|
3919
3959
|
|
3960
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
3961
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
3962
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
3963
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
3964
|
+
# specified. Existing tags will be replaced with new values.
|
3965
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
3966
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
3967
|
+
attr_accessor :resource_manager_tags
|
3968
|
+
|
3920
3969
|
# SandboxConfig contains configurations of the sandbox to use for the node.
|
3921
3970
|
# Corresponds to the JSON property `sandboxConfig`
|
3922
3971
|
# @return [Google::Apis::ContainerV1::SandboxConfig]
|
@@ -4006,6 +4055,7 @@ module Google
|
|
4006
4055
|
@preemptible = args[:preemptible] if args.key?(:preemptible)
|
4007
4056
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
4008
4057
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
4058
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
4009
4059
|
@sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
|
4010
4060
|
@service_account = args[:service_account] if args.key?(:service_account)
|
4011
4061
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
@@ -4456,6 +4506,15 @@ module Google
|
|
4456
4506
|
# @return [Google::Apis::ContainerV1::NetworkTags]
|
4457
4507
|
attr_accessor :network_tags
|
4458
4508
|
|
4509
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
4510
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
4511
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
4512
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
4513
|
+
# specified. Existing tags will be replaced with new values.
|
4514
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
4515
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
4516
|
+
attr_accessor :resource_manager_tags
|
4517
|
+
|
4459
4518
|
def initialize(**args)
|
4460
4519
|
update!(**args)
|
4461
4520
|
end
|
@@ -4463,6 +4522,7 @@ module Google
|
|
4463
4522
|
# Update properties of this object
|
4464
4523
|
def update!(**args)
|
4465
4524
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
4525
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
4466
4526
|
end
|
4467
4527
|
end
|
4468
4528
|
|
@@ -4809,6 +4869,33 @@ module Google
|
|
4809
4869
|
end
|
4810
4870
|
end
|
4811
4871
|
|
4872
|
+
# ParentProductConfig is the configuration of the parent product of the cluster.
|
4873
|
+
# This field is used by Google internal products that are built on top of a GKE
|
4874
|
+
# cluster and take the ownership of the cluster.
|
4875
|
+
class ParentProductConfig
|
4876
|
+
include Google::Apis::Core::Hashable
|
4877
|
+
|
4878
|
+
# Labels contain the configuration of the parent product.
|
4879
|
+
# Corresponds to the JSON property `labels`
|
4880
|
+
# @return [Hash<String,String>]
|
4881
|
+
attr_accessor :labels
|
4882
|
+
|
4883
|
+
# Name of the parent product associated with the cluster.
|
4884
|
+
# Corresponds to the JSON property `productName`
|
4885
|
+
# @return [String]
|
4886
|
+
attr_accessor :product_name
|
4887
|
+
|
4888
|
+
def initialize(**args)
|
4889
|
+
update!(**args)
|
4890
|
+
end
|
4891
|
+
|
4892
|
+
# Update properties of this object
|
4893
|
+
def update!(**args)
|
4894
|
+
@labels = args[:labels] if args.key?(:labels)
|
4895
|
+
@product_name = args[:product_name] if args.key?(:product_name)
|
4896
|
+
end
|
4897
|
+
end
|
4898
|
+
|
4812
4899
|
# PlacementPolicy defines the placement policy used by the node pool.
|
4813
4900
|
class PlacementPolicy
|
4814
4901
|
include Google::Apis::Core::Hashable
|
@@ -5193,6 +5280,31 @@ module Google
|
|
5193
5280
|
end
|
5194
5281
|
end
|
5195
5282
|
|
5283
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
5284
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
5285
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
5286
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
5287
|
+
# specified. Existing tags will be replaced with new values.
|
5288
|
+
class ResourceManagerTags
|
5289
|
+
include Google::Apis::Core::Hashable
|
5290
|
+
|
5291
|
+
# TagKeyValue must be in one of the following formats ([KEY]=[VALUE]) 1. `
|
5292
|
+
# tagKeys/`tag_key_id`=tagValues/`tag_value_id`` 2. ``org_id`/`tag_key_name`=`
|
5293
|
+
# tag_value_name`` 3. ``project_id`/`tag_key_name`=`tag_value_name``
|
5294
|
+
# Corresponds to the JSON property `tags`
|
5295
|
+
# @return [Hash<String,String>]
|
5296
|
+
attr_accessor :tags
|
5297
|
+
|
5298
|
+
def initialize(**args)
|
5299
|
+
update!(**args)
|
5300
|
+
end
|
5301
|
+
|
5302
|
+
# Update properties of this object
|
5303
|
+
def update!(**args)
|
5304
|
+
@tags = args[:tags] if args.key?(:tags)
|
5305
|
+
end
|
5306
|
+
end
|
5307
|
+
|
5196
5308
|
# Configuration for exporting cluster resource usages.
|
5197
5309
|
class ResourceUsageExportConfig
|
5198
5310
|
include Google::Apis::Core::Hashable
|
@@ -6659,6 +6771,15 @@ module Google
|
|
6659
6771
|
# @return [Google::Apis::ContainerV1::ResourceLabels]
|
6660
6772
|
attr_accessor :resource_labels
|
6661
6773
|
|
6774
|
+
# A map of resource manager tag keys and values to be attached to the nodes for
|
6775
|
+
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
6776
|
+
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
6777
|
+
# firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
|
6778
|
+
# specified. Existing tags will be replaced with new values.
|
6779
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
6780
|
+
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
6781
|
+
attr_accessor :resource_manager_tags
|
6782
|
+
|
6662
6783
|
# Collection of Compute Engine network tags that can be applied to a node's
|
6663
6784
|
# underlying VM instance.
|
6664
6785
|
# Corresponds to the JSON property `tags`
|
@@ -6753,6 +6874,7 @@ module Google
|
|
6753
6874
|
@node_version = args[:node_version] if args.key?(:node_version)
|
6754
6875
|
@project_id = args[:project_id] if args.key?(:project_id)
|
6755
6876
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
6877
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
6756
6878
|
@tags = args[:tags] if args.key?(:tags)
|
6757
6879
|
@taints = args[:taints] if args.key?(:taints)
|
6758
6880
|
@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.59.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 = "20231012"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -664,6 +664,12 @@ module Google
|
|
664
664
|
include Google::Apis::Core::JsonObjectSupport
|
665
665
|
end
|
666
666
|
|
667
|
+
class ParentProductConfig
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
667
673
|
class PlacementPolicy
|
668
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
675
|
|
@@ -736,6 +742,12 @@ module Google
|
|
736
742
|
include Google::Apis::Core::JsonObjectSupport
|
737
743
|
end
|
738
744
|
|
745
|
+
class ResourceManagerTags
|
746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
|
+
|
748
|
+
include Google::Apis::Core::JsonObjectSupport
|
749
|
+
end
|
750
|
+
|
739
751
|
class ResourceUsageExportConfig
|
740
752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
753
|
|
@@ -1295,6 +1307,8 @@ module Google
|
|
1295
1307
|
|
1296
1308
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::ContainerV1::NotificationConfig, decorator: Google::Apis::ContainerV1::NotificationConfig::Representation
|
1297
1309
|
|
1310
|
+
property :parent_product_config, as: 'parentProductConfig', class: Google::Apis::ContainerV1::ParentProductConfig, decorator: Google::Apis::ContainerV1::ParentProductConfig::Representation
|
1311
|
+
|
1298
1312
|
property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
|
1299
1313
|
|
1300
1314
|
property :release_channel, as: 'releaseChannel', class: Google::Apis::ContainerV1::ReleaseChannel, decorator: Google::Apis::ContainerV1::ReleaseChannel::Representation
|
@@ -1397,6 +1411,8 @@ module Google
|
|
1397
1411
|
|
1398
1412
|
property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
1399
1413
|
|
1414
|
+
property :desired_node_pool_auto_config_resource_manager_tags, as: 'desiredNodePoolAutoConfigResourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
1415
|
+
|
1400
1416
|
property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1::NodePoolAutoscaling::Representation
|
1401
1417
|
|
1402
1418
|
property :desired_node_pool_id, as: 'desiredNodePoolId'
|
@@ -1405,6 +1421,8 @@ module Google
|
|
1405
1421
|
property :desired_node_version, as: 'desiredNodeVersion'
|
1406
1422
|
property :desired_notification_config, as: 'desiredNotificationConfig', class: Google::Apis::ContainerV1::NotificationConfig, decorator: Google::Apis::ContainerV1::NotificationConfig::Representation
|
1407
1423
|
|
1424
|
+
property :desired_parent_product_config, as: 'desiredParentProductConfig', class: Google::Apis::ContainerV1::ParentProductConfig, decorator: Google::Apis::ContainerV1::ParentProductConfig::Representation
|
1425
|
+
|
1408
1426
|
property :desired_private_cluster_config, as: 'desiredPrivateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
|
1409
1427
|
|
1410
1428
|
property :desired_private_ipv6_google_access, as: 'desiredPrivateIpv6GoogleAccess'
|
@@ -2038,6 +2056,8 @@ module Google
|
|
2038
2056
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ContainerV1::ReservationAffinity, decorator: Google::Apis::ContainerV1::ReservationAffinity::Representation
|
2039
2057
|
|
2040
2058
|
hash :resource_labels, as: 'resourceLabels'
|
2059
|
+
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
2060
|
+
|
2041
2061
|
property :sandbox_config, as: 'sandboxConfig', class: Google::Apis::ContainerV1::SandboxConfig, decorator: Google::Apis::ContainerV1::SandboxConfig::Representation
|
2042
2062
|
|
2043
2063
|
property :service_account, as: 'serviceAccount'
|
@@ -2154,6 +2174,8 @@ module Google
|
|
2154
2174
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2155
2175
|
property :network_tags, as: 'networkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
2156
2176
|
|
2177
|
+
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
2178
|
+
|
2157
2179
|
end
|
2158
2180
|
end
|
2159
2181
|
|
@@ -2248,6 +2270,14 @@ module Google
|
|
2248
2270
|
end
|
2249
2271
|
end
|
2250
2272
|
|
2273
|
+
class ParentProductConfig
|
2274
|
+
# @private
|
2275
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2276
|
+
hash :labels, as: 'labels'
|
2277
|
+
property :product_name, as: 'productName'
|
2278
|
+
end
|
2279
|
+
end
|
2280
|
+
|
2251
2281
|
class PlacementPolicy
|
2252
2282
|
# @private
|
2253
2283
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2354,6 +2384,13 @@ module Google
|
|
2354
2384
|
end
|
2355
2385
|
end
|
2356
2386
|
|
2387
|
+
class ResourceManagerTags
|
2388
|
+
# @private
|
2389
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2390
|
+
hash :tags, as: 'tags'
|
2391
|
+
end
|
2392
|
+
end
|
2393
|
+
|
2357
2394
|
class ResourceUsageExportConfig
|
2358
2395
|
# @private
|
2359
2396
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2707,6 +2744,8 @@ module Google
|
|
2707
2744
|
property :project_id, as: 'projectId'
|
2708
2745
|
property :resource_labels, as: 'resourceLabels', class: Google::Apis::ContainerV1::ResourceLabels, decorator: Google::Apis::ContainerV1::ResourceLabels::Representation
|
2709
2746
|
|
2747
|
+
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
2748
|
+
|
2710
2749
|
property :tags, as: 'tags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
2711
2750
|
|
2712
2751
|
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.59.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-10-29 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.59.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: []
|