google-apis-container_v1beta1 0.20.0 → 0.24.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: 3a8def92b646f0bbe7b83b8edddf4157d4c835fe34dcc64e5182092723f85aa2
4
- data.tar.gz: 339ddba26e70042327faa569fbc5bfef21aad2eb9ef41913f6a6d801b44774fb
3
+ metadata.gz: 66cfdeb3647b56522dc0360452e6050ea27975a9762dc143f2614f9921089117
4
+ data.tar.gz: '0385ef5559fc6bf499b8d8fe557e2dd49927dd61c6b67f5fd01de0ac3a750458'
5
5
  SHA512:
6
- metadata.gz: 83e41726b0897422090c0400433f66d04ea634e9d6ab6e762d574e0f3104c95ddc0dad6a1c8e4490bcbf3215da032fc5b81a5826b879f5d488fb0c7a1201072b
7
- data.tar.gz: 8b124d7a80cd8a9b61907339357cfe1e1133714bb80441367809454d60b2125110565895037c25e60ca34212528dc53029f8f11c069b87a35fa2a14003054398
6
+ metadata.gz: 83bd630b2a589c13e8bd47b1bb228be6000e49798943d57001ca66ff64df72bf139b671b6adc3a7fe1ff9570acfaf26649f96cc3c2f04c4eddfd799223a31807
7
+ data.tar.gz: 33fed6734749f9a4af6c3698d7227dde19ccb225dc642c6f6027ba136bb4a19650d0bae3d4e414d2e21d18ffd4830fbceeee1fdbaebd941dee19a631bec868ef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.24.0 (2022-01-05)
4
+
5
+ * Regenerated from discovery document revision 20211208
6
+
7
+ ### v0.23.0 (2021-11-16)
8
+
9
+ * Regenerated from discovery document revision 20211104
10
+
11
+ ### v0.22.0 (2021-10-28)
12
+
13
+ * Regenerated from discovery document revision 20211014
14
+
15
+ ### v0.21.0 (2021-10-26)
16
+
17
+ * Regenerated from discovery document revision 20211008
18
+ * Unspecified changes
19
+
3
20
  ### v0.20.0 (2021-10-02)
4
21
 
5
22
  * Regenerated from discovery document revision 20210914
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.authentication = # ... use the googleauth gem to create credentials
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.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Container service in particular.)
67
67
 
@@ -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)
@@ -141,6 +147,27 @@ module Google
141
147
  end
142
148
  end
143
149
 
150
+ # Specifies options for controlling advanced machine features.
151
+ class AdvancedMachineFeatures
152
+ include Google::Apis::Core::Hashable
153
+
154
+ # The number of threads per physical core. To disable simultaneous
155
+ # multithreading (SMT) set this to 1. If unset, the maximum number of threads
156
+ # supported per core by the underlying processor is assumed.
157
+ # Corresponds to the JSON property `threadsPerCore`
158
+ # @return [Fixnum]
159
+ attr_accessor :threads_per_core
160
+
161
+ def initialize(**args)
162
+ update!(**args)
163
+ end
164
+
165
+ # Update properties of this object
166
+ def update!(**args)
167
+ @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
168
+ end
169
+ end
170
+
144
171
  # Configuration for returning group information from authenticators.
145
172
  class AuthenticatorGroupsConfig
146
173
  include Google::Apis::Core::Hashable
@@ -1093,11 +1120,6 @@ module Google
1093
1120
  # @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
1094
1121
  attr_accessor :desired_authenticator_groups_config
1095
1122
 
1096
- # Autopilot is the configuration for Autopilot settings on the cluster.
1097
- # Corresponds to the JSON property `desiredAutopilot`
1098
- # @return [Google::Apis::ContainerV1beta1::Autopilot]
1099
- attr_accessor :desired_autopilot
1100
-
1101
1123
  # Configuration for Binary Authorization.
1102
1124
  # Corresponds to the JSON property `desiredBinaryAuthorization`
1103
1125
  # @return [Google::Apis::ContainerV1beta1::BinaryAuthorization]
@@ -1136,6 +1158,11 @@ module Google
1136
1158
  # @return [Google::Apis::ContainerV1beta1::DnsConfig]
