google-apis-container_v1 0.78.0 → 0.79.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: 7ad3a80cab7b61bae0aa46f32b7e4167da7ab3ff9254d13a5bd5324d23501c4d
4
- data.tar.gz: afd1febb70e7a68e960dbf27fd8858962c41100f845d219a19dac6fb2fe8405a
3
+ metadata.gz: 48d5d5c8eedfbbfd5c89271ecfb17a2df9976cfe0ded1a22a069bd4ea3575429
4
+ data.tar.gz: '0946f89e7cee4b3d9751441ec9e6b06825105e9c92805be35ec8fb7d245f8e85'
5
5
  SHA512:
6
- metadata.gz: cb6f4cd597e2b884fa1ebfc740b857deb430ac783e1f36452899006eeb6d668b6ca7dd598381ae78835c290e1f3a2846b1ddebf1c5d8d87b493fd4116d4fe4d5
7
- data.tar.gz: 37abd119964bbde8725d9bedac1025b603be646d0c20bbe97956e09704a6472c3b678ad95abf93c68d82646e1353ceac65cdbdf275e4eeaa104b32db9316c58b
6
+ metadata.gz: 7e88b62c7a0e8fba966987da120ddcc634a9ab3effb702c19c0513fb58bab67c86145e03580cc1fdf77ec7d18cbaf7e7adb4a944cf944e1fb12038150a092517
7
+ data.tar.gz: 2de4cb8c24a1eb4588516dae49b2f77d048a6d94e6dc31106ff05ca35a9f99085e23eb72dd560ef4482d1c532f2af523c439593f7f54c67649d421587112923a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.79.0 (2024-09-15)
4
+
5
+ * Regenerated from discovery document revision 20240814
6
+
3
7
  ### v0.78.0 (2024-08-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20240806
data/OVERVIEW.md CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
79
79
 
80
80
  **For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
81
81
 
