google-apis-container_v1 0.100.0 → 0.101.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ff800e47c7a313c8e694785eab2355cb76f2860bcdc0ac828af93d9a2c2f297
|
4
|
+
data.tar.gz: 0d0db830e5cb437585621fc53ae415b42439febfadb7ec03beb342532ca0bc9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec1ca25600c68e05dd6ca676e6e4074db67531ab61860df96e89484f38b1e53681c3f05a2911d8eab234dba745dd7c8cb2f129edc206718022026bbfc4d86ed4
|
7
|
+
data.tar.gz: da1ffc89ee1e95637730e88fbd5d9723704102d729e5c65ac0cfd1edfdc9c8bc691901598092bd7466291181285959fad1a795b9e6706813d25729e9ada36e6a
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -6739,6 +6785,31 @@ module Google
|
|
6739
6785
|
end
|
6740
6786
|
end
|
6741
6787
|
|
6788
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
6789
|
+
# the cluster.
|
6790
|
+
class PrivilegedAdmissionConfig
|
6791
|
+
include Google::Apis::Core::Hashable
|
6792
|
+
|
6793
|
+
# The customer allowlist Cloud Storage paths for the cluster. These paths are
|
6794
|
+
# used with the `--autopilot-privileged-admission` flag to authorize privileged
|
6795
|
+
# workloads in Autopilot clusters. Paths can be GKE-owned, in the format `gke:///
|
6796
|
+
# /`, or customer-owned, in the format `gs:///`. Wildcards (`*`) are supported
|
6797
|
+
# to authorize all allowlists under specific paths or directories. Example: `gs:/
|
6798
|
+
# /my-bucket/*` will authorize all allowlists under the `my-bucket` bucket.
|
6799
|
+
# Corresponds to the JSON property `allowlistPaths`
|
6800
|
+
# @return [Array<String>]
|
6801
|
+
attr_accessor :allowlist_paths
|
6802
|
+
|
6803
|
+
def initialize(**args)
|
6804
|
+
update!(**args)
|
6805
|
+
end
|
6806
|
+
|
6807
|
+
# Update properties of this object
|
6808
|
+
def update!(**args)
|
6809
|
+
@allowlist_paths = args[:allowlist_paths] if args.key?(:allowlist_paths)
|
6810
|
+
end
|
6811
|
+
end
|
6812
|
+
|
6742
6813
|
# Pub/Sub specific notification config.
|
6743
6814
|
class PubSub
|
6744
6815
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.101.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 = "
|
25
|
+
REVISION = "20250725"
|
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
|
|
@@ -1387,6 +1399,7 @@ module Google
|
|
1387
1399
|
class AutoIpamConfig
|
1388
1400
|
# @private
|
1389
1401
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1402
|
+
property :enabled, as: 'enabled'
|
1390
1403
|
end
|
1391
1404
|
end
|
1392
1405
|
|
@@ -1409,6 +1422,8 @@ module Google
|
|
1409
1422
|
# @private
|
1410
1423
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1411
1424
|
property :enabled, as: 'enabled'
|
1425
|
+
property :privileged_admission_config, as: 'privilegedAdmissionConfig', class: Google::Apis::ContainerV1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1::PrivilegedAdmissionConfig::Representation
|
1426
|
+
|
1412
1427
|
property :workload_policy_config, as: 'workloadPolicyConfig', class: Google::Apis::ContainerV1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1::WorkloadPolicyConfig::Representation
|
1413
1428
|
|
1414
1429
|
end
|
@@ -1694,6 +1709,8 @@ module Google
|
|
1694
1709
|
property :autoprovisioning_node_pool_defaults, as: 'autoprovisioningNodePoolDefaults', class: Google::Apis::ContainerV1::AutoprovisioningNodePoolDefaults, decorator: Google::Apis::ContainerV1::AutoprovisioningNodePoolDefaults::Representation
|
1695
1710
|
|
1696
1711
|
property :autoscaling_profile, as: 'autoscalingProfile'
|
1712
|
+
property :default_compute_class_config, as: 'defaultComputeClassConfig', class: Google::Apis::ContainerV1::DefaultComputeClassConfig, decorator: Google::Apis::ContainerV1::DefaultComputeClassConfig::Representation
|
1713
|
+
|
1697
1714
|
property :enable_node_autoprovisioning, as: 'enableNodeAutoprovisioning'
|
1698
1715
|
collection :resource_limits, as: 'resourceLimits', class: Google::Apis::ContainerV1::ResourceLimit, decorator: Google::Apis::ContainerV1::ResourceLimit::Representation
|
1699
1716
|
|
@@ -1993,6 +2010,13 @@ module Google
|
|
1993
2010
|
end
|
1994
2011
|
end
|
1995
2012
|
|
2013
|
+
class DefaultComputeClassConfig
|
2014
|
+
# @private
|
2015
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2016
|
+
property :enabled, as: 'enabled'
|
2017
|
+
end
|
2018
|
+
end
|
2019
|
+
|
1996
2020
|
class DefaultSnatStatus
|
1997
2021
|
# @private
|
1998
2022
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2098,6 +2122,7 @@ module Google
|
|
2098
2122
|
# @private
|
2099
2123
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2100
2124
|
property :membership, as: 'membership'
|
2125
|
+
property :membership_type, as: 'membershipType'
|
2101
2126
|
property :pre_registered, as: 'preRegistered'
|
2102
2127
|
property :project, as: 'project'
|
2103
2128
|
end
|
@@ -2994,6 +3019,13 @@ module Google
|
|
2994
3019
|
end
|
2995
3020
|
end
|
2996
3021
|
|
3022
|
+
class PrivilegedAdmissionConfig
|
3023
|
+
# @private
|
3024
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3025
|
+
collection :allowlist_paths, as: 'allowlistPaths'
|
3026
|
+
end
|
3027
|
+
end
|
3028
|
+
|
2997
3029
|
class PubSub
|
2998
3030
|
# @private
|
2999
3031
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.101.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.101.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:
|