1137
1159
  attr_accessor :desired_dns_config
1138
1160
 
1161
+ # GcfsConfig contains configurations of Google Container File System.
1162
+ # Corresponds to the JSON property `desiredGcfsConfig`
1163
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
1164
+ attr_accessor :desired_gcfs_config
1165
+
1139
1166
  # IdentityServiceConfig is configuration for Identity Service which allows
1140
1167
  # customers to use external identity providers with the K8S API
1141
1168
  # Corresponds to the JSON property `desiredIdentityServiceConfig`
@@ -1328,7 +1355,6 @@ module Google
1328
1355
  def update!(**args)
1329
1356
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
1330
1357
  @desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
1331
- @desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
1332
1358
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1333
1359
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1334
1360
  @desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
@@ -1336,6 +1362,7 @@ module Google
1336
1362
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
1337
1363
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1338
1364
  @desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
1365
+ @desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
1339
1366
  @desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
1340
1367
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1341
1368
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
@@ -1786,6 +1813,28 @@ module Google
1786
1813
  end
1787
1814
  end
1788
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
+
1789
1838
  # Configuration for the Compute Engine PD CSI driver.
1790
1839
  class GcePersistentDiskCsiDriverConfig
1791
1840
  include Google::Apis::Core::Hashable
@@ -1806,6 +1855,26 @@ module Google
1806
1855
  end
1807
1856
  end
1808
1857
 
1858
+ # GcfsConfig contains configurations of Google Container File System.
1859
+ class GcfsConfig
1860
+ include Google::Apis::Core::Hashable
1861
+
1862
+ # Whether to use GCFS.
1863
+ # Corresponds to the JSON property `enabled`
1864
+ # @return [Boolean]
1865
+ attr_accessor :enabled
1866
+ alias_method :enabled?, :enabled
1867
+
1868
+ def initialize(**args)
1869
+ update!(**args)
1870
+ end
1871
+
1872
+ # Update properties of this object
1873
+ def update!(**args)
1874
+ @enabled = args[:enabled] if args.key?(:enabled)
1875
+ end
1876
+ end
1877
+
1809
1878
  # Configuration for the GCP Filestore CSI driver.
1810
1879
  class GcpFilestoreCsiDriverConfig
1811
1880
  include Google::Apis::Core::Hashable
@@ -1913,6 +1982,26 @@ module Google
1913
1982
  end
1914
1983
  end
1915
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
+
1916
2005
  # Configuration options for the horizontal pod autoscaling feature, which
1917
2006
  # increases or decreases the number of replica pods a replication controller has
1918
2007
  # based on the resource usage of the existing pods.
@@ -2581,6 +2670,25 @@ module Google
2581
2670
  end
2582
2671
  end
2583
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
+
2584
2692
  # MaintenancePolicy defines the maintenance policy to be used for the cluster.
2585
2693
  class MaintenancePolicy
2586
2694
  include Google::Apis::Core::Hashable
@@ -2642,6 +2750,27 @@ module Google
2642
2750
  end
2643
2751
  end
2644
2752
 
2753
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2754
+ # Service for Prometheus.
2755
+ class ManagedPrometheusConfig
2756
+ include Google::Apis::Core::Hashable
2757
+
2758
+ # Enable Managed Collection.
2759
+ # Corresponds to the JSON property `enabled`
2760
+ # @return [Boolean]
2761
+ attr_accessor :enabled
2762
+ alias_method :enabled?, :enabled
2763
+
2764
+ def initialize(**args)
2765
+ update!(**args)
2766
+ end
2767
+
2768
+ # Update properties of this object
2769
+ def update!(**args)
2770
+ @enabled = args[:enabled] if args.key?(:enabled)
2771
+ end
2772
+ end
2773
+
2645
2774
  # Master is the configuration for components on master.
2646
2775
  class Master
2647
2776
  include Google::Apis::Core::Hashable
@@ -2858,6 +2987,12 @@ module Google
2858
2987
  # @return [Google::Apis::ContainerV1beta1::MonitoringComponentConfig]
2859
2988
  attr_accessor :component_config
2860
2989
 
