google-apis-container_v1beta1 0.3.0 → 0.4.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: 87767e2858d8d8be09c08e44331d36095f57b55815e41dcdf8d7765c61fc1299
4
- data.tar.gz: 350f1e6f0c8d3b38a40a39b6dca576156fff40a56a1c4585d6edf439eb21c2ee
3
+ metadata.gz: '085a6dc064ce7f1f7746ae9eb9f139160a0ea929ded3b70c4cbf9fb05e2265ca'
4
+ data.tar.gz: c644419f4b7f067b9db131fdb01fb55b9a5606d7c449d3af8161744c0931a6c4
5
5
  SHA512:
6
- metadata.gz: 5bcc97f9a5be6e5ea9bab38cf132926b885d1b5bec978e57b61848621501ae222c4548cc57ae15b230d367aa56637000ab09404cec9bb24142be4238b58d5679
7
- data.tar.gz: 463c557a9ebceb34717c418dd8431bf6ae5b03c957b07f72cbb7afe01b58dff59a8218225d9a5691ae3eda3e3f79a0912cb2ba39786b981f1b37539c0e8e0b86
6
+ metadata.gz: e7aa43ba2f83a1c38dd617ed02ba5e22c10052e63cca742062c05f7eea4269c06b8f767d1874d119f979f4bbb9cdcef0ec7f19180e78401b5c53c302929a0351
7
+ data.tar.gz: 37a1f5321c35f7e79afb9448897f3291c2ddf1ab63ba263fb23d878261c4084bd5dbd329af7909530de72c73c02a6d991ab432a40ba858960274b76dd2f1d676
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.4.0 (2021-03-06)
4
+
5
+ * Regenerated from discovery document revision 20210224
6
+
3
7
  ### v0.3.0 (2021-02-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20210216
@@ -1085,6 +1085,12 @@ module Google
1085
1085
  # @return [Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig]
1086
1086
  attr_accessor :desired_intra_node_visibility_config
1087
1087
 
1088
+ # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
1089
+ # subsetting on this cluster.
1090
+ # Corresponds to the JSON property `desiredL4ilbSubsettingConfig`
1091
+ # @return [Google::Apis::ContainerV1beta1::IlbSubsettingConfig]
1092
+ attr_accessor :desired_l4ilb_subsetting_config
1093
+
1088
1094
  # The desired list of Google Compute Engine [zones](https://cloud.google.com/
1089
1095
  # compute/docs/zones#available) in which the cluster's nodes should be located.
1090
1096
  # This list must always include the cluster's primary zone. Warning: changing
@@ -1235,6 +1241,7 @@ module Google
1235
1241
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1236
1242
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1237
1243
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
1244
+ @desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
1238
1245
  @desired_locations = args[:desired_locations] if args.key?(:desired_locations)
1239
1246
  @desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
1240
1247
  @desired_master = args[:desired_master] if args.key?(:desired_master)
@@ -1774,6 +1781,27 @@ module Google
1774
1781
  end
1775
1782
  end
1776
1783
 
1784
+ # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
1785
+ # subsetting on this cluster.
1786
+ class IlbSubsettingConfig
1787
+ include Google::Apis::Core::Hashable
1788
+
1789
+ # Enables l4 ILB subsetting for this cluster
1790
+ # Corresponds to the JSON property `enabled`
1791
+ # @return [Boolean]
1792
+ attr_accessor :enabled
1793
+ alias_method :enabled?, :enabled
1794
+
1795
+ def initialize(**args)
1796
+ update!(**args)
1797
+ end
1798
+
1799
+ # Update properties of this object
1800
+ def update!(**args)
1801
+ @enabled = args[:enabled] if args.key?(:enabled)
1802
+ end
1803
+ end
1804
+
1777
1805
  # Configuration for controlling how IPs are allocated in the cluster.
1778
1806
  class IpAllocationPolicy
1779
1807
  include Google::Apis::Core::Hashable
