google-apis-container_v1 0.76.0 → 0.78.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: 7ad3a80cab7b61bae0aa46f32b7e4167da7ab3ff9254d13a5bd5324d23501c4d
|
|
4
|
+
data.tar.gz: afd1febb70e7a68e960dbf27fd8858962c41100f845d219a19dac6fb2fe8405a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb6f4cd597e2b884fa1ebfc740b857deb430ac783e1f36452899006eeb6d668b6ca7dd598381ae78835c290e1f3a2846b1ddebf1c5d8d87b493fd4116d4fe4d5
|
|
7
|
+
data.tar.gz: 37abd119964bbde8725d9bedac1025b603be646d0c20bbe97956e09704a6472c3b678ad95abf93c68d82646e1353ceac65cdbdf275e4eeaa104b32db9316c58b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1
|
|
2
2
|
|
|
3
|
+
### v0.78.0 (2024-08-25)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240806
|
|
6
|
+
|
|
7
|
+
### v0.77.0 (2024-08-18)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20240730
|
|
10
|
+
|
|
3
11
|
### v0.76.0 (2024-08-04)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20240722
|
|
@@ -1248,6 +1248,12 @@ module Google
|
|
|
1248
1248
|
# @return [Google::Apis::ContainerV1::PrivateClusterConfig]
|
|
1249
1249
|
attr_accessor :private_cluster_config
|
|
1250
1250
|
|
|
1251
|
+
# RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings
|
|
1252
|
+
# that can be created.
|
|
1253
|
+
# Corresponds to the JSON property `rbacBindingConfig`
|
|
1254
|
+
# @return [Google::Apis::ContainerV1::RbacBindingConfig]
|
|
1255
|
+
attr_accessor :rbac_binding_config
|
|
1256
|
+
|
|
1251
1257
|
# ReleaseChannel indicates which release channel a cluster is subscribed to.
|
|
1252
1258
|
# Release channels are arranged in order of risk. When a cluster is subscribed
|
|
1253
1259
|
# to a release channel, Google maintains both the master version and the node
|
|
@@ -1279,6 +1285,11 @@ module Google
|
|
|
1279
1285
|
attr_accessor :satisfies_pzs
|
|
1280
1286
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
1281
1287
|
|
|
1288
|
+
# SecretManagerConfig is config for secret manager enablement.
|
|
1289
|
+
# Corresponds to the JSON property `secretManagerConfig`
|
|
1290
|
+
# @return [Google::Apis::ContainerV1::SecretManagerConfig]
|
|
1291
|
+
attr_accessor :secret_manager_config
|
|
1292
|
+
|
|
1282
1293
|
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
|
1283
1294
|
# the Security Posture API.
|
|
1284
1295
|
# Corresponds to the JSON property `securityPostureConfig`
|
|
@@ -1406,11 +1417,13 @@ module Google
|
|
|
1406
1417
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
|
1407
1418
|
@parent_product_config = args[:parent_product_config] if args.key?(:parent_product_config)
|
|
1408
1419
|
@private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
|
|
1420
|
+
@rbac_binding_config = args[:rbac_binding_config] if args.key?(:rbac_binding_config)
|
|
1409
1421
|
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
|
1410
1422
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
|
1411
1423
|
@resource_usage_export_config = args[:resource_usage_export_config] if args.key?(:resource_usage_export_config)
|
|
1412
1424
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
1413
1425
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
1426
|
+
@secret_manager_config = args[:secret_manager_config] if args.key?(:secret_manager_config)
|
|
1414
1427
|
@security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
|
|
1415
1428
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
1416
1429
|
@services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
|
|
@@ -1784,6 +1797,12 @@ module Google
|
|
|
1784
1797
|
# @return [String]
|
|
1785
1798
|
attr_accessor :desired_private_ipv6_google_access
|
|
1786
1799
|
|
|
1800
|
+
# RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings
|
|
1801
|
+
# that can be created.
|
|
1802
|
+
# Corresponds to the JSON property `desiredRbacBindingConfig`
|
|
1803
|
+
# @return [Google::Apis::ContainerV1::RbacBindingConfig]
|
|
1804
|
+
attr_accessor :desired_rbac_binding_config
|
|
1805
|
+
|
|
1787
1806
|
# ReleaseChannel indicates which release channel a cluster is subscribed to.
|
|
1788
1807
|
# Release channels are arranged in order of risk. When a cluster is subscribed
|
|
1789
1808
|
# to a release channel, Google maintains both the master version and the node
|
|
@@ -1797,6 +1816,11 @@ module Google
|
|
|
1797
1816
|
# @return [Google::Apis::ContainerV1::ResourceUsageExportConfig]
|
|
1798
1817
|
attr_accessor :desired_resource_usage_export_config
|
|
1799
1818
|
|
|
1819
|
+
# SecretManagerConfig is config for secret manager enablement.
|
|
1820
|
+
# Corresponds to the JSON property `desiredSecretManagerConfig`
|
|
1821
|
+
# @return [Google::Apis::ContainerV1::SecretManagerConfig]
|
|
1822
|
+
attr_accessor :desired_secret_manager_config
|
|
1823
|
+
|
|
1800
1824
|
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
|
1801
1825
|
# the Security Posture API.
|
|
1802
1826
|
# Corresponds to the JSON property `desiredSecurityPostureConfig`
|
|
@@ -1902,8 +1926,10 @@ module Google
|
|
|
1902
1926
|
@desired_parent_product_config = args[:desired_parent_product_config] if args.key?(:desired_parent_product_config)
|
|
1903
1927
|
@desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
|
|
1904
1928
|
@desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
|
|
1929
|
+
@desired_rbac_binding_config = args[:desired_rbac_binding_config] if args.key?(:desired_rbac_binding_config)
|
|
1905
1930
|
@desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
|
|
1906
1931
|
@desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
|
|
1932
|
+
@desired_secret_manager_config = args[:desired_secret_manager_config] if args.key?(:desired_secret_manager_config)
|
|
1907
1933
|
@desired_security_posture_config = args[:desired_security_posture_config] if args.key?(:desired_security_posture_config)
|
|
1908
1934
|
@desired_service_external_ips_config = args[:desired_service_external_ips_config] if args.key?(:desired_service_external_ips_config)
|
|
1909
1935
|
@desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
|
|
@@ -3543,7 +3569,7 @@ module Google
|
|
|
3543
3569
|
include Google::Apis::Core::Hashable
|
|
3544
3570
|
|
|
3545
3571
|
# Output only. Base64-encoded public certificate used by clients to authenticate
|
|
3546
|
-
# to the cluster endpoint.
|
|
3572
|
+
# to the cluster endpoint. Issued only if client_certificate_config is set.
|
|
3547
3573
|
# Corresponds to the JSON property `clientCertificate`
|
|
3548
3574
|
# @return [String]
|
|
3549
3575
|
attr_accessor :client_certificate
|
|
@@ -4260,6 +4286,11 @@ module Google
|
|
|
4260
4286
|
attr_accessor :spot
|
|
4261
4287
|
alias_method :spot?, :spot
|
|
4262
4288
|
|
|
4289
|
+
# List of Storage Pools where boot disks are provisioned.
|
|
4290
|
+
# Corresponds to the JSON property `storagePools`
|
|
4291
|
+
# @return [Array<String>]
|
|
4292
|
+
attr_accessor :storage_pools
|
|
4293
|
+
|
|
4263
4294
|
# The list of instance tags applied to all nodes. Tags are used to identify
|
|
4264
4295
|
# valid sources or targets for network firewalls and are specified by the client
|
|
4265
4296
|
# during cluster or node pool creation. Each tag within the list must comply
|
|
@@ -4329,6 +4360,7 @@ module Google
|
|
|
4329
4360
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
|
4330
4361
|
@sole_tenant_config = args[:sole_tenant_config] if args.key?(:sole_tenant_config)
|
|
4331
4362
|
@spot = args[:spot] if args.key?(:spot)
|
|
4363
|
+
@storage_pools = args[:storage_pools] if args.key?(:storage_pools)
|
|
4332
4364
|
@tags = args[:tags] if args.key?(:tags)
|
|
4333
4365
|
@taints = args[:taints] if args.key?(:taints)
|
|
4334
4366
|
@windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
|
|
@@ -5449,6 +5481,36 @@ module Google
|
|
|
5449
5481
|
end
|
|
5450
5482
|
end
|
|
5451
5483
|
|
|
5484
|
+
# RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings
|
|
5485
|
+
# that can be created.
|
|
5486
|
+
class RbacBindingConfig
|
|
5487
|
+
include Google::Apis::Core::Hashable
|
|
5488
|
+
|
|
5489
|
+
# Setting this to true will allow any ClusterRoleBinding and RoleBinding with
|
|
5490
|
+
# subjects system:authenticated.
|
|
5491
|
+
# Corresponds to the JSON property `enableInsecureBindingSystemAuthenticated`
|
|
5492
|
+
# @return [Boolean]
|
|
5493
|
+
attr_accessor :enable_insecure_binding_system_authenticated
|
|
5494
|
+
alias_method :enable_insecure_binding_system_authenticated?, :enable_insecure_binding_system_authenticated
|
|
5495
|
+
|
|
5496
|
+
# Setting this to true will allow any ClusterRoleBinding and RoleBinding with
|
|
5497
|
+
# subjets system:anonymous or system:unauthenticated.
|
|
5498
|
+
# Corresponds to the JSON property `enableInsecureBindingSystemUnauthenticated`
|
|
5499
|
+
# @return [Boolean]
|
|
5500
|
+
attr_accessor :enable_insecure_binding_system_unauthenticated
|
|
5501
|
+
alias_method :enable_insecure_binding_system_unauthenticated?, :enable_insecure_binding_system_unauthenticated
|
|
5502
|
+
|
|
5503
|
+
def initialize(**args)
|
|
5504
|
+
update!(**args)
|
|
5505
|
+
end
|
|
5506
|
+
|
|
5507
|
+
# Update properties of this object
|
|
5508
|
+
def update!(**args)
|
|
5509
|
+
@enable_insecure_binding_system_authenticated = args[:enable_insecure_binding_system_authenticated] if args.key?(:enable_insecure_binding_system_authenticated)
|
|
5510
|
+
@enable_insecure_binding_system_unauthenticated = args[:enable_insecure_binding_system_unauthenticated] if args.key?(:enable_insecure_binding_system_unauthenticated)
|
|
5511
|
+
end
|
|
5512
|
+
end
|
|
5513
|
+
|
|
5452
5514
|
# RangeInfo contains the range name and the range utilization by this cluster.
|
|
5453
5515
|
class RangeInfo
|
|
5454
5516
|
include Google::Apis::Core::Hashable
|
|
@@ -5902,6 +5964,26 @@ module Google
|
|
|
5902
5964
|
end
|
|
5903
5965
|
end
|
|
5904
5966
|
|
|
5967
|
+
# SecretManagerConfig is config for secret manager enablement.
|
|
5968
|
+
class SecretManagerConfig
|
|
5969
|
+
include Google::Apis::Core::Hashable
|
|
5970
|
+
|
|
5971
|
+
# Enable/Disable Secret Manager Config.
|
|
5972
|
+
# Corresponds to the JSON property `enabled`
|
|
5973
|
+
# @return [Boolean]
|
|
5974
|
+
attr_accessor :enabled
|
|
5975
|
+
alias_method :enabled?, :enabled
|
|
5976
|
+
|
|
5977
|
+
def initialize(**args)
|
|
5978
|
+
update!(**args)
|
|
5979
|
+
end
|
|
5980
|
+
|
|
5981
|
+
# Update properties of this object
|
|
5982
|
+
def update!(**args)
|
|
5983
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
5984
|
+
end
|
|
5985
|
+
end
|
|
5986
|
+
|
|
5905
5987
|
# SecurityBulletinEvent is a notification sent to customers when a security
|
|
5906
5988
|
# bulletin has been posted that they are vulnerable to.
|
|
5907
5989
|
class SecurityBulletinEvent
|
|
@@ -7301,6 +7383,12 @@ module Google
|
|
|
7301
7383
|
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
|
7302
7384
|
attr_accessor :resource_manager_tags
|
|
7303
7385
|
|
|
7386
|
+
# List of Storage Pools where boot disks are provisioned. Existing Storage Pools
|
|
7387
|
+
# will be replaced with storage-pools.
|
|
7388
|
+
# Corresponds to the JSON property `storagePools`
|
|
7389
|
+
# @return [Array<String>]
|
|
7390
|
+
attr_accessor :storage_pools
|
|
7391
|
+
|
|
7304
7392
|
# Collection of Compute Engine network tags that can be applied to a node's
|
|
7305
7393
|
# underlying VM instance.
|
|
7306
7394
|
# Corresponds to the JSON property `tags`
|
|
@@ -7399,6 +7487,7 @@ module Google
|
|
|
7399
7487
|
@queued_provisioning = args[:queued_provisioning] if args.key?(:queued_provisioning)
|
|
7400
7488
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
|
7401
7489
|
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
7490
|
+
@storage_pools = args[:storage_pools] if args.key?(:storage_pools)
|
|
7402
7491
|
@tags = args[:tags] if args.key?(:tags)
|
|
7403
7492
|
@taints = args[:taints] if args.key?(:taints)
|
|
7404
7493
|
@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.78.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240806"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -748,6 +748,12 @@ module Google
|
|
|
748
748
|
include Google::Apis::Core::JsonObjectSupport
|
|
749
749
|
end
|
|
750
750
|
|
|
751
|
+
class RbacBindingConfig
|
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
753
|
+
|
|
754
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
755
|
+
end
|
|
756
|
+
|
|
751
757
|
class RangeInfo
|
|
752
758
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
753
759
|
|
|
@@ -844,6 +850,12 @@ module Google
|
|
|
844
850
|
include Google::Apis::Core::JsonObjectSupport
|
|
845
851
|
end
|
|
846
852
|
|
|
853
|
+
class SecretManagerConfig
|
|
854
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
855
|
+
|
|
856
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
857
|
+
end
|
|
858
|
+
|
|
847
859
|
class SecurityBulletinEvent
|
|
848
860
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
849
861
|
|
|
@@ -1412,6 +1424,8 @@ module Google
|
|
|
1412
1424
|
|
|
1413
1425
|
property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
|
|
1414
1426
|
|
|
1427
|
+
property :rbac_binding_config, as: 'rbacBindingConfig', class: Google::Apis::ContainerV1::RbacBindingConfig, decorator: Google::Apis::ContainerV1::RbacBindingConfig::Representation
|
|
1428
|
+
|
|
1415
1429
|
property :release_channel, as: 'releaseChannel', class: Google::Apis::ContainerV1::ReleaseChannel, decorator: Google::Apis::ContainerV1::ReleaseChannel::Representation
|
|
1416
1430
|
|
|
1417
1431
|
hash :resource_labels, as: 'resourceLabels'
|
|
@@ -1419,6 +1433,8 @@ module Google
|
|
|
1419
1433
|
|
|
1420
1434
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
1421
1435
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
1436
|
+
property :secret_manager_config, as: 'secretManagerConfig', class: Google::Apis::ContainerV1::SecretManagerConfig, decorator: Google::Apis::ContainerV1::SecretManagerConfig::Representation
|
|
1437
|
+
|
|
1422
1438
|
property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::ContainerV1::SecurityPostureConfig, decorator: Google::Apis::ContainerV1::SecurityPostureConfig::Representation
|
|
1423
1439
|
|
|
1424
1440
|
property :self_link, as: 'selfLink'
|
|
@@ -1538,10 +1554,14 @@ module Google
|
|
|
1538
1554
|
property :desired_private_cluster_config, as: 'desiredPrivateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
|
|
1539
1555
|
|
|
1540
1556
|
property :desired_private_ipv6_google_access, as: 'desiredPrivateIpv6GoogleAccess'
|
|
1557
|
+
property :desired_rbac_binding_config, as: 'desiredRbacBindingConfig', class: Google::Apis::ContainerV1::RbacBindingConfig, decorator: Google::Apis::ContainerV1::RbacBindingConfig::Representation
|
|
1558
|
+
|
|
1541
1559
|
property :desired_release_channel, as: 'desiredReleaseChannel', class: Google::Apis::ContainerV1::ReleaseChannel, decorator: Google::Apis::ContainerV1::ReleaseChannel::Representation
|
|
1542
1560
|
|
|
1543
1561
|
property :desired_resource_usage_export_config, as: 'desiredResourceUsageExportConfig', class: Google::Apis::ContainerV1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1::ResourceUsageExportConfig::Representation
|
|
1544
1562
|
|
|
1563
|
+
property :desired_secret_manager_config, as: 'desiredSecretManagerConfig', class: Google::Apis::ContainerV1::SecretManagerConfig, decorator: Google::Apis::ContainerV1::SecretManagerConfig::Representation
|
|
1564
|
+
|
|
1545
1565
|
property :desired_security_posture_config, as: 'desiredSecurityPostureConfig', class: Google::Apis::ContainerV1::SecurityPostureConfig, decorator: Google::Apis::ContainerV1::SecurityPostureConfig::Representation
|
|
1546
1566
|
|
|
1547
1567
|
property :desired_service_external_ips_config, as: 'desiredServiceExternalIpsConfig', class: Google::Apis::ContainerV1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1::ServiceExternalIPsConfig::Representation
|
|
@@ -2224,6 +2244,7 @@ module Google
|
|
|
2224
2244
|
property :sole_tenant_config, as: 'soleTenantConfig', class: Google::Apis::ContainerV1::SoleTenantConfig, decorator: Google::Apis::ContainerV1::SoleTenantConfig::Representation
|
|
2225
2245
|
|
|
2226
2246
|
property :spot, as: 'spot'
|
|
2247
|
+
collection :storage_pools, as: 'storagePools'
|
|
2227
2248
|
collection :tags, as: 'tags'
|
|
2228
2249
|
collection :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaint, decorator: Google::Apis::ContainerV1::NodeTaint::Representation
|
|
2229
2250
|
|
|
@@ -2517,6 +2538,14 @@ module Google
|
|
|
2517
2538
|
end
|
|
2518
2539
|
end
|
|
2519
2540
|
|
|
2541
|
+
class RbacBindingConfig
|
|
2542
|
+
# @private
|
|
2543
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2544
|
+
property :enable_insecure_binding_system_authenticated, as: 'enableInsecureBindingSystemAuthenticated'
|
|
2545
|
+
property :enable_insecure_binding_system_unauthenticated, as: 'enableInsecureBindingSystemUnauthenticated'
|
|
2546
|
+
end
|
|
2547
|
+
end
|
|
2548
|
+
|
|
2520
2549
|
class RangeInfo
|
|
2521
2550
|
# @private
|
|
2522
2551
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2651,6 +2680,13 @@ module Google
|
|
|
2651
2680
|
end
|
|
2652
2681
|
end
|
|
2653
2682
|
|
|
2683
|
+
class SecretManagerConfig
|
|
2684
|
+
# @private
|
|
2685
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2686
|
+
property :enabled, as: 'enabled'
|
|
2687
|
+
end
|
|
2688
|
+
end
|
|
2689
|
+
|
|
2654
2690
|
class SecurityBulletinEvent
|
|
2655
2691
|
# @private
|
|
2656
2692
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2989,6 +3025,7 @@ module Google
|
|
|
2989
3025
|
|
|
2990
3026
|
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
|
2991
3027
|
|
|
3028
|
+
collection :storage_pools, as: 'storagePools'
|
|
2992
3029
|
property :tags, as: 'tags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
|
2993
3030
|
|
|
2994
3031
|
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.78.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: 2024-08-
|
|
11
|
+
date: 2024-08-25 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.78.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: []
|