google-apis-container_v1beta1 0.45.0 → 0.47.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: e313c378df56ce38485d56a620f5d1151feb65c2264f77581468d9a2d2ecfce0
4
- data.tar.gz: ead7c36ca4a7f84483b583281d5f32c0ac44fa2400b4f9d6e2f20e3efc710d2e
3
+ metadata.gz: 5e4e4c718e02637b34b26fc409f52d3bc28eb92b1818d249a8dac93f9435be45
4
+ data.tar.gz: e4b4c96ba1db314cf728432d1b056ea84a442ac07cf2d421437f506c4c5c352b
5
5
  SHA512:
6
- metadata.gz: 7a5bbe43b557ee1a1e68d4bdf6bf0fb8448e89d43b7d43277859f502b2856d59fb6651c4aa19254d80c45621cc56a45898e528245aadcdf05c1baa19fa1d4116
7
- data.tar.gz: 197fda813268e2a86607d886379d5aee945e6b47ece2f5907e51fad1aee7276a40090552afd5fc0d8f658b2667de60a6d49ae93585a1c1828c609c27542c505c
6
+ metadata.gz: dd26bf604d0495a7d6d39076f5a77cd33afc86f5ef0c7ade2bb720435046ca75c5565ad9895240e4e6a3fdf533c2568f39291f56f64447f1439dcc4ff1727788
7
+ data.tar.gz: 6891e8e27ed3cd687d27b43c26dde3a3ad6eca6b6773e658fd5e1a737f39f30f1609801d23f816625d25b5bfe5875df41bdf63ffec05cf808dadcf60f53602dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.47.0 (2023-04-23)
4
+
5
+ * Regenerated from discovery document revision 20230404
6
+
7
+ ### v0.46.0 (2023-03-19)
8
+
9
+ * Regenerated from discovery document revision 20230304
10
+
3
11
  ### v0.45.0 (2023-02-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20230207
@@ -69,6 +69,26 @@ module Google
69
69
  end
70
70
  end
71
71
 
72
+ # AdditionalPodRangesConfig is the configuration for additional pod secondary
73
+ # ranges supporting the ClusterUpdate message.
74
+ class AdditionalPodRangesConfig
75
+ include Google::Apis::Core::Hashable
76
+
77
+ # Name for pod secondary ipv4 range which has the actual range defined ahead.
78
+ # Corresponds to the JSON property `podRangeNames`
79
+ # @return [Array<String>]
80
+ attr_accessor :pod_range_names
81
+
82
+ def initialize(**args)
83
+ update!(**args)
84
+ end
85
+
86
+ # Update properties of this object
87
+ def update!(**args)
88
+ @pod_range_names = args[:pod_range_names] if args.key?(:pod_range_names)
89
+ end
90
+ end
91
+
72
92
  # Configuration for the addons that can be automatically spun up in the cluster,
73
93
  # enabling additional functionality.
74
94
  class AddonsConfig
@@ -773,6 +793,11 @@ module Google
773
793
  # @return [String]
774
794
  attr_accessor :expire_time
775
795
 
796
+ # Fleet is the fleet configuration for the cluster.
797
+ # Corresponds to the JSON property `fleet`
798
+ # @return [Google::Apis::ContainerV1beta1::Fleet]
799
+ attr_accessor :fleet
800
+
776
801
  # Output only. Unique id for the cluster.
777
802
  # Corresponds to the JSON property `id`
778
803
  # @return [String]
@@ -1131,6 +1156,7 @@ module Google
1131
1156
  @endpoint = args[:endpoint] if args.key?(:endpoint)
1132
1157
  @etag = args[:etag] if args.key?(:etag)
1133
1158
  @expire_time = args[:expire_time] if args.key?(:expire_time)
1159
+ @fleet = args[:fleet] if args.key?(:fleet)
1134
1160
  @id = args[:id] if args.key?(:id)
1135
1161
  @identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
1136
1162
  @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
@@ -1257,6 +1283,12 @@ module Google
1257
1283
  class ClusterUpdate
1258
1284
  include Google::Apis::Core::Hashable
1259
1285
 
1286
+ # AdditionalPodRangesConfig is the configuration for additional pod secondary
1287
+ # ranges supporting the ClusterUpdate message.
1288
+ # Corresponds to the JSON property `additionalPodRangesConfig`
1289
+ # @return [Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig]
1290
+ attr_accessor :additional_pod_ranges_config
1291
+
1260
1292
  # Configuration for the addons that can be automatically spun up in the cluster,
1261
1293
  # enabling additional functionality.
1262
1294
  # Corresponds to the JSON property `desiredAddonsConfig`
@@ -1548,12 +1580,19 @@ module Google
1548
1580
  # @return [String]
