google-apis-gkehub_v1alpha 0.4.0 → 0.5.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: e776eadbb093ee7fdb0d9a50e890d132d1e9529c1dde7f4d57e805c29d4adafb
|
4
|
+
data.tar.gz: 7304ee5add423e98da7da59c423621c5cb78ba9ba17aa744f2dbf9539d56105b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aab0d2a956304833d149335f3b957533c10a942beb6e7b02314c30dda0f484e649cfeb5aa6f4f1d4d26a388d95cc216cc527c6a128250feff9b09980ac41772c
|
7
|
+
data.tar.gz: dcc9c114e509e84997e748677cf085722bfa29ac83939a5071bac2965d4d360992f328a6a02196f3b6b7dcfa94f75c6658fd62a546a3112952f97b2188717306
|
data/CHANGELOG.md
CHANGED
@@ -524,6 +524,11 @@ module Google
|
|
524
524
|
# @return [String]
|
525
525
|
attr_accessor :gatekeeper_controller_manager_state
|
526
526
|
|
527
|
+
# Status of the pod serving the mutation webhook.
|
528
|
+
# Corresponds to the JSON property `gatekeeperMutation`
|
529
|
+
# @return [String]
|
530
|
+
attr_accessor :gatekeeper_mutation
|
531
|
+
|
527
532
|
def initialize(**args)
|
528
533
|
update!(**args)
|
529
534
|
end
|
@@ -532,6 +537,7 @@ module Google
|
|
532
537
|
def update!(**args)
|
533
538
|
@gatekeeper_audit = args[:gatekeeper_audit] if args.key?(:gatekeeper_audit)
|
534
539
|
@gatekeeper_controller_manager_state = args[:gatekeeper_controller_manager_state] if args.key?(:gatekeeper_controller_manager_state)
|
540
|
+
@gatekeeper_mutation = args[:gatekeeper_mutation] if args.key?(:gatekeeper_mutation)
|
535
541
|
end
|
536
542
|
end
|
537
543
|
|
@@ -920,6 +926,12 @@ module Google
|
|
920
926
|
attr_accessor :log_denies_enabled
|
921
927
|
alias_method :log_denies_enabled?, :log_denies_enabled
|
922
928
|
|
929
|
+
# Enable users to try out mutation for PolicyController.
|
930
|
+
# Corresponds to the JSON property `mutationEnabled`
|
931
|
+
# @return [Boolean]
|
932
|
+
attr_accessor :mutation_enabled
|
933
|
+
alias_method :mutation_enabled?, :mutation_enabled
|
934
|
+
|
923
935
|
# Enables the ability to use Constraint Templates that reference to objects
|
924
936
|
# other than the object currently being evaluated.
|
925
937
|
# Corresponds to the JSON property `referentialRulesEnabled`
|
@@ -943,6 +955,7 @@ module Google
|
|
943
955
|
@enabled = args[:enabled] if args.key?(:enabled)
|
944
956
|
@exemptable_namespaces = args[:exemptable_namespaces] if args.key?(:exemptable_namespaces)
|
945
957
|
@log_denies_enabled = args[:log_denies_enabled] if args.key?(:log_denies_enabled)
|
958
|
+
@mutation_enabled = args[:mutation_enabled] if args.key?(:mutation_enabled)
|
946
959
|
@referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
|
947
960
|
@template_library_installed = args[:template_library_installed] if args.key?(:template_library_installed)
|
948
961
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1alpha
|
18
18
|
# Version of the google-apis-gkehub_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -502,6 +502,7 @@ module Google
|
|
502
502
|
class Representation < Google::Apis::Core::JsonRepresentation
|
503
503
|
property :gatekeeper_audit, as: 'gatekeeperAudit'
|
504
504
|
property :gatekeeper_controller_manager_state, as: 'gatekeeperControllerManagerState'
|
505
|
+
property :gatekeeper_mutation, as: 'gatekeeperMutation'
|
505
506
|
end
|
506
507
|
end
|
507
508
|
|
@@ -621,6 +622,7 @@ module Google
|
|
621
622
|
property :enabled, as: 'enabled'
|
622
623
|
collection :exemptable_namespaces, as: 'exemptableNamespaces'
|
623
624
|
property :log_denies_enabled, as: 'logDeniesEnabled'
|
625
|
+
property :mutation_enabled, as: 'mutationEnabled'
|
624
626
|
property :referential_rules_enabled, as: 'referentialRulesEnabled'
|
625
627
|
property :template_library_installed, as: 'templateLibraryInstalled'
|
626
628
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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: 2021-05-
|
11
|
+
date: 2021-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1alpha/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.5.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1alpha
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|