google-apis-container_v1 0.77.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
@@ -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
|
@@ -1411,6 +1417,7 @@ module Google
|
|
1411
1417
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
1412
1418
|
@parent_product_config = args[:parent_product_config] if args.key?(:parent_product_config)
|
1413
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)
|
1414
1421
|
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
1415
1422
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
1416
1423
|
@resource_usage_export_config = args[:resource_usage_export_config] if args.key?(:resource_usage_export_config)
|
@@ -1790,6 +1797,12 @@ module Google
|
|
1790
1797
|
# @return [String]
|
1791
1798
|
attr_accessor :desired_private_ipv6_google_access
|
1792
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
|
+
|
1793
1806
|
# ReleaseChannel indicates which release channel a cluster is subscribed to.
|
1794
1807
|
# Release channels are arranged in order of risk. When a cluster is subscribed
|
1795
1808
|
# to a release channel, Google maintains both the master version and the node
|
@@ -1913,6 +1926,7 @@ module Google
|
|
1913
1926
|
@desired_parent_product_config = args[:desired_parent_product_config] if args.key?(:desired_parent_product_config)
|
1914
1927
|
@desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
|
1915
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)
|
1916
1930
|
@desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
|
1917
1931
|
@desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
|
1918
1932
|
@desired_secret_manager_config = args[:desired_secret_manager_config] if args.key?(:desired_secret_manager_config)
|
@@ -3555,7 +3569,7 @@ module Google
|
|
3555
3569
|
include Google::Apis::Core::Hashable
|
3556
3570
|
|
3557
3571
|
# Output only. Base64-encoded public certificate used by clients to authenticate
|
3558
|
-
# to the cluster endpoint.
|
3572
|
+
# to the cluster endpoint. Issued only if client_certificate_config is set.
|
3559
3573
|
# Corresponds to the JSON property `clientCertificate`
|
3560
3574
|
# @return [String]
|
3561
3575
|
attr_accessor :client_certificate
|
@@ -5467,6 +5481,36 @@ module Google
|
|
5467
5481
|
end
|
5468
5482
|
end
|
5469
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
|
+
|
5470
5514
|
# RangeInfo contains the range name and the range utilization by this cluster.
|
5471
5515
|
class RangeInfo
|
5472
5516
|
include Google::Apis::Core::Hashable
|
@@ -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
|
|
@@ -1418,6 +1424,8 @@ module Google
|
|
1418
1424
|
|
1419
1425
|
property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
|
1420
1426
|
|
1427
|
+
property :rbac_binding_config, as: 'rbacBindingConfig', class: Google::Apis::ContainerV1::RbacBindingConfig, decorator: Google::Apis::ContainerV1::RbacBindingConfig::Representation
|
1428
|
+
|
1421
1429
|
property :release_channel, as: 'releaseChannel', class: Google::Apis::ContainerV1::ReleaseChannel, decorator: Google::Apis::ContainerV1::ReleaseChannel::Representation
|
1422
1430
|
|
1423
1431
|
hash :resource_labels, as: 'resourceLabels'
|
@@ -1546,6 +1554,8 @@ module Google
|
|
1546
1554
|
property :desired_private_cluster_config, as: 'desiredPrivateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
|
1547
1555
|
|
1548
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
|
+
|
1549
1559
|
property :desired_release_channel, as: 'desiredReleaseChannel', class: Google::Apis::ContainerV1::ReleaseChannel, decorator: Google::Apis::ContainerV1::ReleaseChannel::Representation
|
1550
1560
|
|
1551
1561
|
property :desired_resource_usage_export_config, as: 'desiredResourceUsageExportConfig', class: Google::Apis::ContainerV1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1::ResourceUsageExportConfig::Representation
|
@@ -2528,6 +2538,14 @@ module Google
|
|
2528
2538
|
end
|
2529
2539
|
end
|
2530
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
|
+
|
2531
2549
|
class RangeInfo
|
2532
2550
|
# @private
|
2533
2551
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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: []
|