1549
1581
  attr_accessor :etag
1550
1582
 
1583
+ # AdditionalPodRangesConfig is the configuration for additional pod secondary
1584
+ # ranges supporting the ClusterUpdate message.
1585
+ # Corresponds to the JSON property `removedAdditionalPodRangesConfig`
1586
+ # @return [Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig]
1587
+ attr_accessor :removed_additional_pod_ranges_config
1588
+
1551
1589
  def initialize(**args)
1552
1590
  update!(**args)
1553
1591
  end
1554
1592
 
1555
1593
  # Update properties of this object
1556
1594
  def update!(**args)
1595
+ @additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
1557
1596
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
1558
1597
  @desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
1559
1598
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
@@ -1601,6 +1640,7 @@ module Google
1601
1640
  @desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
1602
1641
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
1603
1642
  @etag = args[:etag] if args.key?(:etag)
1643
+ @removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
1604
1644
  end
1605
1645
  end
1606
1646
 
@@ -1920,7 +1960,7 @@ module Google
1920
1960
  # @return [String]
1921
1961
  attr_accessor :key_name
1922
1962
 
1923
- # Denotes the state of etcd encryption.
1963
+ # The desired state of etcd encryption.
1924
1964
  # Corresponds to the JSON property `state`
1925
1965
  # @return [String]
1926
1966
  attr_accessor :state
@@ -2122,6 +2162,42 @@ module Google
2122
2162
  end
2123
2163
  end
2124
2164
 
2165
+ # Fleet is the fleet configuration for the cluster.
2166
+ class Fleet
2167
+ include Google::Apis::Core::Hashable
2168
+
2169
+ # [Output only] The full resource name of the registered fleet membership of the
2170
+ # cluster, in the format `//gkehub.googleapis.com/projects/*/locations/*/
2171
+ # memberships/*`.
2172
+ # Corresponds to the JSON property `membership`
2173
+ # @return [String]
2174
+ attr_accessor :membership
2175
+
2176
+ # [Output only] Whether the cluster has been registered through the fleet API.
2177
+ # Corresponds to the JSON property `preRegistered`
2178
+ # @return [Boolean]
2179
+ attr_accessor :pre_registered
2180
+ alias_method :pre_registered?, :pre_registered
2181
+
2182
+ # The Fleet host project(project ID or project number) where this cluster will
2183
+ # be registered to. This field cannot be changed after the cluster has been
2184
+ # registered.
2185
+ # Corresponds to the JSON property `project`
2186
+ # @return [String]
2187
+ attr_accessor :project
2188
+
2189
+ def initialize(**args)
2190
+ update!(**args)
2191
+ end
2192
+
2193
+ # Update properties of this object
2194
+ def update!(**args)
2195
+ @membership = args[:membership] if args.key?(:membership)
2196
+ @pre_registered = args[:pre_registered] if args.key?(:pre_registered)
2197
+ @project = args[:project] if args.key?(:project)
2198
+ end
2199
+ end
2200
+
2125
2201
  # GPUSharingConfig represents the GPU sharing configuration for Hardware
2126
2202
  # Accelerators.
2127
2203
  class GpuSharingConfig
@@ -2435,6 +2511,12 @@ module Google
2435
2511
  class IpAllocationPolicy
2436
2512
  include Google::Apis::Core::Hashable
2437
2513
 
2514
+ # AdditionalPodRangesConfig is the configuration for additional pod secondary
2515
+ # ranges supporting the ClusterUpdate message.
2516
+ # Corresponds to the JSON property `additionalPodRangesConfig`
2517
+ # @return [Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig]
2518
+ attr_accessor :additional_pod_ranges_config
2519
+
2438
2520
  # If true, allow allocation of cluster CIDR ranges that overlap with certain
2439
2521
  # kinds of network routes. By default we do not allow cluster CIDR ranges to
2440
2522
  # intersect with any user declared routes. With allow_route_overlap == true, we
@@ -2502,6 +2584,11 @@ module Google
2502
2584
  # @return [String]
2503
2585
  attr_accessor :node_ipv4_cidr_block
2504
2586
 
2587
+ # [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
2588
+ # Corresponds to the JSON property `podCidrOverprovisionConfig`
2589
+ # @return [Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig]
2590
+ attr_accessor :pod_cidr_overprovision_config
2591
+
2505
2592
  # This field is deprecated, use services_ipv4_cidr_block.
2506
2593
  # Corresponds to the JSON property `servicesIpv4Cidr`
2507
2594
  # @return [String]
@@ -2585,6 +2672,7 @@ module Google
2585
2672
 
2586
2673
  # Update properties of this object
2587
2674
  def update!(**args)