2990
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2991
+ # Service for Prometheus.
2992
+ # Corresponds to the JSON property `managedPrometheusConfig`
2993
+ # @return [Google::Apis::ContainerV1beta1::ManagedPrometheusConfig]
2994
+ attr_accessor :managed_prometheus_config
2995
+
2861
2996
  def initialize(**args)
2862
2997
  update!(**args)
2863
2998
  end
@@ -2865,6 +3000,7 @@ module Google
2865
3000
  # Update properties of this object
2866
3001
  def update!(**args)
2867
3002
  @component_config = args[:component_config] if args.key?(:component_config)
3003
+ @managed_prometheus_config = args[:managed_prometheus_config] if args.key?(:managed_prometheus_config)
2868
3004
  end
2869
3005
  end
2870
3006
 
@@ -3025,6 +3161,11 @@ module Google
3025
3161
  # @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
3026
3162
  attr_accessor :accelerators
3027
3163
 
3164
+ # Specifies options for controlling advanced machine features.
3165
+ # Corresponds to the JSON property `advancedMachineFeatures`
3166
+ # @return [Google::Apis::ContainerV1beta1::AdvancedMachineFeatures]
3167
+ attr_accessor :advanced_machine_features
3168
+
3028
3169
  # The Customer Managed Encryption Key used to encrypt the boot disk attached to
3029
3170
  # each node in the node pool. This should be of the form projects/[
3030
3171
  # KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
@@ -3052,6 +3193,11 @@ module Google
3052
3193
  # @return [Google::Apis::ContainerV1beta1::EphemeralStorageConfig]
3053
3194
  attr_accessor :ephemeral_storage_config
3054
3195
 
3196
+ # GcfsConfig contains configurations of Google Container File System.
3197
+ # Corresponds to the JSON property `gcfsConfig`
3198
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
3199
+ attr_accessor :gcfs_config
3200
+
3055
3201
  # Configuration of gVNIC feature.
3056
3202
  # Corresponds to the JSON property `gvnic`
3057
3203
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
@@ -3214,10 +3360,12 @@ module Google
3214
3360
  # Update properties of this object
3215
3361
  def update!(**args)
3216
3362
  @accelerators = args[:accelerators] if args.key?(:accelerators)
3363
+ @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
3217
3364
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
3218
3365
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3219
3366
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3220
3367
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
3368
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3221
3369
  @gvnic = args[:gvnic] if args.key?(:gvnic)
3222
3370
  @image_type = args[:image_type] if args.key?(:image_type)
3223
3371
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
@@ -3245,12 +3393,18 @@ module Google
3245
3393
  class NodeConfigDefaults
3246
3394
  include Google::Apis::Core::Hashable
3247
3395
 
3396
+ # GcfsConfig contains configurations of Google Container File System.
3397
+ # Corresponds to the JSON property `gcfsConfig`
3398
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
3399
+ attr_accessor :gcfs_config
3400
+
3248
3401
  def initialize(**args)
3249
3402
  update!(**args)
3250
3403
  end
3251
3404
 
3252
3405
  # Update properties of this object
3253
3406
  def update!(**args)
3407
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3254
3408
  end
3255
3409
  end
3256
3410
 
@@ -3280,8 +3434,8 @@ module Google
3280
3434
 
3281
3435
  # Control the CPU management policy on the node. See https://kubernetes.io/docs/
3282
3436
  # tasks/administer-cluster/cpu-management-policies/ The following values are
3283
- # allowed. - "none": the default, which represents the existing scheduling
3284
- # behavior. - "static": allows pods with certain resource characteristics to be
3437
+ # allowed. * "none": the default, which represents the existing scheduling
3438
+ # behavior. * "static": allows pods with certain resource characteristics to be
3285
3439
  # granted increased CPU affinity and exclusivity on the node. The default value
3286
3440
  # is 'none' if unspecified.
3287
3441
  # Corresponds to the JSON property `cpuManagerPolicy`
@@ -3486,6 +3640,11 @@ module Google
3486
3640
  # @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
3487
3641
  attr_accessor :network_config
3488
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
+
3489
3648
  # [Output only] The pod CIDR block size per node in this node pool.
3490
3649
  # Corresponds to the JSON property `podIpv4CidrSize`
3491
3650
  # @return [Fixnum]
@@ -3533,6 +3692,7 @@ module Google
3533
3692
  @max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