@@ -2533,6 +2561,12 @@ module Google
2533
2561
  attr_accessor :enable_intra_node_visibility
2534
2562
  alias_method :enable_intra_node_visibility?, :enable_intra_node_visibility
2535
2563
 
2564
+ # Whether L4ILB Subsetting is enabled for this cluster.
2565
+ # Corresponds to the JSON property `enableL4ilbSubsetting`
2566
+ # @return [Boolean]
2567
+ attr_accessor :enable_l4ilb_subsetting
2568
+ alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
2569
+
2536
2570
  # Output only. The relative name of the Google Compute Engine network(https://
2537
2571
  # cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
2538
2572
  # cluster is connected. Example: projects/my-project/global/networks/my-network
@@ -2562,6 +2596,7 @@ module Google
2562
2596
  @datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
2563
2597
  @default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
2564
2598
  @enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
2599
+ @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
2565
2600
  @network = args[:network] if args.key?(:network)
2566
2601
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
2567
2602
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
@@ -2617,6 +2652,27 @@ module Google
2617
2652
  end
2618
2653
  end
2619
2654
 
2655
+ # Collection of Compute Engine network tags that can be applied to a node's
2656
+ # underyling VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
2657
+ # docs/reference/rest/v1/NodeConfig)).
2658
+ class NetworkTags
2659
+ include Google::Apis::Core::Hashable
2660
+
2661
+ # List of network tags.
2662
+ # Corresponds to the JSON property `tags`
2663
+ # @return [Array<String>]
2664
+ attr_accessor :tags
2665
+
2666
+ def initialize(**args)
2667
+ update!(**args)
2668
+ end
2669
+
2670
+ # Update properties of this object
2671
+ def update!(**args)
2672
+ @tags = args[:tags] if args.key?(:tags)
2673
+ end
2674
+ end
2675
+
2620
2676
  # Parameters that describe the nodes in a cluster.
2621
2677
  class NodeConfig
2622
2678
  include Google::Apis::Core::Hashable
@@ -2876,6 +2932,26 @@ module Google
2876
2932
  end
2877
2933
  end
2878
2934
 
2935
+ # Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
2936
+ # concepts/overview/working-with-objects/labels).
2937
+ class NodeLabels
2938
+ include Google::Apis::Core::Hashable
2939
+
2940
+ # Map of node label keys and node label values.
2941
+ # Corresponds to the JSON property `labels`
2942
+ # @return [Hash<String,String>]
2943
+ attr_accessor :labels
2944
+
2945
+ def initialize(**args)
2946
+ update!(**args)
2947
+ end
2948
+
2949
+ # Update properties of this object
2950
+ def update!(**args)
2951
+ @labels = args[:labels] if args.key?(:labels)
2952
+ end
2953
+ end
2954
+
2879
2955
  # NodeManagement defines the set of node management services turned on for the
2880
2956
  # node pool.
2881
2957
  class NodeManagement
@@ -2911,6 +2987,48 @@ module Google
2911
2987
  end
2912
2988
  end
2913
2989
 