2675
+ @additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
2588
2676
  @allow_route_overlap = args[:allow_route_overlap] if args.key?(:allow_route_overlap)
2589
2677
  @cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
2590
2678
  @cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
@@ -2593,6 +2681,7 @@ module Google
2593
2681
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
2594
2682
  @node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
2595
2683
  @node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
2684
+ @pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
2596
2685
  @services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
2597
2686
  @services_ipv4_cidr_block = args[:services_ipv4_cidr_block] if args.key?(:services_ipv4_cidr_block)
2598
2687
  @services_ipv6_cidr_block = args[:services_ipv6_cidr_block] if args.key?(:services_ipv6_cidr_block)
@@ -4048,6 +4137,11 @@ module Google
4048
4137
  # @return [Google::Apis::ContainerV1beta1::NetworkPerformanceConfig]
4049
4138
  attr_accessor :network_performance_config
4050
4139
 
4140
+ # [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
4141
+ # Corresponds to the JSON property `podCidrOverprovisionConfig`
4142
+ # @return [Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig]
4143
+ attr_accessor :pod_cidr_overprovision_config
4144
+
4051
4145
  # The IP address range for pod IPs in this node pool. Only applicable if `
4052
4146
  # create_pod_range` is true. Set to blank to have a range chosen with the
4053
4147
  # default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
@@ -4077,6 +4171,7 @@ module Google
4077
4171
  @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
4078
4172
  @enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
4079
4173
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
4174
+ @pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
4080
4175
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
4081
4176
  @pod_range = args[:pod_range] if args.key?(:pod_range)
4082
4177
  end
@@ -4523,7 +4618,8 @@ module Google
4523
4618
  # @return [Google::Apis::ContainerV1beta1::OperationProgress]
4524
4619
  attr_accessor :progress
4525
4620
 
4526
- # Server-defined URL for the resource.
4621
+ # Server-defined URI for the operation. Example: `https://container.googleapis.
4622
+ # com/v1alpha1/projects/123/locations/us-central1/operations/operation-123`.
4527
4623
  # Corresponds to the JSON property `selfLink`
4528
4624
  # @return [String]
4529
4625
  attr_accessor :self_link
@@ -4545,7 +4641,14 @@ module Google
4545
4641
  # @return [String]
4546
4642
  attr_accessor :status_message
4547
4643
 
4548
- # Server-defined URL for the target of the operation.
4644
+ # Server-defined URI for the target of the operation. The format of this is a
4645
+ # URI to the resource being modified (such as a cluster, node pool, or node).
4646
+ # For node pool repairs, there may be multiple nodes being repaired, but only
4647
+ # one will be the target. Examples: - `https://container.googleapis.com/v1beta1/
4648
+ # projects/123/locations/us-central1/clusters/my-cluster` - `https://container.
4649
+ # googleapis.com/v1beta1/projects/123/zones/us-central1-c/clusters/my-cluster/
4650
+ # nodePools/my-np` - `https://container.googleapis.com/v1beta1/projects/123/
4651
+ # zones/us-central1-c/clusters/my-cluster/nodePools/my-np/node/my-node`
4549
4652
  # Corresponds to the JSON property `targetLink`
4550
4653
  # @return [String]
4551
4654
  attr_accessor :target_link
@@ -4640,6 +4743,27 @@ module Google
4640
4743
  end
4641
4744
  end
4642
4745
 
4746
+ # [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
4747
+ class PodCidrOverprovisionConfig
4748
+ include Google::Apis::Core::Hashable
4749
+
4750
+ # Whether Pod CIDR overprovisioning is disabled. Note: Pod CIDR overprovisioning
4751
+ # is enabled by default.
4752
+ # Corresponds to the JSON property `disable`
4753
+ # @return [Boolean]
4754
+ attr_accessor :disable
4755
+ alias_method :disable?, :disable
4756
+
4757
+ def initialize(**args)
4758
+ update!(**args)
4759
+ end
4760
+
4761
+ # Update properties of this object
4762
+ def update!(**args)
4763
+ @disable = args[:disable] if args.key?(:disable)
4764
+ end
4765
+ end
4766
+
4643
4767
  # Configuration for the PodSecurityPolicy feature.
4644
4768
  class PodSecurityPolicyConfig
4645
4769
  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.45.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230207"
25
+ REVISION = "20230404"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AdditionalPodRangesConfig
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class AddonsConfig
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -256,6 +262,12 @@ module Google
256
262
  include Google::Apis::Core::JsonObjectSupport
257
263
  end
258
264
 
265
+ class Fleet
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
259
271
  class GpuSharingConfig
260
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
273
 
@@ -646,6 +658,12 @@ module Google
646
658
  include Google::Apis::Core::JsonObjectSupport
647
659
  end
648
660
 
