google-apis-container_v1beta1 0.8.0 → 0.9.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: 80a6a38fa394be74645bdbc23e44b6a35b85f71908d00522b442b45818d22574
4
- data.tar.gz: b23a12df72496e0e39516bd7397498e9ddf87e48b78355746738741a0f476a07
3
+ metadata.gz: 928cb84d4871fe5b791be84e692de93befd901897ba7009228080e0dacb14a0c
4
+ data.tar.gz: 4b37ee1dbfedc5b980884679196e37402e6260059353adc34a0702330e30f9ca
5
5
  SHA512:
6
- metadata.gz: ec75951733fe62219d6cb54380ec7aa3399f53773791ba4b66c46c01fd10f4b1e315955fa8e8e97b1ed2eca0b4607a2f28e3b7860104c0d3a2cf33e2076ecdbc
7
- data.tar.gz: 17972bee3e05847dfbcd14cf61d97c66aff97339ac72a36ba378f73e2bfb5d3a747ac9baf8190a2f5ff087b9fb18936da5f2958c2b53934cafe6084906c0d9f5
6
+ metadata.gz: 3eeeb0caffcf5b8e1f893e548168f2440e30c2cf9d25f236bf1191ffcb84f6cae4d1cea9891183c6a57f3e383d313084019793270dedc0d6e302a4afc9956f70
7
+ data.tar.gz: 132da4b04076fb8f10b78bc71923b51295024a1fe9c6bf7d7d6afcbf1d2993533ace5b25cff6354335251948a127f9eb51d7f4456a915feb2a5f2fee712dfa8d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.9.0 (2021-05-26)
4
+
5
+ * Regenerated from discovery document revision 20210517
6
+
3
7
  ### v0.8.0 (2021-05-19)
4
8
 
5
9
  * Unspecified changes
@@ -787,6 +787,11 @@ module Google
787
787
  # @return [Fixnum]
788
788
  attr_accessor :node_ipv4_cidr_size
789
789
 
790
+ # Subset of Nodepool message that has defaults.
791
+ # Corresponds to the JSON property `nodePoolDefaults`
792
+ # @return [Google::Apis::ContainerV1beta1::NodePoolDefaults]
793
+ attr_accessor :node_pool_defaults
794
+
790
795
  # The node pools associated with this cluster. This field should not be set if "
791
796
  # node_config" or "initial_node_count" are specified.
792
797
  # Corresponds to the JSON property `nodePools`
@@ -956,6 +961,7 @@ module Google
956
961
  @network_policy = args[:network_policy] if args.key?(:network_policy)
957
962
  @node_config = args[:node_config] if args.key?(:node_config)
958
963
  @node_ipv4_cidr_size = args[:node_ipv4_cidr_size] if args.key?(:node_ipv4_cidr_size)
964
+ @node_pool_defaults = args[:node_pool_defaults] if args.key?(:node_pool_defaults)
959
965
  @node_pools = args[:node_pools] if args.key?(:node_pools)
960
966
  @notification_config = args[:notification_config] if args.key?(:notification_config)
961
967
  @pod_security_policy_config = args[:pod_security_policy_config] if args.key?(:pod_security_policy_config)
@@ -1585,6 +1591,47 @@ module Google
1585
1591
  end
1586
1592
  end
1587
1593
 
