google-apis-gkehub_v1alpha 0.4.0 → 0.5.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: b57d6435d08c6059e411f28bf7af01795e4c616d5333ef3100fd770c63915c15
4
- data.tar.gz: f43ecbb5eeb6dd52d9fa96e84f3a7a3b3da2451904a5aaffa927cc3f7404dabe
3
+ metadata.gz: e776eadbb093ee7fdb0d9a50e890d132d1e9529c1dde7f4d57e805c29d4adafb
4
+ data.tar.gz: 7304ee5add423e98da7da59c423621c5cb78ba9ba17aa744f2dbf9539d56105b
5
5
  SHA512:
6
- metadata.gz: dfbaa2c0c8fb5b2eed876cc4a5410244cb53f738d62d962f3508b805dcd3e5671848c17246d4ca7166caa9604cbdabb97797332c56a9c0310495453459187e18
7
- data.tar.gz: 199b4c4e54ccecf51acc864ffd23510ea7a5d2622188c3c38747fd1313d4ff5ab14ae4d9f0ae508df7df648f074a4b982832cf3b3fb394657d5d4b1e4c04949b
6
+ metadata.gz: aab0d2a956304833d149335f3b957533c10a942beb6e7b02314c30dda0f484e649cfeb5aa6f4f1d4d26a388d95cc216cc527c6a128250feff9b09980ac41772c
7
+ data.tar.gz: dcc9c114e509e84997e748677cf085722bfa29ac83939a5071bac2965d4d360992f328a6a02196f3b6b7dcfa94f75c6658fd62a546a3112952f97b2188717306
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.5.0 (2021-05-26)
4
+
5
+ * Regenerated from discovery document revision 20210521
6
+
3
7
  ### v0.4.0 (2021-05-19)
4
8
 
5
9
  * Unspecified changes
@@ -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.4.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 = "20210507"
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.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-24 00:00:00.000000000 Z
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.4.0
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: []