2990
+ # Parameters for node pool-level network config. Only applicable if `
2991
+ # ip_allocation_policy.use_ip_aliases` is true.
2992
+ class NodeNetworkConfig
2993
+ include Google::Apis::Core::Hashable
2994
+
2995
+ # Input only. [Input only] Whether to create a new range for pod IPs in this
2996
+ # node pool. Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if
2997
+ # they are not specified. If neither `create_pod_range` or `pod_range` are
2998
+ # specified, the cluster-level default (`ip_allocation_policy.
2999
+ # cluster_ipv4_cidr_block`) is used.
3000
+ # Corresponds to the JSON property `createPodRange`
3001
+ # @return [Boolean]
3002
+ attr_accessor :create_pod_range
3003
+ alias_method :create_pod_range?, :create_pod_range
3004
+
3005
+ # The IP address range for pod IPs in this node pool. Only applicable if `
3006
+ # create_pod_range` is true. Set to blank to have a range chosen with the
3007
+ # default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
3008
+ # specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-
3009
+ # Domain_Routing) notation (e.g. `10.96.0.0/14`) to pick a specific range to use.
3010
+ # Corresponds to the JSON property `podIpv4CidrBlock`
3011
+ # @return [String]
3012
+ attr_accessor :pod_ipv4_cidr_block
3013
+
3014
+ # The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
3015
+ # ID is used for the new range.
3016
+ # Corresponds to the JSON property `podRange`
3017
+ # @return [String]
3018
+ attr_accessor :pod_range
3019
+
3020
+ def initialize(**args)
3021
+ update!(**args)
3022
+ end
3023
+
3024
+ # Update properties of this object
3025
+ def update!(**args)
3026
+ @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
3027
+ @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
3028
+ @pod_range = args[:pod_range] if args.key?(:pod_range)
3029
+ end
3030
+ end
3031
+
2914
3032
  # NodePool contains the name and configuration for a cluster's node pool. Node
2915
3033
  # pools are a set of nodes (i.e. VM's), with a common configuration and
2916
3034
  # specification, under the control of the cluster master. They may have a set of
@@ -2977,6 +3095,12 @@ module Google
2977
3095
  # @return [String]
2978
3096
  attr_accessor :name
2979
3097
 
3098
+ # Parameters for node pool-level network config. Only applicable if `
3099
+ # ip_allocation_policy.use_ip_aliases` is true.
3100
+ # Corresponds to the JSON property `networkConfig`
3101
+ # @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
3102
+ attr_accessor :network_config
3103
+
2980
3104
  # [Output only] The pod CIDR block size per node in this node pool.
2981
3105
  # Corresponds to the JSON property `podIpv4CidrSize`
2982
3106
  # @return [Fixnum]
@@ -3036,6 +3160,7 @@ module Google
3036
3160
  @management = args[:management] if args.key?(:management)
3037
3161
  @max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
3038
3162
  @name = args[:name] if args.key?(:name)
3163
+ @network_config = args[:network_config] if args.key?(:network_config)
3039
3164
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
3040
3165
  @self_link = args[:self_link] if args.key?(:self_link)
3041
3166
  @status = args[:status] if args.key?(:status)
@@ -3120,6 +3245,26 @@ module Google
3120
3245
  end
3121
3246
  end
3122
3247
 
3248
+ # Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
3249
+ # configuration/taint-and-toleration).
3250
+ class NodeTaints
3251
+ include Google::Apis::Core::Hashable
3252
+
3253
+ # List of node taints.
3254
+ # Corresponds to the JSON property `taints`
3255
+ # @return [Array<Google::Apis::ContainerV1beta1::NodeTaint>]
3256
+ attr_accessor :taints
3257
+
3258
+ def initialize(**args)
3259
+ update!(**args)
3260
+ end
3261
+
3262
+ # Update properties of this object
3263
+ def update!(**args)
3264
+ @taints = args[:taints] if args.key?(:taints)
3265
+ end
3266
+ end
3267
+
3123
3268
  # NotificationConfig is the configuration of notifications.
3124
3269
  class NotificationConfig
3125
3270
  include Google::Apis::Core::Hashable
@@ -4766,6 +4911,12 @@ module Google
4766
4911
  # @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
4767
4912
  attr_accessor :kubelet_config
4768
4913
 
4914
+ # Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
4915
+ # concepts/overview/working-with-objects/labels).
4916
+ # Corresponds to the JSON property `labels`
4917
+ # @return [Google::Apis::ContainerV1beta1::NodeLabels]
4918
+ attr_accessor :labels
4919
+
4769
4920
  # Parameters that can be configured on Linux nodes.
4770
4921
  # Corresponds to the JSON property `linuxNodeConfig`
4771
4922
  # @return [Google::Apis::ContainerV1beta1::LinuxNodeConfig]
@@ -4810,6 +4961,19 @@ module Google
4810
4961
  # @return [String]
