google-apis-container_v1beta1 0.55.0 → 0.56.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: 5b5aa3f8d41821db6c8f59f541e240eabf93eb417fc4e24d61ae05594b1a6602
|
4
|
+
data.tar.gz: 3e6c70be4b1e4786aa2e63ad75160f66678d08d38fb822cb167165bb0dd35839
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73a32aaf429d30490af43d0c2c5c440dd37f4f0993c7e918124124a2ee7e989a72eff4b364337fa1ddf3a17905e27557cdf0c7f946dd01a6636095f5e154b31b
|
7
|
+
data.tar.gz: b94b767601edad00d17023e79ace5c8087d80b6d1df612d5961c786d1519eb42f5f3f2f95e9e574470e9da519636ef31b9bd9c51efb70557cea00e4c9f8aca5e
|
data/CHANGELOG.md
CHANGED
@@ -655,6 +655,11 @@ module Google
|
|
655
655
|
# @return [String]
|
656
656
|
attr_accessor :evaluation_mode
|
657
657
|
|
658
|
+
# Optional. Binauthz policies that apply to this cluster.
|
659
|
+
# Corresponds to the JSON property `policyBindings`
|
660
|
+
# @return [Array<Google::Apis::ContainerV1beta1::PolicyBinding>]
|
661
|
+
attr_accessor :policy_bindings
|
662
|
+
|
658
663
|
def initialize(**args)
|
659
664
|
update!(**args)
|
660
665
|
end
|
@@ -663,6 +668,7 @@ module Google
|
|
663
668
|
def update!(**args)
|
664
669
|
@enabled = args[:enabled] if args.key?(:enabled)
|
665
670
|
@evaluation_mode = args[:evaluation_mode] if args.key?(:evaluation_mode)
|
671
|
+
@policy_bindings = args[:policy_bindings] if args.key?(:policy_bindings)
|
666
672
|
end
|
667
673
|
end
|
668
674
|
|
@@ -5311,6 +5317,27 @@ module Google
|
|
5311
5317
|
end
|
5312
5318
|
end
|
5313
5319
|
|
5320
|
+
# Binauthz policy that applies to this cluster.
|
5321
|
+
class PolicyBinding
|
5322
|
+
include Google::Apis::Core::Hashable
|
5323
|
+
|
5324
|
+
# The relative resource name of the binauthz platform policy to audit. GKE
|
5325
|
+
# platform policies have the following format: `projects/`project_number`/
|
5326
|
+
# platforms/gke/policies/`policy_id``.
|
5327
|
+
# Corresponds to the JSON property `name`
|
5328
|
+
# @return [String]
|
5329
|
+
attr_accessor :name
|
5330
|
+
|
5331
|
+
def initialize(**args)
|
5332
|
+
update!(**args)
|
5333
|
+
end
|
5334
|
+
|
5335
|
+
# Update properties of this object
|
5336
|
+
def update!(**args)
|
5337
|
+
@name = args[:name] if args.key?(:name)
|
5338
|
+
end
|
5339
|
+
end
|
5340
|
+
|
5314
5341
|
# Configuration options for private clusters.
|
5315
5342
|
class PrivateClusterConfig
|
5316
5343
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1beta1
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.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 = "20230802"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -742,6 +742,12 @@ module Google
|
|
742
742
|
include Google::Apis::Core::JsonObjectSupport
|
743
743
|
end
|
744
744
|
|
745
|
+
class PolicyBinding
|
746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
|
+
|
748
|
+
include Google::Apis::Core::JsonObjectSupport
|
749
|
+
end
|
750
|
+
|
745
751
|
class PrivateClusterConfig
|
746
752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
753
|
|
@@ -1269,6 +1275,8 @@ module Google
|
|
1269
1275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1270
1276
|
property :enabled, as: 'enabled'
|
1271
1277
|
property :evaluation_mode, as: 'evaluationMode'
|
1278
|
+
collection :policy_bindings, as: 'policyBindings', class: Google::Apis::ContainerV1beta1::PolicyBinding, decorator: Google::Apis::ContainerV1beta1::PolicyBinding::Representation
|
1279
|
+
|
1272
1280
|
end
|
1273
1281
|
end
|
1274
1282
|
|
@@ -2501,6 +2509,13 @@ module Google
|
|
2501
2509
|
end
|
2502
2510
|
end
|
2503
2511
|
|
2512
|
+
class PolicyBinding
|
2513
|
+
# @private
|
2514
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2515
|
+
property :name, as: 'name'
|
2516
|
+
end
|
2517
|
+
end
|
2518
|
+
|
2504
2519
|
class PrivateClusterConfig
|
2505
2520
|
# @private
|
2506
2521
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.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-08-13 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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.56.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|