google-apis-container_v1beta1 0.23.0 → 0.24.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: 66cfdeb3647b56522dc0360452e6050ea27975a9762dc143f2614f9921089117
|
4
|
+
data.tar.gz: '0385ef5559fc6bf499b8d8fe557e2dd49927dd61c6b67f5fd01de0ac3a750458'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83bd630b2a589c13e8bd47b1bb228be6000e49798943d57001ca66ff64df72bf139b671b6adc3a7fe1ff9570acfaf26649f96cc3c2f04c4eddfd799223a31807
|
7
|
+
data.tar.gz: 33fed6734749f9a4af6c3698d7227dde19ccb225dc642c6f6027ba136bb4a19650d0bae3d4e414d2e21d18ffd4830fbceeee1fdbaebd941dee19a631bec868ef
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/container_v1beta1"
|
|
51
51
|
client = Google::Apis::ContainerV1beta1::ContainerService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -86,6 +86,11 @@ module Google
|
|
86
86
|
# @return [Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig]
|
87
87
|
attr_accessor :gcp_filestore_csi_driver_config
|
88
88
|
|
89
|
+
# Configuration for the Backup for GKE Agent.
|
90
|
+
# Corresponds to the JSON property `gkeBackupAgentConfig`
|
91
|
+
# @return [Google::Apis::ContainerV1beta1::GkeBackupAgentConfig]
|
92
|
+
attr_accessor :gke_backup_agent_config
|
93
|
+
|
89
94
|
# Configuration options for the horizontal pod autoscaling feature, which
|
90
95
|
# increases or decreases the number of replica pods a replication controller has
|
91
96
|
# based on the resource usage of the existing pods.
|
@@ -132,6 +137,7 @@ module Google
|
|
132
137
|
@dns_cache_config = args[:dns_cache_config] if args.key?(:dns_cache_config)
|
133
138
|
@gce_persistent_disk_csi_driver_config = args[:gce_persistent_disk_csi_driver_config] if args.key?(:gce_persistent_disk_csi_driver_config)
|
134
139
|
@gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
|
140
|
+
@gke_backup_agent_config = args[:gke_backup_agent_config] if args.key?(:gke_backup_agent_config)
|
135
141
|
@horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
|
136
142
|
@http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
|
137
143
|
@istio_config = args[:istio_config] if args.key?(:istio_config)
|
@@ -1807,6 +1813,28 @@ module Google
|
|
1807
1813
|
end
|
1808
1814
|
end
|
1809
1815
|
|
1816
|
+
# Allows filtering to one or more specific event types. If event types are
|
1817
|
+
# present, those and only those event types will be transmitted to the cluster.
|
1818
|
+
# Other types will be skipped. If no filter is specified, or no event types are
|
1819
|
+
# present, all event types will be sent
|
1820
|
+
class Filter
|
1821
|
+
include Google::Apis::Core::Hashable
|
1822
|
+
|
1823
|
+
# Event types to allowlist.
|
1824
|
+
# Corresponds to the JSON property `eventType`
|
1825
|
+
# @return [Array<String>]
|
1826
|
+
attr_accessor :event_type
|
1827
|
+
|
1828
|
+
def initialize(**args)
|
1829
|
+
update!(**args)
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
# Update properties of this object
|
1833
|
+
def update!(**args)
|
1834
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
1835
|
+
end
|
1836
|
+
end
|
1837
|
+
|
1810
1838
|
# Configuration for the Compute Engine PD CSI driver.
|
1811
1839
|
class GcePersistentDiskCsiDriverConfig
|
1812
1840
|
include Google::Apis::Core::Hashable
|
@@ -1954,6 +1982,26 @@ module Google
|
|
1954
1982
|
end
|
1955
1983
|
end
|
1956
1984
|
|
1985
|
+
# Configuration for the Backup for GKE Agent.
|
1986
|
+
class GkeBackupAgentConfig
|
1987
|
+
include Google::Apis::Core::Hashable
|
1988
|
+
|
1989
|
+
# Whether the Backup for GKE agent is enabled for this cluster.
|
1990
|
+
# Corresponds to the JSON property `enabled`
|
1991
|
+
# @return [Boolean]
|
1992
|
+
attr_accessor :enabled
|
1993
|
+
alias_method :enabled?, :enabled
|
1994
|
+
|
1995
|
+
def initialize(**args)
|
1996
|
+
update!(**args)
|
1997
|
+
end
|
1998
|
+
|
1999
|
+
# Update properties of this object
|
2000
|
+
def update!(**args)
|
2001
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
2002
|
+
end
|
2003
|
+
end
|
2004
|
+
|
1957
2005
|
# Configuration options for the horizontal pod autoscaling feature, which
|
1958
2006
|
# increases or decreases the number of replica pods a replication controller has
|
1959
2007
|
# based on the resource usage of the existing pods.
|
@@ -2622,6 +2670,25 @@ module Google
|
|
2622
2670
|
end
|
2623
2671
|
end
|
2624
2672
|
|
2673
|
+
# Represents the Maintenance exclusion option.
|
2674
|
+
class MaintenanceExclusionOptions
|
2675
|
+
include Google::Apis::Core::Hashable
|
2676
|
+
|
2677
|
+
# Scope specifies the upgrade scope which upgrades are blocked by the exclusion.
|
2678
|
+
# Corresponds to the JSON property `scope`
|
2679
|
+
# @return [String]
|
2680
|
+
attr_accessor :scope
|
2681
|
+
|
2682
|
+
def initialize(**args)
|
2683
|
+
update!(**args)
|
2684
|
+
end
|
2685
|
+
|
2686
|
+
# Update properties of this object
|
2687
|
+
def update!(**args)
|
2688
|
+
@scope = args[:scope] if args.key?(:scope)
|
2689
|
+
end
|
2690
|
+
end
|
2691
|
+
|
2625
2692
|
# MaintenancePolicy defines the maintenance policy to be used for the cluster.
|
2626
2693
|
class MaintenancePolicy
|
2627
2694
|
include Google::Apis::Core::Hashable
|
@@ -3367,8 +3434,8 @@ module Google
|
|
3367
3434
|
|
3368
3435
|
# Control the CPU management policy on the node. See https://kubernetes.io/docs/
|
3369
3436
|
# tasks/administer-cluster/cpu-management-policies/ The following values are
|
3370
|
-
# allowed.
|
3371
|
-
# behavior.
|
3437
|
+
# allowed. * "none": the default, which represents the existing scheduling
|
3438
|
+
# behavior. * "static": allows pods with certain resource characteristics to be
|
3372
3439
|
# granted increased CPU affinity and exclusivity on the node. The default value
|
3373
3440
|
# is 'none' if unspecified.
|
3374
3441
|
# Corresponds to the JSON property `cpuManagerPolicy`
|
@@ -3573,6 +3640,11 @@ module Google
|
|
3573
3640
|
# @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
|
3574
3641
|
attr_accessor :network_config
|
3575
3642
|
|
3643
|
+
# PlacementPolicy defines the placement policy used by the node pool.
|
3644
|
+
# Corresponds to the JSON property `placementPolicy`
|
3645
|
+
# @return [Google::Apis::ContainerV1beta1::PlacementPolicy]
|
3646
|
+
attr_accessor :placement_policy
|
3647
|
+
|
3576
3648
|
# [Output only] The pod CIDR block size per node in this node pool.
|
3577
3649
|
# Corresponds to the JSON property `podIpv4CidrSize`
|
3578
3650
|
# @return [Fixnum]
|
@@ -3620,6 +3692,7 @@ module Google
|
|
3620
3692
|
@max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
|
3621
3693
|
@name = args[:name] if args.key?(:name)
|
3622
3694
|
@network_config = args[:network_config] if args.key?(:network_config)
|
3695
|
+
@placement_policy = args[:placement_policy] if args.key?(:placement_policy)
|
3623
3696
|
@pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
|
3624
3697
|
@self_link = args[:self_link] if args.key?(:self_link)
|
3625
3698
|
@status = args[:status] if args.key?(:status)
|
@@ -3922,6 +3995,25 @@ module Google
|
|
3922
3995
|
end
|
3923
3996
|
end
|
3924
3997
|
|
3998
|
+
# PlacementPolicy defines the placement policy used by the node pool.
|
3999
|
+
class PlacementPolicy
|
4000
|
+
include Google::Apis::Core::Hashable
|
4001
|
+
|
4002
|
+
# The type of placement.
|
4003
|
+
# Corresponds to the JSON property `type`
|
4004
|
+
# @return [String]
|
4005
|
+
attr_accessor :type
|
4006
|
+
|
4007
|
+
def initialize(**args)
|
4008
|
+
update!(**args)
|
4009
|
+
end
|
4010
|
+
|
4011
|
+
# Update properties of this object
|
4012
|
+
def update!(**args)
|
4013
|
+
@type = args[:type] if args.key?(:type)
|
4014
|
+
end
|
4015
|
+
end
|
4016
|
+
|
3925
4017
|
# Configuration for the PodSecurityPolicy feature.
|
3926
4018
|
class PodSecurityPolicyConfig
|
3927
4019
|
include Google::Apis::Core::Hashable
|
@@ -4035,6 +4127,14 @@ module Google
|
|
4035
4127
|
attr_accessor :enabled
|
4036
4128
|
alias_method :enabled?, :enabled
|
4037
4129
|
|
4130
|
+
# Allows filtering to one or more specific event types. If event types are
|
4131
|
+
# present, those and only those event types will be transmitted to the cluster.
|
4132
|
+
# Other types will be skipped. If no filter is specified, or no event types are
|
4133
|
+
# present, all event types will be sent
|
4134
|
+
# Corresponds to the JSON property `filter`
|
4135
|
+
# @return [Google::Apis::ContainerV1beta1::Filter]
|
4136
|
+
attr_accessor :filter
|
4137
|
+
|
4038
4138
|
# The desired Pub/Sub topic to which notifications will be sent by GKE. Format
|
4039
4139
|
# is `projects/`project`/topics/`topic``.
|
4040
4140
|
# Corresponds to the JSON property `topic`
|
@@ -4048,6 +4148,7 @@ module Google
|
|
4048
4148
|
# Update properties of this object
|
4049
4149
|
def update!(**args)
|
4050
4150
|
@enabled = args[:enabled] if args.key?(:enabled)
|
4151
|
+
@filter = args[:filter] if args.key?(:filter)
|
4051
4152
|
@topic = args[:topic] if args.key?(:topic)
|
4052
4153
|
end
|
4053
4154
|
end
|
@@ -4329,6 +4430,89 @@ module Google
|
|
4329
4430
|
end
|
4330
4431
|
end
|
4331
4432
|
|
4433
|
+
# SecurityBulletinEvent is a notification sent to customers when a security
|
4434
|
+
# bulletin has been posted that they are vulnerable to.
|
4435
|
+
class SecurityBulletinEvent
|
4436
|
+
include Google::Apis::Core::Hashable
|
4437
|
+
|
4438
|
+
# The GKE minor versions affected by this vulnerability.
|
4439
|
+
# Corresponds to the JSON property `affectedSupportedMinors`
|
4440
|
+
# @return [Array<String>]
|
4441
|
+
attr_accessor :affected_supported_minors
|
4442
|
+
|
4443
|
+
# A brief description of the bulletin. See the bulletin pointed to by the
|
4444
|
+
# bulletin_uri field for an expanded description.
|
4445
|
+
# Corresponds to the JSON property `briefDescription`
|
4446
|
+
# @return [String]
|
4447
|
+
attr_accessor :brief_description
|
4448
|
+
|
4449
|
+
# The ID of the bulletin corresponding to the vulnerability.
|
4450
|
+
# Corresponds to the JSON property `bulletinId`
|
4451
|
+
# @return [String]
|
4452
|
+
attr_accessor :bulletin_id
|
4453
|
+
|
4454
|
+
# The URI link to the bulletin on the website for more information.
|
4455
|
+
# Corresponds to the JSON property `bulletinUri`
|
4456
|
+
# @return [String]
|
4457
|
+
attr_accessor :bulletin_uri
|
4458
|
+
|
4459
|
+
# The CVEs associated with this bulletin.
|
4460
|
+
# Corresponds to the JSON property `cveIds`
|
4461
|
+
# @return [Array<String>]
|
4462
|
+
attr_accessor :cve_ids
|
4463
|
+
|
4464
|
+
# If this field is specified, it means there are manual steps that the user must
|
4465
|
+
# take to make their clusters safe.
|
4466
|
+
# Corresponds to the JSON property `manualStepsRequired`
|
4467
|
+
# @return [Boolean]
|
4468
|
+
attr_accessor :manual_steps_required
|
4469
|
+
alias_method :manual_steps_required?, :manual_steps_required
|
4470
|
+
|
4471
|
+
# The GKE versions where this vulnerability is patched.
|
4472
|
+
# Corresponds to the JSON property `patchedVersions`
|
4473
|
+
# @return [Array<String>]
|
4474
|
+
attr_accessor :patched_versions
|
4475
|
+
|
4476
|
+
# The resource type (node/control plane) that has the vulnerability. Multiple
|
4477
|
+
# notifications (1 notification per resource type) will be sent for a
|
4478
|
+
# vulnerability that affects > 1 resource type.
|
4479
|
+
# Corresponds to the JSON property `resourceTypeAffected`
|
4480
|
+
# @return [String]
|
4481
|
+
attr_accessor :resource_type_affected
|
4482
|
+
|
4483
|
+
# The severity of this bulletin as it relates to GKE.
|
4484
|
+
# Corresponds to the JSON property `severity`
|
4485
|
+
# @return [String]
|
4486
|
+
attr_accessor :severity
|
4487
|
+
|
4488
|
+
# This represents a version selected from the patched_versions field that the
|
4489
|
+
# cluster receiving this notification should most likely want to upgrade to
|
4490
|
+
# based on its current version. Note that if this notification is being received
|
4491
|
+
# by a given cluster, it means that this version is currently available as an
|
4492
|
+
# upgrade target in that cluster's location.
|
4493
|
+
# Corresponds to the JSON property `suggestedUpgradeTarget`
|
4494
|
+
# @return [String]
|
4495
|
+
attr_accessor :suggested_upgrade_target
|
4496
|
+
|
4497
|
+
def initialize(**args)
|
4498
|
+
update!(**args)
|
4499
|
+
end
|
4500
|
+
|
4501
|
+
# Update properties of this object
|
4502
|
+
def update!(**args)
|
4503
|
+
@affected_supported_minors = args[:affected_supported_minors] if args.key?(:affected_supported_minors)
|
4504
|
+
@brief_description = args[:brief_description] if args.key?(:brief_description)
|
4505
|
+
@bulletin_id = args[:bulletin_id] if args.key?(:bulletin_id)
|
4506
|
+
@bulletin_uri = args[:bulletin_uri] if args.key?(:bulletin_uri)
|
4507
|
+
@cve_ids = args[:cve_ids] if args.key?(:cve_ids)
|
4508
|
+
@manual_steps_required = args[:manual_steps_required] if args.key?(:manual_steps_required)
|
4509
|
+
@patched_versions = args[:patched_versions] if args.key?(:patched_versions)
|
4510
|
+
@resource_type_affected = args[:resource_type_affected] if args.key?(:resource_type_affected)
|
4511
|
+
@severity = args[:severity] if args.key?(:severity)
|
4512
|
+
@suggested_upgrade_target = args[:suggested_upgrade_target] if args.key?(:suggested_upgrade_target)
|
4513
|
+
end
|
4514
|
+
end
|
4515
|
+
|
4332
4516
|
# Kubernetes Engine service configuration.
|
4333
4517
|
class ServerConfig
|
4334
4518
|
include Google::Apis::Core::Hashable
|
@@ -5242,6 +5426,11 @@ module Google
|
|
5242
5426
|
# @return [String]
|
5243
5427
|
attr_accessor :end_time
|
5244
5428
|
|
5429
|
+
# Represents the Maintenance exclusion option.
|
5430
|
+
# Corresponds to the JSON property `maintenanceExclusionOptions`
|
5431
|
+
# @return [Google::Apis::ContainerV1beta1::MaintenanceExclusionOptions]
|
5432
|
+
attr_accessor :maintenance_exclusion_options
|
5433
|
+
|
5245
5434
|
# The time that the window first starts.
|
5246
5435
|
# Corresponds to the JSON property `startTime`
|
5247
5436
|
# @return [String]
|
@@ -5254,6 +5443,7 @@ module Google
|
|
5254
5443
|
# Update properties of this object
|
5255
5444
|
def update!(**args)
|
5256
5445
|
@end_time = args[:end_time] if args.key?(:end_time)
|
5446
|
+
@maintenance_exclusion_options = args[:maintenance_exclusion_options] if args.key?(:maintenance_exclusion_options)
|
5257
5447
|
@start_time = args[:start_time] if args.key?(:start_time)
|
5258
5448
|
end
|
5259
5449
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211208"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class Filter
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class GcePersistentDiskCsiDriverConfig
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -244,6 +250,12 @@ module Google
|
|
244
250
|
include Google::Apis::Core::JsonObjectSupport
|
245
251
|
end
|
246
252
|
|
253
|
+
class GkeBackupAgentConfig
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
247
259
|
class HorizontalPodAutoscaling
|
248
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
261
|
|
@@ -370,6 +382,12 @@ module Google
|
|
370
382
|
include Google::Apis::Core::JsonObjectSupport
|
371
383
|
end
|
372
384
|
|
385
|
+
class MaintenanceExclusionOptions
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
373
391
|
class MaintenancePolicy
|
374
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
393
|
|
@@ -544,6 +562,12 @@ module Google
|
|
544
562
|
include Google::Apis::Core::JsonObjectSupport
|
545
563
|
end
|
546
564
|
|
565
|
+
class PlacementPolicy
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
567
|
+
|
568
|
+
include Google::Apis::Core::JsonObjectSupport
|
569
|
+
end
|
570
|
+
|
547
571
|
class PodSecurityPolicyConfig
|
548
572
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
573
|
|
@@ -616,6 +640,12 @@ module Google
|
|
616
640
|
include Google::Apis::Core::JsonObjectSupport
|
617
641
|
end
|
618
642
|
|
643
|
+
class SecurityBulletinEvent
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
|
+
|
646
|
+
include Google::Apis::Core::JsonObjectSupport
|
647
|
+
end
|
648
|
+
|
619
649
|
class ServerConfig
|
620
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
651
|
|
@@ -854,6 +884,8 @@ module Google
|
|
854
884
|
|
855
885
|
property :gcp_filestore_csi_driver_config, as: 'gcpFilestoreCsiDriverConfig', class: Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig, decorator: Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig::Representation
|
856
886
|
|
887
|
+
property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig::Representation
|
888
|
+
|
857
889
|
property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling::Representation
|
858
890
|
|
859
891
|
property :http_load_balancing, as: 'httpLoadBalancing', class: Google::Apis::ContainerV1beta1::HttpLoadBalancing, decorator: Google::Apis::ContainerV1beta1::HttpLoadBalancing::Representation
|
@@ -1289,6 +1321,13 @@ module Google
|
|
1289
1321
|
end
|
1290
1322
|
end
|
1291
1323
|
|
1324
|
+
class Filter
|
1325
|
+
# @private
|
1326
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1327
|
+
collection :event_type, as: 'eventType'
|
1328
|
+
end
|
1329
|
+
end
|
1330
|
+
|
1292
1331
|
class GcePersistentDiskCsiDriverConfig
|
1293
1332
|
# @private
|
1294
1333
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1335,6 +1374,13 @@ module Google
|
|
1335
1374
|
end
|
1336
1375
|
end
|
1337
1376
|
|
1377
|
+
class GkeBackupAgentConfig
|
1378
|
+
# @private
|
1379
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1380
|
+
property :enabled, as: 'enabled'
|
1381
|
+
end
|
1382
|
+
end
|
1383
|
+
|
1338
1384
|
class HorizontalPodAutoscaling
|
1339
1385
|
# @private
|
1340
1386
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1518,6 +1564,13 @@ module Google
|
|
1518
1564
|
end
|
1519
1565
|
end
|
1520
1566
|
|
1567
|
+
class MaintenanceExclusionOptions
|
1568
|
+
# @private
|
1569
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1570
|
+
property :scope, as: 'scope'
|
1571
|
+
end
|
1572
|
+
end
|
1573
|
+
|
1521
1574
|
class MaintenancePolicy
|
1522
1575
|
# @private
|
1523
1576
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1762,6 +1815,8 @@ module Google
|
|
1762
1815
|
property :name, as: 'name'
|
1763
1816
|
property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
|
1764
1817
|
|
1818
|
+
property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1beta1::PlacementPolicy, decorator: Google::Apis::ContainerV1beta1::PlacementPolicy::Representation
|
1819
|
+
|
1765
1820
|
property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
|
1766
1821
|
property :self_link, as: 'selfLink'
|
1767
1822
|
property :status, as: 'status'
|
@@ -1852,6 +1907,13 @@ module Google
|
|
1852
1907
|
end
|
1853
1908
|
end
|
1854
1909
|
|
1910
|
+
class PlacementPolicy
|
1911
|
+
# @private
|
1912
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1913
|
+
property :type, as: 'type'
|
1914
|
+
end
|
1915
|
+
end
|
1916
|
+
|
1855
1917
|
class PodSecurityPolicyConfig
|
1856
1918
|
# @private
|
1857
1919
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1884,6 +1946,8 @@ module Google
|
|
1884
1946
|
# @private
|
1885
1947
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1886
1948
|
property :enabled, as: 'enabled'
|
1949
|
+
property :filter, as: 'filter', class: Google::Apis::ContainerV1beta1::Filter, decorator: Google::Apis::ContainerV1beta1::Filter::Representation
|
1950
|
+
|
1887
1951
|
property :topic, as: 'topic'
|
1888
1952
|
end
|
1889
1953
|
end
|
@@ -1963,6 +2027,22 @@ module Google
|
|
1963
2027
|
end
|
1964
2028
|
end
|
1965
2029
|
|
2030
|
+
class SecurityBulletinEvent
|
2031
|
+
# @private
|
2032
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2033
|
+
collection :affected_supported_minors, as: 'affectedSupportedMinors'
|
2034
|
+
property :brief_description, as: 'briefDescription'
|
2035
|
+
property :bulletin_id, as: 'bulletinId'
|
2036
|
+
property :bulletin_uri, as: 'bulletinUri'
|
2037
|
+
collection :cve_ids, as: 'cveIds'
|
2038
|
+
property :manual_steps_required, as: 'manualStepsRequired'
|
2039
|
+
collection :patched_versions, as: 'patchedVersions'
|
2040
|
+
property :resource_type_affected, as: 'resourceTypeAffected'
|
2041
|
+
property :severity, as: 'severity'
|
2042
|
+
property :suggested_upgrade_target, as: 'suggestedUpgradeTarget'
|
2043
|
+
end
|
2044
|
+
end
|
2045
|
+
|
1966
2046
|
class ServerConfig
|
1967
2047
|
# @private
|
1968
2048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2176,6 +2256,8 @@ module Google
|
|
2176
2256
|
# @private
|
2177
2257
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2178
2258
|
property :end_time, as: 'endTime'
|
2259
|
+
property :maintenance_exclusion_options, as: 'maintenanceExclusionOptions', class: Google::Apis::ContainerV1beta1::MaintenanceExclusionOptions, decorator: Google::Apis::ContainerV1beta1::MaintenanceExclusionOptions::Representation
|
2260
|
+
|
2179
2261
|
property :start_time, as: 'startTime'
|
2180
2262
|
end
|
2181
2263
|
end
|
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.
|
4
|
+
version: 0.24.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:
|
11
|
+
date: 2022-01-10 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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.24.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Kubernetes Engine API V1beta1
|