4811
4962
  attr_accessor :project_id
4812
4963
 
4964
+ # Collection of Compute Engine network tags that can be applied to a node's
4965
+ # underyling VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
4966
+ # docs/reference/rest/v1/NodeConfig)).
4967
+ # Corresponds to the JSON property `tags`
4968
+ # @return [Google::Apis::ContainerV1beta1::NetworkTags]
4969
+ attr_accessor :tags
4970
+
4971
+ # Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
4972
+ # configuration/taint-and-toleration).
4973
+ # Corresponds to the JSON property `taints`
4974
+ # @return [Google::Apis::ContainerV1beta1::NodeTaints]
4975
+ attr_accessor :taints
4976
+
4813
4977
  # These upgrade settings control the level of parallelism and the level of
4814
4978
  # disruption caused by an upgrade. maxUnavailable controls the number of nodes
4815
4979
  # that can be simultaneously unavailable. maxSurge controls the number of
@@ -4850,12 +5014,15 @@ module Google
4850
5014
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
4851
5015
  @image_type = args[:image_type] if args.key?(:image_type)
4852
5016
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
5017
+ @labels = args[:labels] if args.key?(:labels)
4853
5018
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
4854
5019
  @locations = args[:locations] if args.key?(:locations)
4855
5020
  @name = args[:name] if args.key?(:name)
4856
5021
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
4857
5022
  @node_version = args[:node_version] if args.key?(:node_version)
4858
5023
  @project_id = args[:project_id] if args.key?(:project_id)
5024
+ @tags = args[:tags] if args.key?(:tags)
5025
+ @taints = args[:taints] if args.key?(:taints)
4859
5026
  @upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
4860
5027
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
4861
5028
  @zone = args[:zone] if args.key?(:zone)
@@ -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.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210216"
25
+ REVISION = "20210224"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,12 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class IlbSubsettingConfig
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
235
241
  class IpAllocationPolicy
236
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
243
 
@@ -376,6 +382,12 @@ module Google
376
382
  include Google::Apis::Core::JsonObjectSupport
377
383
  end
378
384
 
385
+ class NetworkTags
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
379
391
  class NodeConfig
380
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
393
 
@@ -388,12 +400,24 @@ module Google
388
400
  include Google::Apis::Core::JsonObjectSupport
389
401
  end
390
402
 
403
+ class NodeLabels
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
391
409
  class NodeManagement
392
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
411
 
394
412
  include Google::Apis::Core::JsonObjectSupport
395
413
  end
396
414
 
415
+ class NodeNetworkConfig
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
397
421
  class NodePool
398
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
423
 
@@ -412,6 +436,12 @@ module Google
412
436
  include Google::Apis::Core::JsonObjectSupport
413
437
  end
414
438
 
439
+ class NodeTaints
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
415
445
  class NotificationConfig
416
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
447
 
@@ -952,6 +982,8 @@ module Google
952
982
  property :desired_image_type, as: 'desiredImageType'
953
983
  property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
954
984
 
985
+ property :desired_l4ilb_subsetting_config, as: 'desiredL4ilbSubsettingConfig', class: Google::Apis::ContainerV1beta1::IlbSubsettingConfig, decorator: Google::Apis::ContainerV1beta1::IlbSubsettingConfig::Representation
986
+
955
987
  collection :desired_locations, as: 'desiredLocations'
956
988
  property :desired_logging_service, as: 'desiredLoggingService'
957
989
  property :desired_master, as: 'desiredMaster', class: Google::Apis::ContainerV1beta1::Master, decorator: Google::Apis::ContainerV1beta1::Master::Representation
@@ -1138,6 +1170,13 @@ module Google
1138
1170
  end
1139
1171
  end
1140
1172
 
1173
+ class IlbSubsettingConfig
1174
+ # @private
1175
+ class Representation < Google::Apis::Core::JsonRepresentation
1176
+ property :enabled, as: 'enabled'
1177
+ end
1178
+ end
1179
+
1141
1180
  class IpAllocationPolicy