1594
+ # Represents a whole or partial calendar date, such as a birthday. The time of
1595
+ # day and time zone are either specified elsewhere or are insignificant. The
1596
+ # date is relative to the Gregorian Calendar. This can represent one of the
1597
+ # following: * A full date, with non-zero year, month, and day values * A month
1598
+ # and day value, with a zero year, such as an anniversary * A year on its own,
1599
+ # with zero month and day values * A year and month value, with a zero day, such
1600
+ # as a credit card expiration date Related types are google.type.TimeOfDay and `
1601
+ # google.protobuf.Timestamp`.
1602
+ class Date
1603
+ include Google::Apis::Core::Hashable
1604
+
1605
+ # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
1606
+ # specify a year by itself or a year and month where the day isn't significant.
1607
+ # Corresponds to the JSON property `day`
1608
+ # @return [Fixnum]
1609
+ attr_accessor :day
1610
+
1611
+ # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
1612
+ # and day.
1613
+ # Corresponds to the JSON property `month`
1614
+ # @return [Fixnum]
1615
+ attr_accessor :month
1616
+
1617
+ # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
1618
+ # year.
1619
+ # Corresponds to the JSON property `year`
1620
+ # @return [Fixnum]
1621
+ attr_accessor :year
1622
+
1623
+ def initialize(**args)
1624
+ update!(**args)
1625
+ end
1626
+
1627
+ # Update properties of this object
1628
+ def update!(**args)
1629
+ @day = args[:day] if args.key?(:day)
1630
+ @month = args[:month] if args.key?(:month)
1631
+ @year = args[:year] if args.key?(:year)
1632
+ end
1633
+ end
1634
+
1588
1635
  # DefaultSnatStatus contains the desired state of whether default sNAT should be
1589
1636
  # disabled on the cluster.
1590
1637
  class DefaultSnatStatus
@@ -2959,6 +3006,19 @@ module Google
2959
3006
  end
2960
3007
  end
2961
3008
 
3009
+ # Subset of NodeConfig message that has defaults.
3010
+ class NodeConfigDefaults
3011
+ include Google::Apis::Core::Hashable
3012
+
3013
+ def initialize(**args)
3014
+ update!(**args)
3015
+ end
3016
+
3017
+ # Update properties of this object
3018
+ def update!(**args)
3019
+ end
3020
+ end
3021
+
2962
3022
  # Node kubelet configs.
2963
3023
  class NodeKubeletConfig
2964
3024
  include Google::Apis::Core::Hashable
@@ -3285,6 +3345,25 @@ module Google
3285
3345
  end
3286
3346
  end
3287
3347
 
3348
+ # Subset of Nodepool message that has defaults.
3349
+ class NodePoolDefaults
3350
+ include Google::Apis::Core::Hashable
3351
+
3352
+ # Subset of NodeConfig message that has defaults.
3353
+ # Corresponds to the JSON property `nodeConfigDefaults`
3354
+ # @return [Google::Apis::ContainerV1beta1::NodeConfigDefaults]
3355
+ attr_accessor :node_config_defaults
3356
+
3357
+ def initialize(**args)
3358
+ update!(**args)
3359
+ end
3360
+
3361
+ # Update properties of this object
3362
+ def update!(**args)
3363
+ @node_config_defaults = args[:node_config_defaults] if args.key?(:node_config_defaults)
3364
+ end
3365
+ end
3366
+
3288
3367
  # Kubernetes taint is comprised of three fields: key, value, and effect. Effect
3289
3368
  # can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
3290
3369
  # [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
@@ -3958,6 +4037,11 @@ module Google
3958
4037
  # @return [Array<String>]
3959
4038
  attr_accessor :valid_node_versions
3960
4039
 
4040
+ # Maps of Kubernetes version and supported Windows server versions.
4041
+ # Corresponds to the JSON property `windowsVersionMaps`
4042
+ # @return [Hash<String,Google::Apis::ContainerV1beta1::WindowsVersions>]
4043
+ attr_accessor :windows_version_maps
4044
+
3961
4045
  def initialize(**args)
3962
4046
  update!(**args)
3963
4047
  end
@@ -3970,6 +4054,7 @@ module Google
3970
4054
  @valid_image_types = args[:valid_image_types] if args.key?(:valid_image_types)
3971
4055
  @valid_master_versions = args[:valid_master_versions] if args.key?(:valid_master_versions)
3972
4056
  @valid_node_versions = args[:valid_node_versions] if args.key?(:valid_node_versions)
4057
+ @windows_version_maps = args[:windows_version_maps] if args.key?(:windows_version_maps)
3973
4058
  end
3974
4059
  end
3975
4060
 
@@ -5338,6 +5423,63 @@ module Google
5338
5423
  end
5339
5424
  end
5340
5425
 
