google-apis-container_v1 0.83.0 → 0.84.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: e7a0d8ed3d7edbe0549d73bc0870d065c5737077d961bbfd14da6ff33f85c727
|
4
|
+
data.tar.gz: e07c90c3b09c98c15207700581d910bd4d23bae9c01d5391beef1c02840cb592
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '081b15ff5e0c47cd3e8d8fc8cf7c833a622d176762c673fbaa23b2db4c42aa47122f67e6b334b70a56fa7548585279ca76122ca3be5db9cee274e3527e0737d1'
|
7
|
+
data.tar.gz: fe65ff9fc12318ea898d2a5e2e8d7f4ae5dd20d0b3c227d74c2d46729b2f47c087bc052e3c4333b41f50ef285ac95a2efd9b65d53fb16622d185b04fe8665135
|
data/CHANGELOG.md
CHANGED
@@ -1656,6 +1656,11 @@ module Google
|
|
1656
1656
|
attr_accessor :desired_enable_private_endpoint
|
1657
1657
|
alias_method :desired_enable_private_endpoint?, :desired_enable_private_endpoint
|
1658
1658
|
|
1659
|
+
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
1660
|
+
# Corresponds to the JSON property `desiredEnterpriseConfig`
|
1661
|
+
# @return [Google::Apis::ContainerV1::DesiredEnterpriseConfig]
|
1662
|
+
attr_accessor :desired_enterprise_config
|
1663
|
+
|
1659
1664
|
# Fleet is the fleet configuration for the cluster.
|
1660
1665
|
# Corresponds to the JSON property `desiredFleet`
|
1661
1666
|
# @return [Google::Apis::ContainerV1::Fleet]
|
@@ -1960,6 +1965,7 @@ module Google
|
|
1960
1965
|
@desired_enable_fqdn_network_policy = args[:desired_enable_fqdn_network_policy] if args.key?(:desired_enable_fqdn_network_policy)
|
1961
1966
|
@desired_enable_multi_networking = args[:desired_enable_multi_networking] if args.key?(:desired_enable_multi_networking)
|
1962
1967
|
@desired_enable_private_endpoint = args[:desired_enable_private_endpoint] if args.key?(:desired_enable_private_endpoint)
|
1968
|
+
@desired_enterprise_config = args[:desired_enterprise_config] if args.key?(:desired_enterprise_config)
|
1963
1969
|
@desired_fleet = args[:desired_fleet] if args.key?(:desired_fleet)
|
1964
1970
|
@desired_gateway_api_config = args[:desired_gateway_api_config] if args.key?(:desired_gateway_api_config)
|
1965
1971
|
@desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
|
@@ -2494,6 +2500,25 @@ module Google
|
|
2494
2500
|
end
|
2495
2501
|
end
|
2496
2502
|
|
2503
|
+
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
2504
|
+
class DesiredEnterpriseConfig
|
2505
|
+
include Google::Apis::Core::Hashable
|
2506
|
+
|
2507
|
+
# desired_tier specifies the desired tier of the cluster.
|
2508
|
+
# Corresponds to the JSON property `desiredTier`
|
2509
|
+
# @return [String]
|
2510
|
+
attr_accessor :desired_tier
|
2511
|
+
|
2512
|
+
def initialize(**args)
|
2513
|
+
update!(**args)
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
# Update properties of this object
|
2517
|
+
def update!(**args)
|
2518
|
+
@desired_tier = args[:desired_tier] if args.key?(:desired_tier)
|
2519
|
+
end
|
2520
|
+
end
|
2521
|
+
|
2497
2522
|
# Configuration for NodeLocal DNSCache
|
2498
2523
|
class DnsCacheConfig
|
2499
2524
|
include Google::Apis::Core::Hashable
|
@@ -2539,6 +2564,11 @@ module Google
|
|
2539
2564
|
# @return [String]
|
2540
2565
|
attr_accessor :cluster_tier
|
2541
2566
|
|
2567
|
+
# desired_tier specifies the desired tier of the cluster.
|
2568
|
+
# Corresponds to the JSON property `desiredTier`
|
2569
|
+
# @return [String]
|
2570
|
+
attr_accessor :desired_tier
|
2571
|
+
|
2542
2572
|
def initialize(**args)
|
2543
2573
|
update!(**args)
|
2544
2574
|
end
|
@@ -2546,6 +2576,7 @@ module Google
|
|
2546
2576
|
# Update properties of this object
|
2547
2577
|
def update!(**args)
|
2548
2578
|
@cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
|
2579
|
+
@desired_tier = args[:desired_tier] if args.key?(:desired_tier)
|
2549
2580
|
end
|
2550
2581
|
end
|
2551
2582
|
|
@@ -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.84.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 = "20241017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class DesiredEnterpriseConfig
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class DnsCacheConfig
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -1559,6 +1565,8 @@ module Google
|
|
1559
1565
|
property :desired_enable_fqdn_network_policy, as: 'desiredEnableFqdnNetworkPolicy'
|
1560
1566
|
property :desired_enable_multi_networking, as: 'desiredEnableMultiNetworking'
|
1561
1567
|
property :desired_enable_private_endpoint, as: 'desiredEnablePrivateEndpoint'
|
1568
|
+
property :desired_enterprise_config, as: 'desiredEnterpriseConfig', class: Google::Apis::ContainerV1::DesiredEnterpriseConfig, decorator: Google::Apis::ContainerV1::DesiredEnterpriseConfig::Representation
|
1569
|
+
|
1562
1570
|
property :desired_fleet, as: 'desiredFleet', class: Google::Apis::ContainerV1::Fleet, decorator: Google::Apis::ContainerV1::Fleet::Representation
|
1563
1571
|
|
1564
1572
|
property :desired_gateway_api_config, as: 'desiredGatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
|
@@ -1785,6 +1793,13 @@ module Google
|
|
1785
1793
|
end
|
1786
1794
|
end
|
1787
1795
|
|
1796
|
+
class DesiredEnterpriseConfig
|
1797
|
+
# @private
|
1798
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1799
|
+
property :desired_tier, as: 'desiredTier'
|
1800
|
+
end
|
1801
|
+
end
|
1802
|
+
|
1788
1803
|
class DnsCacheConfig
|
1789
1804
|
# @private
|
1790
1805
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1802,6 +1817,7 @@ module Google
|
|
1802
1817
|
# @private
|
1803
1818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1804
1819
|
property :cluster_tier, as: 'clusterTier'
|
1820
|
+
property :desired_tier, as: 'desiredTier'
|
1805
1821
|
end
|
1806
1822
|
end
|
1807
1823
|
|
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.84.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-
|
11
|
+
date: 2024-11-03 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.84.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: []
|