1142
1181
  # @private
1143
1182
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1342,6 +1381,7 @@ module Google
1342
1381
  property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
1343
1382
 
1344
1383
  property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
1384
+ property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
1345
1385
  property :network, as: 'network'
1346
1386
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
1347
1387
  property :subnetwork, as: 'subnetwork'
@@ -1363,6 +1403,13 @@ module Google
1363
1403
  end
1364
1404
  end
1365
1405
 
1406
+ class NetworkTags
1407
+ # @private
1408
+ class Representation < Google::Apis::Core::JsonRepresentation
1409
+ collection :tags, as: 'tags'
1410
+ end
1411
+ end
1412
+
1366
1413
  class NodeConfig
1367
1414
  # @private
1368
1415
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1410,6 +1457,13 @@ module Google
1410
1457
  end
1411
1458
  end
1412
1459
 
1460
+ class NodeLabels
1461
+ # @private
1462
+ class Representation < Google::Apis::Core::JsonRepresentation
1463
+ hash :labels, as: 'labels'
1464
+ end
1465
+ end
1466
+
1413
1467
  class NodeManagement
1414
1468
  # @private
1415
1469
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1420,6 +1474,15 @@ module Google
1420
1474
  end
1421
1475
  end
1422
1476
 
1477
+ class NodeNetworkConfig
1478
+ # @private
1479
+ class Representation < Google::Apis::Core::JsonRepresentation
1480
+ property :create_pod_range, as: 'createPodRange'
1481
+ property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
1482
+ property :pod_range, as: 'podRange'
1483
+ end
1484
+ end
1485
+
1423
1486
  class NodePool
1424
1487
  # @private
1425
1488
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1437,6 +1500,8 @@ module Google
1437
1500
  property :max_pods_constraint, as: 'maxPodsConstraint', class: Google::Apis::ContainerV1beta1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1beta1::MaxPodsConstraint::Representation
1438
1501
 
1439
1502
  property :name, as: 'name'
1503
+ property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
1504
+
1440
1505
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
1441
1506
  property :self_link, as: 'selfLink'
1442
1507
  property :status, as: 'status'
@@ -1466,6 +1531,14 @@ module Google
1466
1531
  end
1467
1532
  end
1468
1533
 
1534
+ class NodeTaints
1535
+ # @private
1536
+ class Representation < Google::Apis::Core::JsonRepresentation
1537
+ collection :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaint, decorator: Google::Apis::ContainerV1beta1::NodeTaint::Representation
1538
+
1539
+ end
1540
+ end
1541
+
1469
1542
  class NotificationConfig
1470
1543
  # @private
1471
1544
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1869,6 +1942,8 @@ module Google
1869
1942
  property :image_type, as: 'imageType'
1870
1943
  property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
1871
1944
 
1945
+ property :labels, as: 'labels', class: Google::Apis::ContainerV1beta1::NodeLabels, decorator: Google::Apis::ContainerV1beta1::NodeLabels::Representation
1946
+
1872
1947
  property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1beta1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1beta1::LinuxNodeConfig::Representation
1873
1948
 
1874
1949
  collection :locations, as: 'locations'
@@ -1876,6 +1951,10 @@ module Google
1876
1951
  property :node_pool_id, as: 'nodePoolId'
1877
1952
  property :node_version, as: 'nodeVersion'
1878
1953
  property :project_id, as: 'projectId'
1954
+ property :tags, as: 'tags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
1955
+
1956
+ property :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaints, decorator: Google::Apis::ContainerV1beta1::NodeTaints::Representation
1957
+
1879
1958
  property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1beta1::UpgradeSettings, decorator: Google::Apis::ContainerV1beta1::UpgradeSettings::Representation
1880
1959
 
1881
1960
  property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig::Representation
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.3.0
4
+ version: 0.4.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-02-22 00:00:00.000000000 Z
11
+ date: 2021-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.4.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.13
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Kubernetes Engine API V1beta1