82
- The [product documentation](https://cloud.google.com/container-engine/) may provide guidance regarding the preferred client library to use.
82
+ The [product documentation](https://cloud.google.com/kubernetes-engine/docs/) may provide guidance regarding the preferred client library to use.
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
@@ -932,6 +932,12 @@ module Google
932
932
  # @return [String]
933
933
  attr_accessor :cluster_ipv4_cidr
934
934
 
935
+ # CompliancePostureConfig defines the settings needed to enable/disable features
936
+ # for the Compliance Posture.
937
+ # Corresponds to the JSON property `compliancePostureConfig`
938
+ # @return [Google::Apis::ContainerV1::CompliancePostureConfig]
939
+ attr_accessor :compliance_posture_config
940
+
935
941
  # Which conditions caused the current cluster state.
936
942
  # Corresponds to the JSON property `conditions`
937
943
  # @return [Array<Google::Apis::ContainerV1::StatusCondition>]
@@ -1369,6 +1375,7 @@ module Google
1369
1375
  @autoscaling = args[:autoscaling] if args.key?(:autoscaling)
1370
1376
  @binary_authorization = args[:binary_authorization] if args.key?(:binary_authorization)
1371
1377
  @cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
1378
+ @compliance_posture_config = args[:compliance_posture_config] if args.key?(:compliance_posture_config)
1372
1379
  @conditions = args[:conditions] if args.key?(:conditions)
1373
1380
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
1374
1381
  @cost_management_config = args[:cost_management_config] if args.key?(:cost_management_config)
@@ -1546,6 +1553,12 @@ module Google
1546
1553
  # @return [Google::Apis::ContainerV1::ClusterAutoscaling]
1547
1554
  attr_accessor :desired_cluster_autoscaling
1548
1555
 
1556
+ # CompliancePostureConfig defines the settings needed to enable/disable features
1557
+ # for the Compliance Posture.
1558
+ # Corresponds to the JSON property `desiredCompliancePostureConfig`
1559
+ # @return [Google::Apis::ContainerV1::CompliancePostureConfig]
1560
+ attr_accessor :desired_compliance_posture_config
1561
+
1549
1562
  # ContainerdConfig contains configuration to customize containerd.
1550
1563
  # Corresponds to the JSON property `desiredContainerdConfig`
1551
1564
  # @return [Google::Apis::ContainerV1::ContainerdConfig]
@@ -1886,6 +1899,7 @@ module Google
1886
1899
  @desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
1887
1900
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1888
1901
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1902
+ @desired_compliance_posture_config = args[:desired_compliance_posture_config] if args.key?(:desired_compliance_posture_config)
1889
1903
  @desired_containerd_config = args[:desired_containerd_config] if args.key?(:desired_containerd_config)
1890
1904
  @desired_cost_management_config = args[:desired_cost_management_config] if args.key?(:desired_cost_management_config)
1891
1905
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
@@ -1999,6 +2013,51 @@ module Google
1999
2013
  end
2000
2014
  end
2001
2015
 
2016
+ # CompliancePostureConfig defines the settings needed to enable/disable features
2017
+ # for the Compliance Posture.
2018
+ class CompliancePostureConfig
2019
+ include Google::Apis::Core::Hashable
2020
+
2021
+ # List of enabled compliance standards.
2022
+ # Corresponds to the JSON property `complianceStandards`
2023
+ # @return [Array<Google::Apis::ContainerV1::ComplianceStandard>]
2024
+ attr_accessor :compliance_standards
2025
+
2026
+ # Defines the enablement mode for Compliance Posture.
2027
+ # Corresponds to the JSON property `mode`
2028
+ # @return [String]
2029
+ attr_accessor :mode
2030
+
2031
+ def initialize(**args)
2032
+ update!(**args)
2033
+ end
2034
+
2035
+ # Update properties of this object
2036
+ def update!(**args)
2037
+ @compliance_standards = args[:compliance_standards] if args.key?(:compliance_standards)
2038
+ @mode = args[:mode] if args.key?(:mode)
2039
+ end
2040
+ end
2041
+
2042
+ # Defines the details of a compliance standard.
2043
+ class ComplianceStandard
2044
+ include Google::Apis::Core::Hashable
2045
+
2046
+ # Name of the compliance standard.
2047
+ # Corresponds to the JSON property `standard`
2048
+ # @return [String]
2049
+ attr_accessor :standard
2050
+
2051
+ def initialize(**args)
2052
+ update!(**args)
2053
+ end
2054
+
2055
+ # Update properties of this object
2056
+ def update!(**args)
2057
+ @standard = args[:standard] if args.key?(:standard)
2058
+ end
2059
+ end
2060
+
2002
2061
  # ConfidentialNodes is configuration for the confidential nodes feature, which
2003
2062
  # makes nodes run on confidential VMs.
2004
2063
  class ConfidentialNodes
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1
18
18
  # Version of the google-apis-container_v1 gem
19
- GEM_VERSION = "0.78.0"
19
+ GEM_VERSION = "0.79.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240806"
25
+ REVISION = "20240814"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,18 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class CompliancePostureConfig
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class ComplianceStandard
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
199
211
  class ConfidentialNodes
200
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
213
 
@@ -1350,6 +1362,8 @@ module Google
1350
1362
  property :binary_authorization, as: 'binaryAuthorization', class: Google::Apis::ContainerV1::BinaryAuthorization, decorator: Google::Apis::ContainerV1::BinaryAuthorization::Representation
1351
1363
 
1352
1364
  property :cluster_ipv4_cidr, as: 'clusterIpv4Cidr'
1365
+ property :compliance_posture_config, as: 'compliancePostureConfig', class: Google::Apis::ContainerV1::CompliancePostureConfig, decorator: Google::Apis::ContainerV1::CompliancePostureConfig::Representation
1366
+
1353
1367
  collection :conditions, as: 'conditions', class: Google::Apis::ContainerV1::StatusCondition, decorator: Google::Apis::ContainerV1::StatusCondition::Representation
1354
1368
 
1355
1369
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
@@ -1488,6 +1502,8 @@ module Google
1488
1502
 
1489
1503
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1::ClusterAutoscaling::Representation
1490
1504
 
1505
+ property :desired_compliance_posture_config, as: 'desiredCompliancePostureConfig', class: Google::Apis::ContainerV1::CompliancePostureConfig, decorator: Google::Apis::ContainerV1::CompliancePostureConfig::Representation
1506
+
1491
1507
  property :desired_containerd_config, as: 'desiredContainerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
1492
1508
 
1493
1509
  property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
@@ -1597,6 +1613,22 @@ module Google
1597
1613
  end
1598
1614
  end
1599
1615
 
1616
+ class CompliancePostureConfig
1617
+ # @private
1618
+ class Representation < Google::Apis::Core::JsonRepresentation
1619
+ collection :compliance_standards, as: 'complianceStandards', class: Google::Apis::ContainerV1::ComplianceStandard, decorator: Google::Apis::ContainerV1::ComplianceStandard::Representation
1620
+
1621
+ property :mode, as: 'mode'
1622
+ end
1623
+ end
1624
+
1625
+ class ComplianceStandard
1626
+ # @private
1627
+ class Representation < Google::Apis::Core::JsonRepresentation
1628
+ property :standard, as: 'standard'
1629
+ end
1630
+ end
1631
+
1600
1632
  class ConfidentialNodes
1601
1633
  # @private
1602
1634
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -31,7 +31,7 @@ module Google
31
31
  # Container = Google::Apis::ContainerV1 # Alias the module
32
32
  # service = Container::ContainerService.new
33
33
  #
34
- # @see https://cloud.google.com/container-engine/
34
+ # @see https://cloud.google.com/kubernetes-engine/docs/
35
35
  class ContainerService < Google::Apis::Core::BaseService
36
36
  DEFAULT_ENDPOINT_TEMPLATE = "https://container.$UNIVERSE_DOMAIN$/"
37
37
 
@@ -24,7 +24,7 @@ module Google
24
24
  # Builds and manages container-based applications, powered by the open source
25
25
  # Kubernetes technology.
26
26
  #
27
- # @see https://cloud.google.com/container-engine/
27
+ # @see https://cloud.google.com/kubernetes-engine/docs/
28
28
  module ContainerV1
29
29
  # Version of the Kubernetes Engine API this client connects to.
30
30
  # This is NOT the gem version.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.78.0
4
+ version: 0.79.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: 2024-08-25 00:00:00.000000000 Z
11
+ date: 2024-09-15 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.79.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
63
63
  post_install_message:
64
64
  rdoc_options: []