3534
3693
  @name = args[:name] if args.key?(:name)
3535
3694
  @network_config = args[:network_config] if args.key?(:network_config)
3695
+ @placement_policy = args[:placement_policy] if args.key?(:placement_policy)
3536
3696
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
3537
3697
  @self_link = args[:self_link] if args.key?(:self_link)
3538
3698
  @status = args[:status] if args.key?(:status)
@@ -3835,6 +3995,25 @@ module Google
3835
3995
  end
3836
3996
  end
3837
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
+
3838
4017
  # Configuration for the PodSecurityPolicy feature.
3839
4018
  class PodSecurityPolicyConfig
3840
4019
  include Google::Apis::Core::Hashable
@@ -3948,6 +4127,14 @@ module Google
3948
4127
  attr_accessor :enabled
3949
4128
  alias_method :enabled?, :enabled
3950
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
+
3951
4138
  # The desired Pub/Sub topic to which notifications will be sent by GKE. Format
3952
4139
  # is `projects/`project`/topics/`topic``.
3953
4140
  # Corresponds to the JSON property `topic`
@@ -3961,6 +4148,7 @@ module Google
3961
4148
  # Update properties of this object
3962
4149
  def update!(**args)
3963
4150
  @enabled = args[:enabled] if args.key?(:enabled)
4151
+ @filter = args[:filter] if args.key?(:filter)
3964
4152
  @topic = args[:topic] if args.key?(:topic)
3965
4153
  end
3966
4154
  end
@@ -4242,6 +4430,89 @@ module Google
4242
4430
  end
4243
4431
  end
4244
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
+
4245
4516
  # Kubernetes Engine service configuration.
4246
4517
  class ServerConfig
4247
4518
  include Google::Apis::Core::Hashable
@@ -5155,6 +5426,11 @@ module Google
5155
5426
  # @return [String]
5156
5427
  attr_accessor :end_time
5157
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
+
5158
5434
  # The time that the window first starts.
5159
5435
  # Corresponds to the JSON property `startTime`
5160
5436
  # @return [String]
@@ -5167,6 +5443,7 @@ module Google
5167
5443
  # Update properties of this object
5168
5444
  def update!(**args)
5169
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)
5170
5447
  @start_time = args[:start_time] if args.key?(:start_time)
5171
5448
  end
5172
5449
  end
@@ -5319,6 +5596,11 @@ module Google
5319
5596
  # @return [String]
5320
5597
  attr_accessor :cluster_id
5321
5598
 
5599
+ # GcfsConfig contains configurations of Google Container File System.
5600
+ # Corresponds to the JSON property `gcfsConfig`
5601
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
5602
+ attr_accessor :gcfs_config
5603
+
5322
5604
  # Configuration of gVNIC feature.
5323
5605
  # Corresponds to the JSON property `gvnic`
5324
5606
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
@@ -5422,6 +5704,7 @@ module Google
5422
5704
  # Update properties of this object
5423
5705
  def update!(**args)
5424
5706
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
5707
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5425
5708
  @gvnic = args[:gvnic] if args.key?(:gvnic)
5426
5709
  @image_type = args[:image_type] if args.key?(:image_type)
5427
5710
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
@@ -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.20.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 = "20210914"
25
+ REVISION = "20211208"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class AdvancedMachineFeatures
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class AuthenticatorGroupsConfig
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -208,12 +214,24 @@ module Google
208
214
  include Google::Apis::Core::JsonObjectSupport
209
215
  end
210
216
 
217
+ class Filter
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class GcePersistentDiskCsiDriverConfig
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
214
226
  include Google::Apis::Core::JsonObjectSupport
215
227
  end
216
228
 
229
+ class GcfsConfig
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
217
235
  class GcpFilestoreCsiDriverConfig
218
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
237
 
@@ -232,6 +250,12 @@ module Google
232
250
  include Google::Apis::Core::JsonObjectSupport
233
251
  end
234
252
 
253
+ class GkeBackupAgentConfig
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
235
259
  class HorizontalPodAutoscaling
236
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
261
 
@@ -358,6 +382,12 @@ module Google
358
382
  include Google::Apis::Core::JsonObjectSupport
359
383
  end
360
384
 
