google-apis-container_v1 0.7.0 → 0.12.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a91e0011867ef8d7b969e331348d92e62a21b6567bcd3df38d1c87916de9775a
|
4
|
+
data.tar.gz: 745ec3384f5bce02999829ea87629465e0dab804f2cbb8e700a5ef20c459a838
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2278b24be1f502d466170b195ca9005ae37d4d92bc8063786ea3743e350d1a912cb6d5584b665c13ea681dbaf7b660f77fd899fe7b35e075aa7d81987166a607
|
7
|
+
data.tar.gz: b13934158f728e91cbe61dcb1210f0851566b1edf2a18624292034d98034ed525cd3eb4e44f1ecafd5d68a0fda5e01f87c30a70e6eeb5cfe27694e3d3a722e03
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.12.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210617
|
6
|
+
* Regenerated using generator version 0.4.0
|
7
|
+
|
8
|
+
### v0.11.0 (2021-06-24)
|
9
|
+
|
10
|
+
* Unspecified changes
|
11
|
+
|
12
|
+
### v0.10.0 (2021-06-16)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210607
|
15
|
+
|
16
|
+
### v0.9.0 (2021-06-03)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210521
|
19
|
+
* Regenerated using generator version 0.3.0
|
20
|
+
|
21
|
+
### v0.8.0 (2021-05-19)
|
22
|
+
|
23
|
+
* Unspecified changes
|
24
|
+
|
3
25
|
### v0.7.0 (2021-05-13)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20210429
|
@@ -218,6 +218,11 @@ module Google
|
|
218
218
|
# @return [String]
|
219
219
|
attr_accessor :disk_type
|
220
220
|
|
221
|
+
# The image type to use for NAP created node.
|
222
|
+
# Corresponds to the JSON property `imageType`
|
223
|
+
# @return [String]
|
224
|
+
attr_accessor :image_type
|
225
|
+
|
221
226
|
# NodeManagement defines the set of node management services turned on for the
|
222
227
|
# node pool.
|
223
228
|
# Corresponds to the JSON property `management`
|
@@ -277,6 +282,7 @@ module Google
|
|
277
282
|
@boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
|
278
283
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
279
284
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
285
|
+
@image_type = args[:image_type] if args.key?(:image_type)
|
280
286
|
@management = args[:management] if args.key?(:management)
|
281
287
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
282
288
|
@oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
|
@@ -926,6 +932,11 @@ module Google
|
|
926
932
|
# @return [Google::Apis::ContainerV1::AddonsConfig]
|
927
933
|
attr_accessor :desired_addons_config
|
928
934
|
|
935
|
+
# Configuration for returning group information from authenticators.
|
936
|
+
# Corresponds to the JSON property `desiredAuthenticatorGroupsConfig`
|
937
|
+
# @return [Google::Apis::ContainerV1::AuthenticatorGroupsConfig]
|
938
|
+
attr_accessor :desired_authenticator_groups_config
|
939
|
+
|
929
940
|
# Autopilot is the configuration for Autopilot settings on the cluster.
|
930
941
|
# Corresponds to the JSON property `desiredAutopilot`
|
931
942
|
# @return [Google::Apis::ContainerV1::Autopilot]
|
@@ -971,6 +982,12 @@ module Google
|
|
971
982
|
# @return [Google::Apis::ContainerV1::IntraNodeVisibilityConfig]
|
972
983
|
attr_accessor :desired_intra_node_visibility_config
|
973
984
|
|
985
|
+
# ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
|
986
|
+
# subsetting on this cluster.
|
987
|
+
# Corresponds to the JSON property `desiredL4ilbSubsettingConfig`
|
988
|
+
# @return [Google::Apis::ContainerV1::IlbSubsettingConfig]
|
989
|
+
attr_accessor :desired_l4ilb_subsetting_config
|
990
|
+
|
974
991
|
# The desired list of Google Compute Engine [zones](https://cloud.google.com/
|
975
992
|
# compute/docs/zones#available) in which the cluster's nodes should be located.
|
976
993
|
# This list must always include the cluster's primary zone. Warning: changing
|
@@ -1097,6 +1114,7 @@ module Google
|
|
1097
1114
|
# Update properties of this object
|
1098
1115
|
def update!(**args)
|
1099
1116
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
1117
|
+
@desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
|
1100
1118
|
@desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
|
1101
1119
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
1102
1120
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
@@ -1105,6 +1123,7 @@ module Google
|
|
1105
1123
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1106
1124
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
1107
1125
|
@desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
|
1126
|
+
@desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
|
1108
1127
|
@desired_locations = args[:desired_locations] if args.key?(:desired_locations)
|
1109
1128
|
@desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
|
1110
1129
|
@desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
|
@@ -1621,6 +1640,27 @@ module Google
|
|
1621
1640
|
end
|
1622
1641
|
end
|
1623
1642
|
|
1643
|
+
# ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
|
1644
|
+
# subsetting on this cluster.
|
1645
|
+
class IlbSubsettingConfig
|
1646
|
+
include Google::Apis::Core::Hashable
|
1647
|
+
|
1648
|
+
# Enables l4 ILB subsetting for this cluster.
|
1649
|
+
# Corresponds to the JSON property `enabled`
|
1650
|
+
# @return [Boolean]
|
1651
|
+
attr_accessor :enabled
|
1652
|
+
alias_method :enabled?, :enabled
|
1653
|
+
|
1654
|
+
def initialize(**args)
|
1655
|
+
update!(**args)
|
1656
|
+
end
|
1657
|
+
|
1658
|
+
# Update properties of this object
|
1659
|
+
def update!(**args)
|
1660
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1661
|
+
end
|
1662
|
+
end
|
1663
|
+
|
1624
1664
|
# Configuration for controlling how IPs are allocated in the cluster.
|
1625
1665
|
class IpAllocationPolicy
|
1626
1666
|
include Google::Apis::Core::Hashable
|
@@ -2243,6 +2283,12 @@ module Google
|
|
2243
2283
|
attr_accessor :enable_intra_node_visibility
|
2244
2284
|
alias_method :enable_intra_node_visibility?, :enable_intra_node_visibility
|
2245
2285
|
|
2286
|
+
# Whether L4ILB Subsetting is enabled for this cluster.
|
2287
|
+
# Corresponds to the JSON property `enableL4ilbSubsetting`
|
2288
|
+
# @return [Boolean]
|
2289
|
+
attr_accessor :enable_l4ilb_subsetting
|
2290
|
+
alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
|
2291
|
+
|
2246
2292
|
# Output only. The relative name of the Google Compute Engine network(https://
|
2247
2293
|
# cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
|
2248
2294
|
# cluster is connected. Example: projects/my-project/global/networks/my-network
|
@@ -2272,6 +2318,7 @@ module Google
|
|
2272
2318
|
@datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
|
2273
2319
|
@default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
|
2274
2320
|
@enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
|
2321
|
+
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
2275
2322
|
@network = args[:network] if args.key?(:network)
|
2276
2323
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
2277
2324
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210617"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class IlbSubsettingConfig
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class IpAllocationPolicy
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -687,6 +693,7 @@ module Google
|
|
687
693
|
property :boot_disk_kms_key, as: 'bootDiskKmsKey'
|
688
694
|
property :disk_size_gb, as: 'diskSizeGb'
|
689
695
|
property :disk_type, as: 'diskType'
|
696
|
+
property :image_type, as: 'imageType'
|
690
697
|
property :management, as: 'management', class: Google::Apis::ContainerV1::NodeManagement, decorator: Google::Apis::ContainerV1::NodeManagement::Representation
|
691
698
|
|
692
699
|
property :min_cpu_platform, as: 'minCpuPlatform'
|
@@ -849,6 +856,8 @@ module Google
|
|
849
856
|
class Representation < Google::Apis::Core::JsonRepresentation
|
850
857
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1::AddonsConfig, decorator: Google::Apis::ContainerV1::AddonsConfig::Representation
|
851
858
|
|
859
|
+
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1::AuthenticatorGroupsConfig::Representation
|
860
|
+
|
852
861
|
property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1::Autopilot, decorator: Google::Apis::ContainerV1::Autopilot::Representation
|
853
862
|
|
854
863
|
property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1::BinaryAuthorization, decorator: Google::Apis::ContainerV1::BinaryAuthorization::Representation
|
@@ -863,6 +872,8 @@ module Google
|
|
863
872
|
property :desired_image_type, as: 'desiredImageType'
|
864
873
|
property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1::IntraNodeVisibilityConfig::Representation
|
865
874
|
|
875
|
+
property :desired_l4ilb_subsetting_config, as: 'desiredL4ilbSubsettingConfig', class: Google::Apis::ContainerV1::IlbSubsettingConfig, decorator: Google::Apis::ContainerV1::IlbSubsettingConfig::Representation
|
876
|
+
|
866
877
|
collection :desired_locations, as: 'desiredLocations'
|
867
878
|
property :desired_logging_service, as: 'desiredLoggingService'
|
868
879
|
property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
@@ -1036,6 +1047,13 @@ module Google
|
|
1036
1047
|
end
|
1037
1048
|
end
|
1038
1049
|
|
1050
|
+
class IlbSubsettingConfig
|
1051
|
+
# @private
|
1052
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1053
|
+
property :enabled, as: 'enabled'
|
1054
|
+
end
|
1055
|
+
end
|
1056
|
+
|
1039
1057
|
class IpAllocationPolicy
|
1040
1058
|
# @private
|
1041
1059
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1200,6 +1218,7 @@ module Google
|
|
1200
1218
|
property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
1201
1219
|
|
1202
1220
|
property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
|
1221
|
+
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
1203
1222
|
property :network, as: 'network'
|
1204
1223
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
1205
1224
|
property :subnetwork, as: 'subnetwork'
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Kubernetes Engine API V1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.12.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|