5426
+ # Windows server version.
5427
+ class WindowsVersion
5428
+ include Google::Apis::Core::Hashable
5429
+
5430
+ # Windows server image type
5431
+ # Corresponds to the JSON property `imageType`
5432
+ # @return [String]
5433
+ attr_accessor :image_type
5434
+
5435
+ # Windows server build number
5436
+ # Corresponds to the JSON property `osVersion`
5437
+ # @return [String]
5438
+ attr_accessor :os_version
5439
+
5440
+ # Represents a whole or partial calendar date, such as a birthday. The time of
5441
+ # day and time zone are either specified elsewhere or are insignificant. The
5442
+ # date is relative to the Gregorian Calendar. This can represent one of the
5443
+ # following: * A full date, with non-zero year, month, and day values * A month
5444
+ # and day value, with a zero year, such as an anniversary * A year on its own,
5445
+ # with zero month and day values * A year and month value, with a zero day, such
5446
+ # as a credit card expiration date Related types are google.type.TimeOfDay and `
5447
+ # google.protobuf.Timestamp`.
5448
+ # Corresponds to the JSON property `supportEndDate`
5449
+ # @return [Google::Apis::ContainerV1beta1::Date]
5450
+ attr_accessor :support_end_date
5451
+
5452
+ def initialize(**args)
5453
+ update!(**args)
5454
+ end
5455
+
5456
+ # Update properties of this object
5457
+ def update!(**args)
5458
+ @image_type = args[:image_type] if args.key?(:image_type)
5459
+ @os_version = args[:os_version] if args.key?(:os_version)
5460
+ @support_end_date = args[:support_end_date] if args.key?(:support_end_date)
5461
+ end
5462
+ end
5463
+
5464
+ # Windows server versions.
5465
+ class WindowsVersions
5466
+ include Google::Apis::Core::Hashable
5467
+
5468
+ # List of Windows server versions.
5469
+ # Corresponds to the JSON property `windowsVersions`
5470
+ # @return [Array<Google::Apis::ContainerV1beta1::WindowsVersion>]
5471
+ attr_accessor :windows_versions
5472
+
5473
+ def initialize(**args)
5474
+ update!(**args)
5475
+ end
5476
+
5477
+ # Update properties of this object
5478
+ def update!(**args)
5479
+ @windows_versions = args[:windows_versions] if args.key?(:windows_versions)
5480
+ end
5481
+ end
5482
+
5341
5483
  # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
5342
5484
  class WorkloadCertificates
5343
5485
  include Google::Apis::Core::Hashable
@@ -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.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210429"
25
+ REVISION = "20210517"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class Date
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class DefaultSnatStatus
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -400,6 +406,12 @@ module Google
400
406
  include Google::Apis::Core::JsonObjectSupport
401
407
  end
402
408
 
409
+ class NodeConfigDefaults
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
403
415
  class NodeKubeletConfig
404
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
417
 
@@ -436,6 +448,12 @@ module Google
436
448
  include Google::Apis::Core::JsonObjectSupport
437
449
  end
438
450
 
451
+ class NodePoolDefaults
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
439
457
  class NodeTaint
440
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
441
459
 
@@ -712,6 +730,18 @@ module Google
712
730
  include Google::Apis::Core::JsonObjectSupport
713
731
  end
714
732
 
733
+ class WindowsVersion
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
739
+ class WindowsVersions
740
+ class Representation < Google::Apis::Core::JsonRepresentation; end
741
+
742
+ include Google::Apis::Core::JsonObjectSupport
743
+ end
744
+
715
745
  class WorkloadCertificates
716
746
  class Representation < Google::Apis::Core::JsonRepresentation; end
717
747
 
@@ -925,6 +955,8 @@ module Google
925
955
  property :node_config, as: 'nodeConfig', class: Google::Apis::ContainerV1beta1::NodeConfig, decorator: Google::Apis::ContainerV1beta1::NodeConfig::Representation
926
956
 
927
957
  property :node_ipv4_cidr_size, as: 'nodeIpv4CidrSize'