385
+ class MaintenanceExclusionOptions
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
361
391
  class MaintenancePolicy
362
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
393
 
@@ -370,6 +400,12 @@ module Google
370
400
  include Google::Apis::Core::JsonObjectSupport
371
401
  end
372
402
 
403
+ class ManagedPrometheusConfig
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
373
409
  class Master
374
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
411
 
@@ -526,6 +562,12 @@ module Google
526
562
  include Google::Apis::Core::JsonObjectSupport
527
563
  end
528
564
 
565
+ class PlacementPolicy
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
529
571
  class PodSecurityPolicyConfig
530
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
573
 
@@ -598,6 +640,12 @@ module Google
598
640
  include Google::Apis::Core::JsonObjectSupport
599
641
  end
600
642
 
643
+ class SecurityBulletinEvent
644
+ class Representation < Google::Apis::Core::JsonRepresentation; end
645
+
646
+ include Google::Apis::Core::JsonObjectSupport
647
+ end
648
+
601
649
  class ServerConfig
602
650
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
651
 
@@ -836,6 +884,8 @@ module Google
836
884
 
837
885
  property :gcp_filestore_csi_driver_config, as: 'gcpFilestoreCsiDriverConfig', class: Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig, decorator: Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig::Representation
838
886
 
887
+ property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig::Representation
888
+
839
889
  property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling::Representation
840
890
 
841
891
  property :http_load_balancing, as: 'httpLoadBalancing', class: Google::Apis::ContainerV1beta1::HttpLoadBalancing, decorator: Google::Apis::ContainerV1beta1::HttpLoadBalancing::Representation
@@ -851,6 +901,13 @@ module Google
851
901
  end
852
902
  end
853
903
 
904
+ class AdvancedMachineFeatures
905
+ # @private
906
+ class Representation < Google::Apis::Core::JsonRepresentation
907
+ property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
908
+ end
909
+ end
910
+
854
911
  class AuthenticatorGroupsConfig
855
912
  # @private
856
913
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1083,8 +1140,6 @@ module Google
1083
1140
 
1084
1141
  property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
1085
1142
 
1086
- property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
1087
-
1088
1143
  property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
1089
1144
 
1090
1145
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
@@ -1098,6 +1153,8 @@ module Google
1098
1153
 
1099
1154
  property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1100
1155
 
1156
+ property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1157
+
1101
1158
  property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
1102
1159
 
1103
1160
  property :desired_image_type, as: 'desiredImageType'
@@ -1264,6 +1321,13 @@ module Google
1264
1321
  end
1265
1322
  end
1266
1323
 
1324
+ class Filter
1325
+ # @private
1326
+ class Representation < Google::Apis::Core::JsonRepresentation
1327
+ collection :event_type, as: 'eventType'
1328
+ end
1329
+ end
1330
+
1267
1331
  class GcePersistentDiskCsiDriverConfig
1268
1332
  # @private
1269
1333
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1271,6 +1335,13 @@ module Google
1271
1335
  end
1272
1336
  end
1273
1337
 
1338
+ class GcfsConfig
1339
+ # @private
1340
+ class Representation < Google::Apis::Core::JsonRepresentation
1341
+ property :enabled, as: 'enabled'
1342
+ end
1343
+ end
1344
+
1274
1345
  class GcpFilestoreCsiDriverConfig
1275
1346
  # @private
1276
1347
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1303,6 +1374,13 @@ module Google
1303
1374
  end
1304
1375
  end
1305
1376
 
1377
+ class GkeBackupAgentConfig
1378
+ # @private
1379
+ class Representation < Google::Apis::Core::JsonRepresentation
1380
+ property :enabled, as: 'enabled'
1381
+ end
1382
+ end
1383
+
1306
1384
  class HorizontalPodAutoscaling
1307
1385
  # @private
1308
1386
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1486,6 +1564,13 @@ module Google
1486
1564
  end
1487
1565
  end
1488
1566
 
1567
+ class MaintenanceExclusionOptions
1568
+ # @private
1569
+ class Representation < Google::Apis::Core::JsonRepresentation
1570
+ property :scope, as: 'scope'
1571
+ end
1572
+ end
1573
+
1489
1574
  class MaintenancePolicy
