google-apis-container_v1 0.100.0 → 0.102.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: 9a86e971d9b2d7a5056e04a8d8a29496186b3eccb572a9edb006e68af496a1cb
4
- data.tar.gz: 3ff7cdc759045fbdfb3b6809e13cd714ac8c846f79bce01ba2c0ed4a52b06cff
3
+ metadata.gz: ed5b0555877d3a1665d644f4097074bcbb3779cbb97074e053ddb4786e4737df
4
+ data.tar.gz: 309eaa47d0027e6604973771fb21b1c024cb0851bb88e7802f251a9adfd50315
5
5
  SHA512:
6
- metadata.gz: cbd9370811cf62cc219aedc88e12a1a0b51bb614bb959a8eafb9956cdb7ea81398aee46f057abe7d77f9a24ddd21f13e012833d167291d2210c1412623bf1d90
7
- data.tar.gz: 8415ed58ec893fcc2466dd89f3deed5b0c57aa4ef1b390e7e5b35d4523595c0b9364321f0fbbd3002f039a99f0494f47eac79277d0e122ca4b77a82d0f312bb0
6
+ metadata.gz: 4c8284966a89a610c918914dd33dea38f9af3fbab7c2fd4d3d81a1902da63076cd8aab48716d4264c9cc046ed4ec9f74595eb678b98ea73d8ba13444fd897c09
7
+ data.tar.gz: 36d9f44c02eafc5c48281fed9cf62df732b999d1b56d14d571d066dfb335428c0f0ecaff3e43b60fc6dfc9e59d3d0a19ca68b5b35da4a55de94d0d77a31270b4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.102.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250807
6
+
7
+ ### v0.101.0 (2025-08-03)
8
+
9
+ * Regenerated from discovery document revision 20250725
10
+
3
11
  ### v0.100.0 (2025-07-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20250701
@@ -427,12 +427,19 @@ module Google
427
427
  class AutoIpamConfig
428
428
  include Google::Apis::Core::Hashable
429
429
 
430
+ # The flag that enables Auto IPAM on this cluster
431
+ # Corresponds to the JSON property `enabled`
432
+ # @return [Boolean]
433
+ attr_accessor :enabled
434
+ alias_method :enabled?, :enabled
435
+
430
436
  def initialize(**args)
431
437
  update!(**args)
432
438
  end
433
439
 
434
440
  # Update properties of this object
435
441
  def update!(**args)
442
+ @enabled = args[:enabled] if args.key?(:enabled)
436
443
  end
437
444
  end
438
445
 
@@ -495,6 +502,12 @@ module Google
495
502
  attr_accessor :enabled
496
503
  alias_method :enabled?, :enabled
497
504
 
505
+ # PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
506
+ # the cluster.
507
+ # Corresponds to the JSON property `privilegedAdmissionConfig`
508
+ # @return [Google::Apis::ContainerV1::PrivilegedAdmissionConfig]
509
+ attr_accessor :privileged_admission_config
510
+
498
511
  # WorkloadPolicyConfig is the configuration related to GCW workload policy
499
512
  # Corresponds to the JSON property `workloadPolicyConfig`
500
513
  # @return [Google::Apis::ContainerV1::WorkloadPolicyConfig]
@@ -507,6 +520,7 @@ module Google
507
520
  # Update properties of this object
508
521
  def update!(**args)
509
522
  @enabled = args[:enabled] if args.key?(:enabled)
523
+ @privileged_admission_config = args[:privileged_admission_config] if args.key?(:privileged_admission_config)
510
524
  @workload_policy_config = args[:workload_policy_config] if args.key?(:workload_policy_config)
511
525
  end
512
526
  end
@@ -1695,6 +1709,11 @@ module Google
1695
1709
  # @return [String]
1696
1710
  attr_accessor :autoscaling_profile
1697
1711
 
1712
+ # DefaultComputeClassConfig defines default compute class configuration.
1713
+ # Corresponds to the JSON property `defaultComputeClassConfig`
1714
+ # @return [Google::Apis::ContainerV1::DefaultComputeClassConfig]
1715
+ attr_accessor :default_compute_class_config
1716
+
1698
1717
  # Enables automatic node pool creation and deletion.
1699
1718
  # Corresponds to the JSON property `enableNodeAutoprovisioning`
1700
1719
  # @return [Boolean]