958
+ property :node_pool_defaults, as: 'nodePoolDefaults', class: Google::Apis::ContainerV1beta1::NodePoolDefaults, decorator: Google::Apis::ContainerV1beta1::NodePoolDefaults::Representation
959
+
928
960
  collection :node_pools, as: 'nodePools', class: Google::Apis::ContainerV1beta1::NodePool, decorator: Google::Apis::ContainerV1beta1::NodePool::Representation
929
961
 
930
962
  property :notification_config, as: 'notificationConfig', class: Google::Apis::ContainerV1beta1::NotificationConfig, decorator: Google::Apis::ContainerV1beta1::NotificationConfig::Representation
@@ -1119,6 +1151,15 @@ module Google
1119
1151
  end
1120
1152
  end
1121
1153
 
1154
+ class Date
1155
+ # @private
1156
+ class Representation < Google::Apis::Core::JsonRepresentation
1157
+ property :day, as: 'day'
1158
+ property :month, as: 'month'
1159
+ property :year, as: 'year'
1160
+ end
1161
+ end
1162
+
1122
1163
  class DefaultSnatStatus
1123
1164
  # @private
1124
1165
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1481,6 +1522,12 @@ module Google
1481
1522
  end
1482
1523
  end
1483
1524
 
1525
+ class NodeConfigDefaults
1526
+ # @private
1527
+ class Representation < Google::Apis::Core::JsonRepresentation
1528
+ end
1529
+ end
1530
+
1484
1531
  class NodeKubeletConfig
1485
1532
  # @private
1486
1533
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1555,6 +1602,14 @@ module Google
1555
1602
  end
1556
1603
  end
1557
1604
 
1605
+ class NodePoolDefaults
1606
+ # @private
1607
+ class Representation < Google::Apis::Core::JsonRepresentation
1608
+ property :node_config_defaults, as: 'nodeConfigDefaults', class: Google::Apis::ContainerV1beta1::NodeConfigDefaults, decorator: Google::Apis::ContainerV1beta1::NodeConfigDefaults::Representation
1609
+
1610
+ end
1611
+ end
1612
+
1558
1613
  class NodeTaint
1559
1614
  # @private
1560
1615
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1738,6 +1793,8 @@ module Google
1738
1793
  collection :valid_image_types, as: 'validImageTypes'
1739
1794
  collection :valid_master_versions, as: 'validMasterVersions'
1740
1795
  collection :valid_node_versions, as: 'validNodeVersions'
1796
+ hash :windows_version_maps, as: 'windowsVersionMaps', class: Google::Apis::ContainerV1beta1::WindowsVersions, decorator: Google::Apis::ContainerV1beta1::WindowsVersions::Representation
1797
+
1741
1798
  end
1742
1799
  end
1743
1800
 
@@ -2055,6 +2112,24 @@ module Google
2055
2112
  end
2056
2113
  end
2057
2114
 
2115
+ class WindowsVersion
2116
+ # @private
2117
+ class Representation < Google::Apis::Core::JsonRepresentation
2118
+ property :image_type, as: 'imageType'
2119
+ property :os_version, as: 'osVersion'
2120
+ property :support_end_date, as: 'supportEndDate', class: Google::Apis::ContainerV1beta1::Date, decorator: Google::Apis::ContainerV1beta1::Date::Representation
2121
+
2122
+ end
2123
+ end
2124
+
2125
+ class WindowsVersions
2126
+ # @private
2127
+ class Representation < Google::Apis::Core::JsonRepresentation
2128
+ collection :windows_versions, as: 'windowsVersions', class: Google::Apis::ContainerV1beta1::WindowsVersion, decorator: Google::Apis::ContainerV1beta1::WindowsVersion::Representation
2129
+
2130
+ end
2131
+ end
2132
+
2058
2133
  class WorkloadCertificates
2059
2134
  # @private
2060
2135
  class Representation < Google::Apis::Core::JsonRepresentation
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.8.0
4
+ version: 0.9.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-05-24 00:00:00.000000000 Z
11
+ date: 2021-05-31 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.8.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.9.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: []