661
+ class PodCidrOverprovisionConfig
662
+ class Representation < Google::Apis::Core::JsonRepresentation; end
663
+
664
+ include Google::Apis::Core::JsonObjectSupport
665
+ end
666
+
649
667
  class PodSecurityPolicyConfig
650
668
  class Representation < Google::Apis::Core::JsonRepresentation; end
651
669
 
@@ -994,6 +1012,13 @@ module Google
994
1012
  end
995
1013
  end
996
1014
 
1015
+ class AdditionalPodRangesConfig
1016
+ # @private
1017
+ class Representation < Google::Apis::Core::JsonRepresentation
1018
+ collection :pod_range_names, as: 'podRangeNames'
1019
+ end
1020
+ end
1021
+
997
1022
  class AddonsConfig
998
1023
  # @private
999
1024
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1185,6 +1210,8 @@ module Google
1185
1210
  property :endpoint, as: 'endpoint'
1186
1211
  property :etag, as: 'etag'
1187
1212
  property :expire_time, as: 'expireTime'
1213
+ property :fleet, as: 'fleet', class: Google::Apis::ContainerV1beta1::Fleet, decorator: Google::Apis::ContainerV1beta1::Fleet::Representation
1214
+
1188
1215
  property :id, as: 'id'
1189
1216
  property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
1190
1217
 
@@ -1289,6 +1316,8 @@ module Google
1289
1316
  class ClusterUpdate
1290
1317
  # @private
1291
1318
  class Representation < Google::Apis::Core::JsonRepresentation
1319
+ property :additional_pod_ranges_config, as: 'additionalPodRangesConfig', class: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig::Representation
1320
+
1292
1321
  property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
1293
1322
 
1294
1323
  property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
@@ -1371,6 +1400,8 @@ module Google
1371
1400
  property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
1372
1401
 
1373
1402
  property :etag, as: 'etag'
1403
+ property :removed_additional_pod_ranges_config, as: 'removedAdditionalPodRangesConfig', class: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig::Representation
1404
+
1374
1405
  end
1375
1406
  end
1376
1407
 
@@ -1523,6 +1554,15 @@ module Google
1523
1554
  end
1524
1555
  end
1525
1556
 
1557
+ class Fleet
1558
+ # @private
1559
+ class Representation < Google::Apis::Core::JsonRepresentation
1560
+ property :membership, as: 'membership'
1561
+ property :pre_registered, as: 'preRegistered'
1562
+ property :project, as: 'project'
1563
+ end
1564
+ end
1565
+
1526
1566
  class GpuSharingConfig
1527
1567
  # @private
1528
1568
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1624,6 +1664,8 @@ module Google
1624
1664
  class IpAllocationPolicy
1625
1665
  # @private
1626
1666
  class Representation < Google::Apis::Core::JsonRepresentation
1667
+ property :additional_pod_ranges_config, as: 'additionalPodRangesConfig', class: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig::Representation
1668
+
1627
1669
  property :allow_route_overlap, as: 'allowRouteOverlap'
1628
1670
  property :cluster_ipv4_cidr, as: 'clusterIpv4Cidr'
1629
1671
  property :cluster_ipv4_cidr_block, as: 'clusterIpv4CidrBlock'
@@ -1632,6 +1674,8 @@ module Google
1632
1674
  property :ipv6_access_type, as: 'ipv6AccessType'
1633
1675
  property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
1634
1676
  property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
1677
+ property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig::Representation
1678
+
1635
1679
  property :services_ipv4_cidr, as: 'servicesIpv4Cidr'
1636
1680
  property :services_ipv4_cidr_block, as: 'servicesIpv4CidrBlock'
1637
1681
  property :services_ipv6_cidr_block, as: 'servicesIpv6CidrBlock'
@@ -2050,6 +2094,8 @@ module Google
2050
2094
  property :enable_private_nodes, as: 'enablePrivateNodes'
2051
2095
  property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig::Representation
2052
2096
 
2097
+ property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig::Representation
2098
+
2053
2099
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
2054
2100
  property :pod_range, as: 'podRange'
2055
2101
  end
@@ -2195,6 +2241,13 @@ module Google
2195
2241
  end
2196
2242
  end
2197
2243
 
2244
+ class PodCidrOverprovisionConfig
2245
+ # @private
2246
+ class Representation < Google::Apis::Core::JsonRepresentation
2247
+ property :disable, as: 'disable'
2248
+ end
2249
+ end
2250
+
2198
2251
  class PodSecurityPolicyConfig
2199
2252
  # @private
2200
2253
  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.45.0
4
+ version: 0.47.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: 2023-02-19 00:00:00.000000000 Z
11
+ date: 2023-04-23 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.45.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.47.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: []