@@ -1716,6 +1735,7 @@ module Google
1716
1735
  @autoprovisioning_locations = args[:autoprovisioning_locations] if args.key?(:autoprovisioning_locations)
1717
1736
  @autoprovisioning_node_pool_defaults = args[:autoprovisioning_node_pool_defaults] if args.key?(:autoprovisioning_node_pool_defaults)
1718
1737
  @autoscaling_profile = args[:autoscaling_profile] if args.key?(:autoscaling_profile)
1738
+ @default_compute_class_config = args[:default_compute_class_config] if args.key?(:default_compute_class_config)
1719
1739
  @enable_node_autoprovisioning = args[:enable_node_autoprovisioning] if args.key?(:enable_node_autoprovisioning)
1720
1740
  @resource_limits = args[:resource_limits] if args.key?(:resource_limits)
1721
1741
  end
@@ -2800,6 +2820,26 @@ module Google
2800
2820
  end
2801
2821
  end
2802
2822
 
2823
+ # DefaultComputeClassConfig defines default compute class configuration.
2824
+ class DefaultComputeClassConfig
2825
+ include Google::Apis::Core::Hashable
2826
+
2827
+ # Enables default compute class.
2828
+ # Corresponds to the JSON property `enabled`
2829
+ # @return [Boolean]
2830
+ attr_accessor :enabled
2831
+ alias_method :enabled?, :enabled
2832
+
2833
+ def initialize(**args)
2834
+ update!(**args)
2835
+ end
2836
+
2837
+ # Update properties of this object
2838
+ def update!(**args)
2839
+ @enabled = args[:enabled] if args.key?(:enabled)
2840
+ end
2841
+ end
2842
+
2803
2843
  # DefaultSnatStatus contains the desired state of whether default sNAT should be
2804
2844
  # disabled on the cluster.
2805
2845
  class DefaultSnatStatus
@@ -3226,6 +3266,11 @@ module Google
3226
3266
  # @return [String]
3227
3267
  attr_accessor :membership
3228
3268
 
3269
+ # The type of the cluster's fleet membership.
3270
+ # Corresponds to the JSON property `membershipType`
3271
+ # @return [String]
3272
+ attr_accessor :membership_type
3273
+
3229
3274
  # Output only. Whether the cluster has been registered through the fleet API.
3230
3275
  # Corresponds to the JSON property `preRegistered`
3231
3276
  # @return [Boolean]
@@ -3246,6 +3291,7 @@ module Google
3246
3291
  # Update properties of this object
3247
3292
  def update!(**args)
3248
3293
  @membership = args[:membership] if args.key?(:membership)
3294
+ @membership_type = args[:membership_type] if args.key?(:membership_type)
3249
3295
  @pre_registered = args[:pre_registered] if args.key?(:pre_registered)
3250
3296
  @project = args[:project] if args.key?(:project)
3251
3297
  end
@@ -4381,7 +4427,10 @@ module Google
4381
4427
  include Google::Apis::Core::Hashable
4382
4428
 
4383
4429
  # If set to true, the Lustre CSI driver will install Lustre kernel modules using
4384
- # port 6988.
4430
+ # port 6988. This serves as a workaround for a port conflict with the gke-
4431
+ # metadata-server. This field is required ONLY under the following conditions: 1.
4432
+ # The GKE node version is older than 1.33.2-gke.4655000. 2. You're connecting
4433
+ # to a Lustre instance that has the 'gke-support-enabled' flag.
4385
4434
  # Corresponds to the JSON property `enableLegacyLustrePort`
4386
4435
  # @return [Boolean]
4387
4436
  attr_accessor :enable_legacy_lustre_port
@@ -6739,6 +6788,31 @@ module Google
6739
6788
  end
6740
6789
  end
6741
6790
 
6791
+ # PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
6792
+ # the cluster.
6793
+ class PrivilegedAdmissionConfig
6794
+ include Google::Apis::Core::Hashable
6795
+
6796
+ # The customer allowlist Cloud Storage paths for the cluster. These paths are
6797
+ # used with the `--autopilot-privileged-admission` flag to authorize privileged
6798
+ # workloads in Autopilot clusters. Paths can be GKE-owned, in the format `gke:///
6799
+ # /`, or customer-owned, in the format `gs:///`. Wildcards (`*`) are supported
6800
+ # to authorize all allowlists under specific paths or directories. Example: `gs:/
6801
+ # /my-bucket/*` will authorize all allowlists under the `my-bucket` bucket.
6802
+ # Corresponds to the JSON property `allowlistPaths`
6803
+ # @return [Array<String>]
6804
+ attr_accessor :allowlist_paths
6805
+
6806
+ def initialize(**args)
6807
+ update!(**args)
6808
+ end
6809
+
6810
+ # Update properties of this object
6811
+ def update!(**args)
6812
+ @allowlist_paths = args[:allowlist_paths] if args.key?(:allowlist_paths)
6813
+ end
6814
+ end
6815
+
6742
6816
  # Pub/Sub specific notification config.