1490
1575
  # @private
1491
1576
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1507,6 +1592,13 @@ module Google
1507
1592
  end
1508
1593
  end
1509
1594
 
1595
+ class ManagedPrometheusConfig
1596
+ # @private
1597
+ class Representation < Google::Apis::Core::JsonRepresentation
1598
+ property :enabled, as: 'enabled'
1599
+ end
1600
+ end
1601
+
1510
1602
  class Master
1511
1603
  # @private
1512
1604
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1571,6 +1663,8 @@ module Google
1571
1663
  class Representation < Google::Apis::Core::JsonRepresentation
1572
1664
  property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1beta1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringComponentConfig::Representation
1573
1665
 
1666
+ property :managed_prometheus_config, as: 'managedPrometheusConfig', class: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig, decorator: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig::Representation
1667
+
1574
1668
  end
1575
1669
  end
1576
1670
 
@@ -1619,11 +1713,15 @@ module Google
1619
1713
  class Representation < Google::Apis::Core::JsonRepresentation
1620
1714
  collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1beta1::AcceleratorConfig, decorator: Google::Apis::ContainerV1beta1::AcceleratorConfig::Representation
1621
1715
 
1716
+ property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures, decorator: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures::Representation
1717
+
1622
1718
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
1623
1719
  property :disk_size_gb, as: 'diskSizeGb'
1624
1720
  property :disk_type, as: 'diskType'
1625
1721
  property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
1626
1722
 
1723
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1724
+
1627
1725
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
1628
1726
 
1629
1727
  property :image_type, as: 'imageType'
@@ -1658,6 +1756,8 @@ module Google
1658
1756
  class NodeConfigDefaults
1659
1757
  # @private
1660
1758
  class Representation < Google::Apis::Core::JsonRepresentation
1759
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1760
+
1661
1761
  end
1662
1762
  end
1663
1763
 
@@ -1715,6 +1815,8 @@ module Google
1715
1815
  property :name, as: 'name'
1716
1816
  property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
1717
1817
 
1818
+ property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1beta1::PlacementPolicy, decorator: Google::Apis::ContainerV1beta1::PlacementPolicy::Representation
1819
+
1718
1820
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
1719
1821
  property :self_link, as: 'selfLink'
1720
1822
  property :status, as: 'status'
@@ -1805,6 +1907,13 @@ module Google
1805
1907
  end
1806
1908
  end
1807
1909
 
1910
+ class PlacementPolicy
1911
+ # @private
1912
+ class Representation < Google::Apis::Core::JsonRepresentation
1913
+ property :type, as: 'type'
1914
+ end
1915
+ end
1916
+
1808
1917
  class PodSecurityPolicyConfig
1809
1918
  # @private
1810
1919
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1837,6 +1946,8 @@ module Google
1837
1946
  # @private
1838
1947
  class Representation < Google::Apis::Core::JsonRepresentation
1839
1948
  property :enabled, as: 'enabled'
1949
+ property :filter, as: 'filter', class: Google::Apis::ContainerV1beta1::Filter, decorator: Google::Apis::ContainerV1beta1::Filter::Representation
1950
+
1840
1951
  property :topic, as: 'topic'
1841
1952
  end
1842
1953
  end
@@ -1916,6 +2027,22 @@ module Google
1916
2027
  end
1917
2028
  end
1918
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
+
1919
2046
  class ServerConfig
1920
2047
  # @private
1921
2048
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2129,6 +2256,8 @@ module Google
2129
2256
  # @private
2130
2257
  class Representation < Google::Apis::Core::JsonRepresentation
2131
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
+
2132
2261
  property :start_time, as: 'startTime'
2133
2262
  end
2134
2263
  end
@@ -2169,6 +2298,8 @@ module Google
2169
2298
  # @private
2170
2299
  class Representation < Google::Apis::Core::JsonRepresentation
2171
2300
  property :cluster_id, as: 'clusterId'
2301
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2302
+
2172
2303
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
2173
2304
 
2174
2305
  property :image_type, as: 'imageType'
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.20.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: 2021-10-04 00:00:00.000000000 Z
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
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.20.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
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.24.0
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: []
65
65
  require_paths:
@@ -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.2.17
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