google-apis-container_v1 0.20.0 → 0.21.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/container_v1/classes.rb +173 -2
- data/lib/google/apis/container_v1/gem_version.rb +2 -2
- data/lib/google/apis/container_v1/representations.rb +69 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 224aa0644142d9ff347deab756118ab03c1e6ce1e1d6c3d1aff33494650c2b10
|
4
|
+
data.tar.gz: 679d681a3369aa55609141e32fc1466c14ab737072d6719d32e2fb00268a2b62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a82886b78ad212329870b8d44be3c1bda2ffe5092cd9461dc8eb6f753160df2ed38c22cada739f50f9bef89d2bd830deab75d1a20517fe0f661c46520c95e85
|
7
|
+
data.tar.gz: dbb4b096a99b31b2605e1210cf26e830165f998e2a7515686168f5a3300db8c107d7ce8d4928c0d9b1c9d482dd2829a025f26e222d3cfee48b4e1a9eb7ebb5a2
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/container_v1"
|
|
51
51
|
client = Google::Apis::ContainerV1::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.
|
@@ -1176,6 +1176,11 @@ module Google
|
|
1176
1176
|
# @return [Google::Apis::ContainerV1::ResourceUsageExportConfig]
|
1177
1177
|
attr_accessor :desired_resource_usage_export_config
|
1178
1178
|
|
1179
|
+
# Config to block services with externalIPs field.
|
1180
|
+
# Corresponds to the JSON property `desiredServiceExternalIpsConfig`
|
1181
|
+
# @return [Google::Apis::ContainerV1::ServiceExternalIPsConfig]
|
1182
|
+
attr_accessor :desired_service_external_ips_config
|
1183
|
+
|
1179
1184
|
# Configuration of Shielded Nodes feature.
|
1180
1185
|
# Corresponds to the JSON property `desiredShieldedNodes`
|
1181
1186
|
# @return [Google::Apis::ContainerV1::ShieldedNodes]
|
@@ -1227,6 +1232,7 @@ module Google
|
|
1227
1232
|
@desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
|
1228
1233
|
@desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
|
1229
1234
|
@desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
|
1235
|
+
@desired_service_external_ips_config = args[:desired_service_external_ips_config] if args.key?(:desired_service_external_ips_config)
|
1230
1236
|
@desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
|
1231
1237
|
@desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
|
1232
1238
|
@desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
|
@@ -1578,6 +1584,28 @@ module Google
|
|
1578
1584
|
end
|
1579
1585
|
end
|
1580
1586
|
|
1587
|
+
# Allows filtering to one or more specific event types. If event types are
|
1588
|
+
# present, those and only those event types will be transmitted to the cluster.
|
1589
|
+
# Other types will be skipped. If no filter is specified, or no event types are
|
1590
|
+
# present, all event types will be sent
|
1591
|
+
class Filter
|
1592
|
+
include Google::Apis::Core::Hashable
|
1593
|
+
|
1594
|
+
# Event types to allowlist.
|
1595
|
+
# Corresponds to the JSON property `eventType`
|
1596
|
+
# @return [Array<String>]
|
1597
|
+
attr_accessor :event_type
|
1598
|
+
|
1599
|
+
def initialize(**args)
|
1600
|
+
update!(**args)
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
# Update properties of this object
|
1604
|
+
def update!(**args)
|
1605
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
1606
|
+
end
|
1607
|
+
end
|
1608
|
+
|
1581
1609
|
# Configuration for the Compute Engine PD CSI driver.
|
1582
1610
|
class GcePersistentDiskCsiDriverConfig
|
1583
1611
|
include Google::Apis::Core::Hashable
|
@@ -2248,6 +2276,25 @@ module Google
|
|
2248
2276
|
end
|
2249
2277
|
end
|
2250
2278
|
|
2279
|
+
# Represents the Maintenance exclusion option.
|
2280
|
+
class MaintenanceExclusionOptions
|
2281
|
+
include Google::Apis::Core::Hashable
|
2282
|
+
|
2283
|
+
# Scope specifies the upgrade scope which upgrades are blocked by the exclusion.
|
2284
|
+
# Corresponds to the JSON property `scope`
|
2285
|
+
# @return [String]
|
2286
|
+
attr_accessor :scope
|
2287
|
+
|
2288
|
+
def initialize(**args)
|
2289
|
+
update!(**args)
|
2290
|
+
end
|
2291
|
+
|
2292
|
+
# Update properties of this object
|
2293
|
+
def update!(**args)
|
2294
|
+
@scope = args[:scope] if args.key?(:scope)
|
2295
|
+
end
|
2296
|
+
end
|
2297
|
+
|
2251
2298
|
# MaintenancePolicy defines the maintenance policy to be used for the cluster.
|
2252
2299
|
class MaintenancePolicy
|
2253
2300
|
include Google::Apis::Core::Hashable
|
@@ -2570,6 +2617,11 @@ module Google
|
|
2570
2617
|
# @return [String]
|
2571
2618
|
attr_accessor :private_ipv6_google_access
|
2572
2619
|
|
2620
|
+
# Config to block services with externalIPs field.
|
2621
|
+
# Corresponds to the JSON property `serviceExternalIpsConfig`
|
2622
|
+
# @return [Google::Apis::ContainerV1::ServiceExternalIPsConfig]
|
2623
|
+
attr_accessor :service_external_ips_config
|
2624
|
+
|
2573
2625
|
# Output only. The relative name of the Google Compute Engine [subnetwork](https:
|
2574
2626
|
# //cloud.google.com/compute/docs/vpc) to which the cluster is connected.
|
2575
2627
|
# Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
|
@@ -2590,6 +2642,7 @@ module Google
|
|
2590
2642
|
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
2591
2643
|
@network = args[:network] if args.key?(:network)
|
2592
2644
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
2645
|
+
@service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
|
2593
2646
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
2594
2647
|
end
|
2595
2648
|
end
|
@@ -2913,8 +2966,8 @@ module Google
|
|
2913
2966
|
|
2914
2967
|
# Control the CPU management policy on the node. See https://kubernetes.io/docs/
|
2915
2968
|
# tasks/administer-cluster/cpu-management-policies/ The following values are
|
2916
|
-
# allowed.
|
2917
|
-
# behavior.
|
2969
|
+
# allowed. * "none": the default, which represents the existing scheduling
|
2970
|
+
# behavior. * "static": allows pods with certain resource characteristics to be
|
2918
2971
|
# granted increased CPU affinity and exclusivity on the node. The default value
|
2919
2972
|
# is 'none' if unspecified.
|
2920
2973
|
# Corresponds to the JSON property `cpuManagerPolicy`
|
@@ -3525,6 +3578,14 @@ module Google
|
|
3525
3578
|
attr_accessor :enabled
|
3526
3579
|
alias_method :enabled?, :enabled
|
3527
3580
|
|
3581
|
+
# Allows filtering to one or more specific event types. If event types are
|
3582
|
+
# present, those and only those event types will be transmitted to the cluster.
|
3583
|
+
# Other types will be skipped. If no filter is specified, or no event types are
|
3584
|
+
# present, all event types will be sent
|
3585
|
+
# Corresponds to the JSON property `filter`
|
3586
|
+
# @return [Google::Apis::ContainerV1::Filter]
|
3587
|
+
attr_accessor :filter
|
3588
|
+
|
3528
3589
|
# The desired Pub/Sub topic to which notifications will be sent by GKE. Format
|
3529
3590
|
# is `projects/`project`/topics/`topic``.
|
3530
3591
|
# Corresponds to the JSON property `topic`
|
@@ -3538,6 +3599,7 @@ module Google
|
|
3538
3599
|
# Update properties of this object
|
3539
3600
|
def update!(**args)
|
3540
3601
|
@enabled = args[:enabled] if args.key?(:enabled)
|
3602
|
+
@filter = args[:filter] if args.key?(:filter)
|
3541
3603
|
@topic = args[:topic] if args.key?(:topic)
|
3542
3604
|
end
|
3543
3605
|
end
|
@@ -3806,6 +3868,89 @@ module Google
|
|
3806
3868
|
end
|
3807
3869
|
end
|
3808
3870
|
|
3871
|
+
# SecurityBulletinEvent is a notification sent to customers when a security
|
3872
|
+
# bulletin has been posted that they are vulnerable to.
|
3873
|
+
class SecurityBulletinEvent
|
3874
|
+
include Google::Apis::Core::Hashable
|
3875
|
+
|
3876
|
+
# The GKE minor versions affected by this vulnerability.
|
3877
|
+
# Corresponds to the JSON property `affectedSupportedMinors`
|
3878
|
+
# @return [Array<String>]
|
3879
|
+
attr_accessor :affected_supported_minors
|
3880
|
+
|
3881
|
+
# A brief description of the bulletin. See the bulletin pointed to by the
|
3882
|
+
# bulletin_uri field for an expanded description.
|
3883
|
+
# Corresponds to the JSON property `briefDescription`
|
3884
|
+
# @return [String]
|
3885
|
+
attr_accessor :brief_description
|
3886
|
+
|
3887
|
+
# The ID of the bulletin corresponding to the vulnerability.
|
3888
|
+
# Corresponds to the JSON property `bulletinId`
|
3889
|
+
# @return [String]
|
3890
|
+
attr_accessor :bulletin_id
|
3891
|
+
|
3892
|
+
# The URI link to the bulletin on the website for more information.
|
3893
|
+
# Corresponds to the JSON property `bulletinUri`
|
3894
|
+
# @return [String]
|
3895
|
+
attr_accessor :bulletin_uri
|
3896
|
+
|
3897
|
+
# The CVEs associated with this bulletin.
|
3898
|
+
# Corresponds to the JSON property `cveIds`
|
3899
|
+
# @return [Array<String>]
|
3900
|
+
attr_accessor :cve_ids
|
3901
|
+
|
3902
|
+
# If this field is specified, it means there are manual steps that the user must
|
3903
|
+
# take to make their clusters safe.
|
3904
|
+
# Corresponds to the JSON property `manualStepsRequired`
|
3905
|
+
# @return [Boolean]
|
3906
|
+
attr_accessor :manual_steps_required
|
3907
|
+
alias_method :manual_steps_required?, :manual_steps_required
|
3908
|
+
|
3909
|
+
# The GKE versions where this vulnerability is patched.
|
3910
|
+
# Corresponds to the JSON property `patchedVersions`
|
3911
|
+
# @return [Array<String>]
|
3912
|
+
attr_accessor :patched_versions
|
3913
|
+
|
3914
|
+
# The resource type (node/control plane) that has the vulnerability. Multiple
|
3915
|
+
# notifications (1 notification per resource type) will be sent for a
|
3916
|
+
# vulnerability that affects > 1 resource type.
|
3917
|
+
# Corresponds to the JSON property `resourceTypeAffected`
|
3918
|
+
# @return [String]
|
3919
|
+
attr_accessor :resource_type_affected
|
3920
|
+
|
3921
|
+
# The severity of this bulletin as it relates to GKE.
|
3922
|
+
# Corresponds to the JSON property `severity`
|
3923
|
+
# @return [String]
|
3924
|
+
attr_accessor :severity
|
3925
|
+
|
3926
|
+
# This represents a version selected from the patched_versions field that the
|
3927
|
+
# cluster receiving this notification should most likely want to upgrade to
|
3928
|
+
# based on its current version. Note that if this notification is being received
|
3929
|
+
# by a given cluster, it means that this version is currently available as an
|
3930
|
+
# upgrade target in that cluster's location.
|
3931
|
+
# Corresponds to the JSON property `suggestedUpgradeTarget`
|
3932
|
+
# @return [String]
|
3933
|
+
attr_accessor :suggested_upgrade_target
|
3934
|
+
|
3935
|
+
def initialize(**args)
|
3936
|
+
update!(**args)
|
3937
|
+
end
|
3938
|
+
|
3939
|
+
# Update properties of this object
|
3940
|
+
def update!(**args)
|
3941
|
+
@affected_supported_minors = args[:affected_supported_minors] if args.key?(:affected_supported_minors)
|
3942
|
+
@brief_description = args[:brief_description] if args.key?(:brief_description)
|
3943
|
+
@bulletin_id = args[:bulletin_id] if args.key?(:bulletin_id)
|
3944
|
+
@bulletin_uri = args[:bulletin_uri] if args.key?(:bulletin_uri)
|
3945
|
+
@cve_ids = args[:cve_ids] if args.key?(:cve_ids)
|
3946
|
+
@manual_steps_required = args[:manual_steps_required] if args.key?(:manual_steps_required)
|
3947
|
+
@patched_versions = args[:patched_versions] if args.key?(:patched_versions)
|
3948
|
+
@resource_type_affected = args[:resource_type_affected] if args.key?(:resource_type_affected)
|
3949
|
+
@severity = args[:severity] if args.key?(:severity)
|
3950
|
+
@suggested_upgrade_target = args[:suggested_upgrade_target] if args.key?(:suggested_upgrade_target)
|
3951
|
+
end
|
3952
|
+
end
|
3953
|
+
|
3809
3954
|
# Kubernetes Engine service configuration.
|
3810
3955
|
class ServerConfig
|
3811
3956
|
include Google::Apis::Core::Hashable
|
@@ -3855,6 +4000,26 @@ module Google
|
|
3855
4000
|
end
|
3856
4001
|
end
|
3857
4002
|
|
4003
|
+
# Config to block services with externalIPs field.
|
4004
|
+
class ServiceExternalIPsConfig
|
4005
|
+
include Google::Apis::Core::Hashable
|
4006
|
+
|
4007
|
+
# Whether Services with ExternalIPs field are allowed or not.
|
4008
|
+
# Corresponds to the JSON property `enabled`
|
4009
|
+
# @return [Boolean]
|
4010
|
+
attr_accessor :enabled
|
4011
|
+
alias_method :enabled?, :enabled
|
4012
|
+
|
4013
|
+
def initialize(**args)
|
4014
|
+
update!(**args)
|
4015
|
+
end
|
4016
|
+
|
4017
|
+
# Update properties of this object
|
4018
|
+
def update!(**args)
|
4019
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4020
|
+
end
|
4021
|
+
end
|
4022
|
+
|
3858
4023
|
# SetAddonsConfigRequest sets the addons associated with the cluster.
|
3859
4024
|
class SetAddonsConfigRequest
|
3860
4025
|
include Google::Apis::Core::Hashable
|
@@ -4693,6 +4858,11 @@ module Google
|
|
4693
4858
|
# @return [String]
|
4694
4859
|
attr_accessor :end_time
|
4695
4860
|
|
4861
|
+
# Represents the Maintenance exclusion option.
|
4862
|
+
# Corresponds to the JSON property `maintenanceExclusionOptions`
|
4863
|
+
# @return [Google::Apis::ContainerV1::MaintenanceExclusionOptions]
|
4864
|
+
attr_accessor :maintenance_exclusion_options
|
4865
|
+
|
4696
4866
|
# The time that the window first starts.
|
4697
4867
|
# Corresponds to the JSON property `startTime`
|
4698
4868
|
# @return [String]
|
@@ -4705,6 +4875,7 @@ module Google
|
|
4705
4875
|
# Update properties of this object
|
4706
4876
|
def update!(**args)
|
4707
4877
|
@end_time = args[:end_time] if args.key?(:end_time)
|
4878
|
+
@maintenance_exclusion_options = args[:maintenance_exclusion_options] if args.key?(:maintenance_exclusion_options)
|
4708
4879
|
@start_time = args[:start_time] if args.key?(:start_time)
|
4709
4880
|
end
|
4710
4881
|
end
|
@@ -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.21.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 = "20211203"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class Filter
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class GcePersistentDiskCsiDriverConfig
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -316,6 +322,12 @@ module Google
|
|
316
322
|
include Google::Apis::Core::JsonObjectSupport
|
317
323
|
end
|
318
324
|
|
325
|
+
class MaintenanceExclusionOptions
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
319
331
|
class MaintenancePolicy
|
320
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
333
|
|
@@ -526,12 +538,24 @@ module Google
|
|
526
538
|
include Google::Apis::Core::JsonObjectSupport
|
527
539
|
end
|
528
540
|
|
541
|
+
class SecurityBulletinEvent
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
529
547
|
class ServerConfig
|
530
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
549
|
|
532
550
|
include Google::Apis::Core::JsonObjectSupport
|
533
551
|
end
|
534
552
|
|
553
|
+
class ServiceExternalIPsConfig
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
535
559
|
class SetAddonsConfigRequest
|
536
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
561
|
|
@@ -998,6 +1022,8 @@ module Google
|
|
998
1022
|
|
999
1023
|
property :desired_resource_usage_export_config, as: 'desiredResourceUsageExportConfig', class: Google::Apis::ContainerV1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1::ResourceUsageExportConfig::Representation
|
1000
1024
|
|
1025
|
+
property :desired_service_external_ips_config, as: 'desiredServiceExternalIpsConfig', class: Google::Apis::ContainerV1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1::ServiceExternalIPsConfig::Representation
|
1026
|
+
|
1001
1027
|
property :desired_shielded_nodes, as: 'desiredShieldedNodes', class: Google::Apis::ContainerV1::ShieldedNodes, decorator: Google::Apis::ContainerV1::ShieldedNodes::Representation
|
1002
1028
|
|
1003
1029
|
property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1::VerticalPodAutoscaling::Representation
|
@@ -1106,6 +1132,13 @@ module Google
|
|
1106
1132
|
end
|
1107
1133
|
end
|
1108
1134
|
|
1135
|
+
class Filter
|
1136
|
+
# @private
|
1137
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1138
|
+
collection :event_type, as: 'eventType'
|
1139
|
+
end
|
1140
|
+
end
|
1141
|
+
|
1109
1142
|
class GcePersistentDiskCsiDriverConfig
|
1110
1143
|
# @private
|
1111
1144
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1294,6 +1327,13 @@ module Google
|
|
1294
1327
|
end
|
1295
1328
|
end
|
1296
1329
|
|
1330
|
+
class MaintenanceExclusionOptions
|
1331
|
+
# @private
|
1332
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1333
|
+
property :scope, as: 'scope'
|
1334
|
+
end
|
1335
|
+
end
|
1336
|
+
|
1297
1337
|
class MaintenancePolicy
|
1298
1338
|
# @private
|
1299
1339
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1388,6 +1428,8 @@ module Google
|
|
1388
1428
|
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
1389
1429
|
property :network, as: 'network'
|
1390
1430
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
1431
|
+
property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1::ServiceExternalIPsConfig::Representation
|
1432
|
+
|
1391
1433
|
property :subnetwork, as: 'subnetwork'
|
1392
1434
|
end
|
1393
1435
|
end
|
@@ -1611,6 +1653,8 @@ module Google
|
|
1611
1653
|
# @private
|
1612
1654
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1613
1655
|
property :enabled, as: 'enabled'
|
1656
|
+
property :filter, as: 'filter', class: Google::Apis::ContainerV1::Filter, decorator: Google::Apis::ContainerV1::Filter::Representation
|
1657
|
+
|
1614
1658
|
property :topic, as: 'topic'
|
1615
1659
|
end
|
1616
1660
|
end
|
@@ -1687,6 +1731,22 @@ module Google
|
|
1687
1731
|
end
|
1688
1732
|
end
|
1689
1733
|
|
1734
|
+
class SecurityBulletinEvent
|
1735
|
+
# @private
|
1736
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1737
|
+
collection :affected_supported_minors, as: 'affectedSupportedMinors'
|
1738
|
+
property :brief_description, as: 'briefDescription'
|
1739
|
+
property :bulletin_id, as: 'bulletinId'
|
1740
|
+
property :bulletin_uri, as: 'bulletinUri'
|
1741
|
+
collection :cve_ids, as: 'cveIds'
|
1742
|
+
property :manual_steps_required, as: 'manualStepsRequired'
|
1743
|
+
collection :patched_versions, as: 'patchedVersions'
|
1744
|
+
property :resource_type_affected, as: 'resourceTypeAffected'
|
1745
|
+
property :severity, as: 'severity'
|
1746
|
+
property :suggested_upgrade_target, as: 'suggestedUpgradeTarget'
|
1747
|
+
end
|
1748
|
+
end
|
1749
|
+
|
1690
1750
|
class ServerConfig
|
1691
1751
|
# @private
|
1692
1752
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1700,6 +1760,13 @@ module Google
|
|
1700
1760
|
end
|
1701
1761
|
end
|
1702
1762
|
|
1763
|
+
class ServiceExternalIPsConfig
|
1764
|
+
# @private
|
1765
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1766
|
+
property :enabled, as: 'enabled'
|
1767
|
+
end
|
1768
|
+
end
|
1769
|
+
|
1703
1770
|
class SetAddonsConfigRequest
|
1704
1771
|
# @private
|
1705
1772
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1891,6 +1958,8 @@ module Google
|
|
1891
1958
|
# @private
|
1892
1959
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1893
1960
|
property :end_time, as: 'endTime'
|
1961
|
+
property :maintenance_exclusion_options, as: 'maintenanceExclusionOptions', class: Google::Apis::ContainerV1::MaintenanceExclusionOptions, decorator: Google::Apis::ContainerV1::MaintenanceExclusionOptions::Representation
|
1962
|
+
|
1894
1963
|
property :start_time, as: 'startTime'
|
1895
1964
|
end
|
1896
1965
|
end
|
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.
|
4
|
+
version: 0.21.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.21.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: []
|
@@ -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 V1
|