6743
6817
  class PubSub
6744
6818
  include Google::Apis::Core::Hashable
@@ -7229,6 +7303,33 @@ module Google
7229
7303
  end
7230
7304
  end
7231
7305
 
7306
+ # RotationConfig is config for secret manager auto rotation.
7307
+ class RotationConfig
7308
+ include Google::Apis::Core::Hashable
7309
+
7310
+ # Whether the rotation is enabled.
7311
+ # Corresponds to the JSON property `enabled`
7312
+ # @return [Boolean]
7313
+ attr_accessor :enabled
7314
+ alias_method :enabled?, :enabled
7315
+
7316
+ # The interval between two consecutive rotations. Default rotation interval is 2
7317
+ # minutes.
7318
+ # Corresponds to the JSON property `rotationInterval`
7319
+ # @return [String]
7320
+ attr_accessor :rotation_interval
7321
+
7322
+ def initialize(**args)
7323
+ update!(**args)
7324
+ end
7325
+
7326
+ # Update properties of this object
7327
+ def update!(**args)
7328
+ @enabled = args[:enabled] if args.key?(:enabled)
7329
+ @rotation_interval = args[:rotation_interval] if args.key?(:rotation_interval)
7330
+ end
7331
+ end
7332
+
7232
7333
  # SandboxConfig contains configurations of the sandbox to use for the node.
7233
7334
  class SandboxConfig
7234
7335
  include Google::Apis::Core::Hashable
@@ -7298,6 +7399,11 @@ module Google
7298
7399
  attr_accessor :enabled
7299
7400
  alias_method :enabled?, :enabled
7300
7401
 
7402
+ # RotationConfig is config for secret manager auto rotation.
7403
+ # Corresponds to the JSON property `rotationConfig`
7404
+ # @return [Google::Apis::ContainerV1::RotationConfig]
7405
+ attr_accessor :rotation_config
7406
+
7301
7407
  def initialize(**args)
7302
7408
  update!(**args)
7303
7409
  end
@@ -7305,6 +7411,7 @@ module Google
7305
7411
  # Update properties of this object
7306
7412
  def update!(**args)
7307
7413
  @enabled = args[:enabled] if args.key?(:enabled)
7414
+ @rotation_config = args[:rotation_config] if args.key?(:rotation_config)
7308
7415
  end
7309
7416
  end
7310
7417
 
@@ -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.100.0"
19
+ GEM_VERSION = "0.102.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250701"
25
+ REVISION = "20250807"
26
26
  end
27
27
  end
28
28
  end
@@ -322,6 +322,12 @@ module Google
322
322
  include Google::Apis::Core::JsonObjectSupport
323
323
  end
324
324
 
325
+ class DefaultComputeClassConfig
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
325
331
  class DefaultSnatStatus
326
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
333
 
@@ -880,6 +886,12 @@ module Google
880
886
  include Google::Apis::Core::JsonObjectSupport
881
887
  end
882
888
 
889
+ class PrivilegedAdmissionConfig
890
+ class Representation < Google::Apis::Core::JsonRepresentation; end
891
+
892
+ include Google::Apis::Core::JsonObjectSupport
893
+ end
894
+
883
895
  class PubSub
884
896
  class Representation < Google::Apis::Core::JsonRepresentation; end
885
897
 
@@ -976,6 +988,12 @@ module Google
976
988
  include Google::Apis::Core::JsonObjectSupport
977
989
  end
978
990
 
991
+ class RotationConfig
992
+ class Representation < Google::Apis::Core::JsonRepresentation; end
993
+
994
+ include Google::Apis::Core::JsonObjectSupport
995
+ end
996
+
979
997
  class SandboxConfig
980
998
  class Representation < Google::Apis::Core::JsonRepresentation; end
981
999
 
