google-apis-gkehub_v1 0.28.0 → 0.31.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: 389dac1ff497c7a495dd0d1d8abbdb18e880346e803fdb86390defa8385cc976
4
- data.tar.gz: fe561d8497613a99170db78f37cacda9c6979b7686083cdf2855761885c5f336
3
+ metadata.gz: 5394a6841040268b98865425a195d208f225d79aca05ef171ecf140197affbed
4
+ data.tar.gz: c2fb8b643598f327af376441de0baa1c89ad31584a86c9fdacad64ab52eaf0a1
5
5
  SHA512:
6
- metadata.gz: 49b534b5b5bb403f6d5254b0ca805accc0bd335eeca33361fa754838030c893d8abbb8fe941ec025130cf70aabdc76e3081c0d1dd2755869ef3faa05f8b1950b
7
- data.tar.gz: 5314cb5f0fce61a09db3b2b7bc6b39cd0514e6904ae1d7d2299e532f383dd24d4d1913d2fc61182253a7edc5e4d9a8119ff4eeed0aa0a1a779a1c399c5b52a3c
6
+ metadata.gz: 852cb7596741466686968e3e764e7ed5bff55b38c1e8069267c5750cd545a40163ab414adc300565264c75c6910723bc0dfe91cd1e84f3c503d5883a94245a99
7
+ data.tar.gz: 4f1571d3deb270de18d4287c2aac3739a42d44311009c48dc62a66c2fcd08f04ec872ecd4f234df46fd6e5b0c284c10c289058ff2f65bd69a6da2712732ae4a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.31.0 (2022-07-23)
4
+
5
+ * Regenerated from discovery document revision 20220715
6
+ * Regenerated using generator version 0.9.0
7
+
8
+ ### v0.30.0 (2022-07-03)
9
+
10
+ * Regenerated from discovery document revision 20220628
11
+ * Regenerated using generator version 0.8.0
12
+
13
+ ### v0.29.0 (2022-06-18)
14
+
15
+ * Regenerated from discovery document revision 20220613
16
+ * Regenerated using generator version 0.7.0
17
+
3
18
  ### v0.28.0 (2022-06-06)
4
19
 
5
20
  * Regenerated from discovery document revision 20220530
@@ -1143,6 +1143,13 @@ module Google
1143
1143
  # @return [Google::Apis::GkehubV1::ConfigManagementPolicyControllerMonitoring]
1144
1144
  attr_accessor :monitoring
1145
1145
 
1146
+ # Enable or disable mutation in policy controller. If true, mutation CRDs,
1147
+ # webhook and controller deployment will be deployed to the cluster.
1148
+ # Corresponds to the JSON property `mutationEnabled`
1149
+ # @return [Boolean]
1150
+ attr_accessor :mutation_enabled
1151
+ alias_method :mutation_enabled?, :mutation_enabled
1152
+
1146
1153
  # Enables the ability to use Constraint Templates that reference to objects
1147
1154
  # other than the object currently being evaluated.
1148
1155
  # Corresponds to the JSON property `referentialRulesEnabled`
@@ -1167,6 +1174,7 @@ module Google
1167
1174
  @exemptable_namespaces = args[:exemptable_namespaces] if args.key?(:exemptable_namespaces)
1168
1175
  @log_denies_enabled = args[:log_denies_enabled] if args.key?(:log_denies_enabled)
1169
1176
  @monitoring = args[:monitoring] if args.key?(:monitoring)
1177
+ @mutation_enabled = args[:mutation_enabled] if args.key?(:mutation_enabled)
1170
1178
  @referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
1171
1179
  @template_library_installed = args[:template_library_installed] if args.key?(:template_library_installed)
1172
1180
  end
@@ -2477,7 +2485,8 @@ module Google
2477
2485
  # Immutable. Self-link of the GCP resource for the GKE Multi-Cloud cluster. For
2478
2486
  # example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-
2479
2487
  # a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/
2480
- # locations/us-west1-a/azureClusters/my-cluster
2488
+ # locations/us-west1-a/azureClusters/my-cluster //gkemulticloud.googleapis.com/
2489
+ # projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
2481
2490
  # Corresponds to the JSON property `resourceLink`
2482
2491
  # @return [String]
2483
2492
  attr_accessor :resource_link
@@ -2531,6 +2540,11 @@ module Google
2531
2540
  attr_accessor :cluster_missing
2532
2541
  alias_method :cluster_missing?, :cluster_missing
2533
2542
 
2543
+ # Immutable. The on prem cluster's type.
2544
+ # Corresponds to the JSON property `clusterType`
2545
+ # @return [String]
2546
+ attr_accessor :cluster_type
2547
+
2534
2548
  # Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For
2535
2549
  # example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/
2536
2550
  # vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/
@@ -2547,6 +2561,7 @@ module Google
2547
2561
  def update!(**args)
2548
2562
  @admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
2549
2563
  @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
2564
+ @cluster_type = args[:cluster_type] if args.key?(:cluster_type)
2550
2565
  @resource_link = args[:resource_link] if args.key?(:resource_link)
2551
2566
  end
2552
2567
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1
18
18
  # Version of the google-apis-gkehub_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.5.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220530"
25
+ REVISION = "20220715"
26
26
  end
27
27
  end
28
28
  end
@@ -852,6 +852,7 @@ module Google
852
852
  property :log_denies_enabled, as: 'logDeniesEnabled'
853
853
  property :monitoring, as: 'monitoring', class: Google::Apis::GkehubV1::ConfigManagementPolicyControllerMonitoring, decorator: Google::Apis::GkehubV1::ConfigManagementPolicyControllerMonitoring::Representation
854
854
 
855
+ property :mutation_enabled, as: 'mutationEnabled'
855
856
  property :referential_rules_enabled, as: 'referentialRulesEnabled'
856
857
  property :template_library_installed, as: 'templateLibraryInstalled'
857
858
  end
@@ -1240,6 +1241,7 @@ module Google
1240
1241
  class Representation < Google::Apis::Core::JsonRepresentation
1241
1242
  property :admin_cluster, as: 'adminCluster'
1242
1243
  property :cluster_missing, as: 'clusterMissing'
1244
+ property :cluster_type, as: 'clusterType'
1243
1245
  property :resource_link, as: 'resourceLink'
1244
1246
  end
1245
1247
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.31.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: 2022-06-13 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.5'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.5'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-gkehub_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.31.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []