google-apis-container_v1beta1 0.33.0 → 0.34.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: 5ca72c3962973b23eda7a808a7c1a6f13e8a6fa0b932393fc31570662ee7d7d2
4
- data.tar.gz: 29d2bfae6fedeb457ba70f72fa1f7ec208467ebdee6a59f4cd9a265ca8e89248
3
+ metadata.gz: d5502b52902ccf7ae815f6843a624d52043aeacf1d8edae3d3f906278a2f6be9
4
+ data.tar.gz: 783c005d030520b330cfea41a5c8f505cbeb00a3039bb3dde7f0015be0d07c2e
5
5
  SHA512:
6
- metadata.gz: e06bdec62f7155afc9a0d3a2a78f483499b6827c217dfb0cf1a64983f6128249a292abf22d878aa0154a1fc039b68d3be4a5b6c8a05e43c204c773c410c88fd5
7
- data.tar.gz: ba6b90a85a3ef3490396d1e1c22a5ce0352a0113a44fd9f3a2bf0c8eaa0227f91d5be96acd3e60cb4581a077f07f20600a65a125074e685e9728faa7942fef5f
6
+ metadata.gz: 1be601aaa64e386d959c415358abc389e5b8867aea01e8f9a93ee0b2507e09d03de12bd99315ebd1cf642512db4557c076719beb66eb3efb1f515998e3bae296
7
+ data.tar.gz: cd29729e5b7c3e831c7d49d5653ed15abe6fa213f1e5fb42663418c06a5881031565b2ee1979f377ce63d751adaf779cb2564d039382c594176a45dea8be96de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.34.0 (2022-06-24)
4
+
5
+ * Regenerated from discovery document revision 20220610
6
+ * Regenerated using generator version 0.7.0
7
+
3
8
  ### v0.33.0 (2022-06-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20220518
@@ -598,6 +598,11 @@ module Google
598
598
  # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
599
599
  attr_accessor :confidential_nodes
600
600
 
601
+ # Configuration for fine-grained cost management feature.
602
+ # Corresponds to the JSON property `costManagementConfig`
603
+ # @return [Google::Apis::ContainerV1beta1::CostManagementConfig]
604
+ attr_accessor :cost_management_config
605
+
601
606
  # [Output only] The time the cluster was created, in [RFC3339](https://www.ietf.
602
607
  # org/rfc/rfc3339.txt) text format.
603
608
  # Corresponds to the JSON property `createTime`
@@ -1015,6 +1020,7 @@ module Google
1015
1020
  @cluster_telemetry = args[:cluster_telemetry] if args.key?(:cluster_telemetry)
1016
1021
  @conditions = args[:conditions] if args.key?(:conditions)
1017
1022
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
1023
+ @cost_management_config = args[:cost_management_config] if args.key?(:cost_management_config)
1018
1024
  @create_time = args[:create_time] if args.key?(:create_time)
1019
1025
  @current_master_version = args[:current_master_version] if args.key?(:current_master_version)
1020
1026
  @current_node_count = args[:current_node_count] if args.key?(:current_node_count)
@@ -1180,6 +1186,11 @@ module Google
1180
1186
  # @return [Google::Apis::ContainerV1beta1::ClusterTelemetry]
1181
1187
  attr_accessor :desired_cluster_telemetry
1182
1188
 
1189
+ # Configuration for fine-grained cost management feature.
1190
+ # Corresponds to the JSON property `desiredCostManagementConfig`
1191
+ # @return [Google::Apis::ContainerV1beta1::CostManagementConfig]
1192
+ attr_accessor :desired_cost_management_config
1193
+
1183
1194
  # Configuration of etcd encryption.
1184
1195
  # Corresponds to the JSON property `desiredDatabaseEncryption`
1185
1196
  # @return [Google::Apis::ContainerV1beta1::DatabaseEncryption]
@@ -1419,6 +1430,7 @@ module Google
1419
1430
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1420
1431
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1421
1432
  @desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
1433
+ @desired_cost_management_config = args[:desired_cost_management_config] if args.key?(:desired_cost_management_config)
1422
1434
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
1423
1435
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
1424
1436
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
@@ -1563,6 +1575,26 @@ module Google
1563
1575
  end
1564
1576
  end
1565
1577
 
1578
+ # Configuration for fine-grained cost management feature.
1579
+ class CostManagementConfig
1580
+ include Google::Apis::Core::Hashable
1581
+
1582
+ # Whether the feature is enabled or not.
1583
+ # Corresponds to the JSON property `enabled`
1584
+ # @return [Boolean]
1585
+ attr_accessor :enabled
1586
+ alias_method :enabled?, :enabled
1587
+
1588
+ def initialize(**args)
1589
+ update!(**args)
1590
+ end
1591
+
1592
+ # Update properties of this object
1593
+ def update!(**args)
1594
+ @enabled = args[:enabled] if args.key?(:enabled)
1595
+ end
1596
+ end
1597
+
1566
1598
  # CreateClusterRequest creates a cluster.
1567
1599
  class CreateClusterRequest
1568
1600
  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.33.0"
19
+ GEM_VERSION = "0.34.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.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220518"
25
+ REVISION = "20220610"
26
26
  end
27
27
  end
28
28
  end
@@ -154,6 +154,12 @@ module Google
154
154
  include Google::Apis::Core::JsonObjectSupport
155
155
  end
156
156
 
157
+ class CostManagementConfig
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
157
163
  class CreateClusterRequest
158
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
165
 
@@ -1065,6 +1071,8 @@ module Google
1065
1071
 
1066
1072
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
1067
1073
 
1074
+ property :cost_management_config, as: 'costManagementConfig', class: Google::Apis::ContainerV1beta1::CostManagementConfig, decorator: Google::Apis::ContainerV1beta1::CostManagementConfig::Representation
1075
+
1068
1076
  property :create_time, as: 'createTime'
1069
1077
  property :current_master_version, as: 'currentMasterVersion'
1070
1078
  property :current_node_count, as: 'currentNodeCount'
@@ -1192,6 +1200,8 @@ module Google
1192
1200
 
1193
1201
  property :desired_cluster_telemetry, as: 'desiredClusterTelemetry', class: Google::Apis::ContainerV1beta1::ClusterTelemetry, decorator: Google::Apis::ContainerV1beta1::ClusterTelemetry::Representation
1194
1202
 
1203
+ property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1beta1::CostManagementConfig, decorator: Google::Apis::ContainerV1beta1::CostManagementConfig::Representation
1204
+
1195
1205
  property :desired_database_encryption, as: 'desiredDatabaseEncryption', class: Google::Apis::ContainerV1beta1::DatabaseEncryption, decorator: Google::Apis::ContainerV1beta1::DatabaseEncryption::Representation
1196
1206
 
1197
1207
  property :desired_datapath_provider, as: 'desiredDatapathProvider'
@@ -1289,6 +1299,13 @@ module Google
1289
1299
  end
1290
1300
  end
1291
1301
 
1302
+ class CostManagementConfig
1303
+ # @private
1304
+ class Representation < Google::Apis::Core::JsonRepresentation
1305
+ property :enabled, as: 'enabled'
1306
+ end
1307
+ end
1308
+
1292
1309
  class CreateClusterRequest
1293
1310
  # @private
1294
1311
  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.33.0
4
+ version: 0.34.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-06-27 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.6'
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.6'
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-container_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.34.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: []