@@ -1387,6 +1405,7 @@ module Google
1387
1405
  class AutoIpamConfig
1388
1406
  # @private
1389
1407
  class Representation < Google::Apis::Core::JsonRepresentation
1408
+ property :enabled, as: 'enabled'
1390
1409
  end
1391
1410
  end
1392
1411
 
@@ -1409,6 +1428,8 @@ module Google
1409
1428
  # @private
1410
1429
  class Representation < Google::Apis::Core::JsonRepresentation
1411
1430
  property :enabled, as: 'enabled'
1431
+ property :privileged_admission_config, as: 'privilegedAdmissionConfig', class: Google::Apis::ContainerV1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1::PrivilegedAdmissionConfig::Representation
1432
+
1412
1433
  property :workload_policy_config, as: 'workloadPolicyConfig', class: Google::Apis::ContainerV1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1::WorkloadPolicyConfig::Representation
1413
1434
 
1414
1435
  end
@@ -1694,6 +1715,8 @@ module Google
1694
1715
  property :autoprovisioning_node_pool_defaults, as: 'autoprovisioningNodePoolDefaults', class: Google::Apis::ContainerV1::AutoprovisioningNodePoolDefaults, decorator: Google::Apis::ContainerV1::AutoprovisioningNodePoolDefaults::Representation
1695
1716
 
1696
1717
  property :autoscaling_profile, as: 'autoscalingProfile'
1718
+ property :default_compute_class_config, as: 'defaultComputeClassConfig', class: Google::Apis::ContainerV1::DefaultComputeClassConfig, decorator: Google::Apis::ContainerV1::DefaultComputeClassConfig::Representation
1719
+
1697
1720
  property :enable_node_autoprovisioning, as: 'enableNodeAutoprovisioning'
1698
1721
  collection :resource_limits, as: 'resourceLimits', class: Google::Apis::ContainerV1::ResourceLimit, decorator: Google::Apis::ContainerV1::ResourceLimit::Representation
1699
1722
 
@@ -1993,6 +2016,13 @@ module Google
1993
2016
  end
1994
2017
  end
1995
2018
 
2019
+ class DefaultComputeClassConfig
2020
+ # @private
2021
+ class Representation < Google::Apis::Core::JsonRepresentation
2022
+ property :enabled, as: 'enabled'
2023
+ end
2024
+ end
2025
+
1996
2026
  class DefaultSnatStatus
1997
2027
  # @private
1998
2028
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2098,6 +2128,7 @@ module Google
2098
2128
  # @private
2099
2129
  class Representation < Google::Apis::Core::JsonRepresentation
2100
2130
  property :membership, as: 'membership'
2131
+ property :membership_type, as: 'membershipType'
2101
2132
  property :pre_registered, as: 'preRegistered'
2102
2133
  property :project, as: 'project'
2103
2134
  end
@@ -2994,6 +3025,13 @@ module Google
2994
3025
  end
2995
3026
  end
2996
3027
 
3028
+ class PrivilegedAdmissionConfig
3029
+ # @private
3030
+ class Representation < Google::Apis::Core::JsonRepresentation
3031
+ collection :allowlist_paths, as: 'allowlistPaths'
3032
+ end
3033
+ end
3034
+
2997
3035
  class PubSub
2998
3036
  # @private
2999
3037
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3133,6 +3171,14 @@ module Google
3133
3171
  end
3134
3172
  end
3135
3173
 
3174
+ class RotationConfig
3175
+ # @private
3176
+ class Representation < Google::Apis::Core::JsonRepresentation
3177
+ property :enabled, as: 'enabled'
3178
+ property :rotation_interval, as: 'rotationInterval'
3179
+ end
3180
+ end
3181
+
3136
3182
  class SandboxConfig
3137
3183
  # @private
3138
3184
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3158,6 +3204,8 @@ module Google
3158
3204
  # @private
3159
3205
  class Representation < Google::Apis::Core::JsonRepresentation
3160
3206
  property :enabled, as: 'enabled'
3207
+ property :rotation_config, as: 'rotationConfig', class: Google::Apis::ContainerV1::RotationConfig, decorator: Google::Apis::ContainerV1::RotationConfig::Representation
3208
+
3161
3209
  end
3162
3210
  end
3163
3211
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.100.0
4
+ version: 0.102.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.100.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.102.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
62
62
  rdoc_options: []
63
63
  require_paths: