google-apis-container_v1beta1 0.28.0 → 0.29.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: 88ed92358dcca735a7121ae03dcfbebb337b35668a14ed042b310470401ccde4
4
- data.tar.gz: 13b88cf9c5282c0d60f2f6c19f6b67f2774b2198221c95468e2ddf7890c59fce
3
+ metadata.gz: da5cae016d16feddf7650288655cc479c8aa229c25ae34404ab268e9c9117d13
4
+ data.tar.gz: 46b7289a20b08c97ba5ca0d38fbf9cb379c3c738a5c5b1b88130e07a6344fb25
5
5
  SHA512:
6
- metadata.gz: 99ad583241efaaca10f6f8f5fa4b3695aeff78bb5129e4a90b5fecb6636db4dbaffa1e4a4076bde38fb3a59b7de3deeada7c4631f1592e28328e7dab2fde72a5
7
- data.tar.gz: 31a91deb9b0594aade77d8a92f9fe59ad338c3f75454eb9295f0a5df5c95abf97237cc83a6d4e220535f82dbe3cafca726cdc3e915c80c292ff2dd7b883313ee
6
+ metadata.gz: dec55e77d7d7618a4c084a713f795ad1fe89b9218ebb331776779d57fa71826ddab1ec2ad78f900996811fa4d0e0211631287f788f4031f636f5946516749ceb
7
+ data.tar.gz: 1642867b44f0e5322ecd4e80312ef3b31d6abe7bbab8186dfbadcf70195c776551eac256c1fb647e83cb8c9aa582fed71febfcd9ce30476a706efb7026fa31cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.29.0 (2022-04-25)
4
+
5
+ * Regenerated from discovery document revision 20220330
6
+
3
7
  ### v0.28.0 (2022-04-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20220328
@@ -3111,6 +3111,32 @@ module Google
3111
3111
  end
3112
3112
  end
3113
3113
 
3114
+ # Configuration of all network bandwidth tiers
3115
+ class NetworkPerformanceConfig
3116
+ include Google::Apis::Core::Hashable
3117
+
3118
+ # Specifies the network bandwidth tier for the NodePool for traffic to external/
3119
+ # public IP addresses.
3120
+ # Corresponds to the JSON property `externalIpEgressBandwidthTier`
3121
+ # @return [String]
3122
+ attr_accessor :external_ip_egress_bandwidth_tier
3123
+
3124
+ # Specifies the total network bandwidth tier for the NodePool.
3125
+ # Corresponds to the JSON property `totalEgressBandwidthTier`
3126
+ # @return [String]
3127
+ attr_accessor :total_egress_bandwidth_tier
3128
+
3129
+ def initialize(**args)
3130
+ update!(**args)
3131
+ end
3132
+
3133
+ # Update properties of this object
3134
+ def update!(**args)
3135
+ @external_ip_egress_bandwidth_tier = args[:external_ip_egress_bandwidth_tier] if args.key?(:external_ip_egress_bandwidth_tier)
3136
+ @total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier)
3137
+ end
3138
+ end
3139
+
3114
3140
  # Configuration options for the NetworkPolicy feature. https://kubernetes.io/
3115
3141
  # docs/concepts/services-networking/networkpolicies/
3116
3142
  class NetworkPolicy
@@ -3572,6 +3598,11 @@ module Google
3572
3598
  attr_accessor :create_pod_range
3573
3599
  alias_method :create_pod_range?, :create_pod_range
3574
3600
 
3601
+ # Configuration of all network bandwidth tiers
3602
+ # Corresponds to the JSON property `networkPerformanceConfig`
3603
+ # @return [Google::Apis::ContainerV1beta1::NetworkPerformanceConfig]
3604
+ attr_accessor :network_performance_config
3605
+
3575
3606
  # The IP address range for pod IPs in this node pool. Only applicable if `
3576
3607
  # create_pod_range` is true. Set to blank to have a range chosen with the
3577
3608
  # default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
@@ -3599,6 +3630,7 @@ module Google
3599
3630
  # Update properties of this object
3600
3631
  def update!(**args)
3601
3632
  @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
3633
+ @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
3602
3634
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
3603
3635
  @pod_range = args[:pod_range] if args.key?(:pod_range)
3604
3636
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1beta1
18
18
  # Version of the google-apis-container_v1beta1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220328"
25
+ REVISION = "20220330"
26
26
  end
27
27
  end
28
28
  end
@@ -460,6 +460,12 @@ module Google
460
460
  include Google::Apis::Core::JsonObjectSupport
461
461
  end
462
462
 
463
+ class NetworkPerformanceConfig
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
463
469
  class NetworkPolicy
464
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
471
 
@@ -1706,6 +1712,14 @@ module Google
1706
1712
  end
1707
1713
  end
1708
1714
 
1715
+ class NetworkPerformanceConfig
1716
+ # @private
1717
+ class Representation < Google::Apis::Core::JsonRepresentation
1718
+ property :external_ip_egress_bandwidth_tier, as: 'externalIpEgressBandwidthTier'
1719
+ property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
1720
+ end
1721
+ end
1722
+
1709
1723
  class NetworkPolicy
1710
1724
  # @private
1711
1725
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1814,6 +1828,8 @@ module Google
1814
1828
  # @private
1815
1829
  class Representation < Google::Apis::Core::JsonRepresentation
1816
1830
  property :create_pod_range, as: 'createPodRange'
1831
+ property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig::Representation
1832
+
1817
1833
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
1818
1834
  property :pod_range, as: 'podRange'
1819
1835
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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: 2022-04-18 00:00:00.000000000 Z
11
+ date: 2022-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []