google-apis-container_v1beta1 0.13.0 → 0.17.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd06de6927c2516a8b6a9efc30838018ee0a8412261627a19bb5f9ff14a9a624
|
4
|
+
data.tar.gz: 4a071f5b8dfab8bd775ca1b4e2c6e61d37475c3e430522f29968eb19e81d522a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb8075fd502bc735bb2f370660351dd9b3f6705448e2b55a25d8046558a08a8513179942fb23f4029fec76d7ae6f17331755c53eb2fd7c786f7239759a9b4870
|
7
|
+
data.tar.gz: 95ecafa4e0ffeb12a417033edefd0ddc7f876c131b30fae2d774e2c1ce56150e58de0c2889160eb74e5b42c272f424b2a6cc7aee1ed8a37e0611933b2b8d6ff1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.17.0 (2021-08-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210722
|
6
|
+
|
7
|
+
### v0.16.0 (2021-07-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210715
|
10
|
+
|
11
|
+
### v0.15.0 (2021-07-22)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210708
|
14
|
+
|
15
|
+
### v0.14.0 (2021-07-08)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210628
|
18
|
+
|
3
19
|
### v0.13.0 (2021-06-29)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210617
|
@@ -621,6 +621,12 @@ module Google
|
|
621
621
|
# @return [String]
|
622
622
|
attr_accessor :id
|
623
623
|
|
624
|
+
# IdentityServiceConfig is configuration for Identity Service which allows
|
625
|
+
# customers to use external identity providers with the K8S API
|
626
|
+
# Corresponds to the JSON property `identityServiceConfig`
|
627
|
+
# @return [Google::Apis::ContainerV1beta1::IdentityServiceConfig]
|
628
|
+
attr_accessor :identity_service_config
|
629
|
+
|
624
630
|
# The initial Kubernetes version for this cluster. Valid versions are those
|
625
631
|
# found in validMasterVersions returned by getServerConfig. The version can be
|
626
632
|
# upgraded over time; such upgrades are reflected in currentMasterVersion and
|
@@ -687,6 +693,11 @@ module Google
|
|
687
693
|
# @return [Array<String>]
|
688
694
|
attr_accessor :locations
|
689
695
|
|
696
|
+
# LoggingConfig is cluster logging configuration.
|
697
|
+
# Corresponds to the JSON property `loggingConfig`
|
698
|
+
# @return [Google::Apis::ContainerV1beta1::LoggingConfig]
|
699
|
+
attr_accessor :logging_config
|
700
|
+
|
690
701
|
# The logging service the cluster should use to write logs. Currently available
|
691
702
|
# options: * `logging.googleapis.com/kubernetes` - The Cloud Logging service
|
692
703
|
# with a Kubernetes-native resource model * `logging.googleapis.com` - The
|
@@ -730,6 +741,11 @@ module Google
|
|
730
741
|
# @return [String]
|
731
742
|
attr_accessor :master_ipv4_cidr_block
|
732
743
|
|
744
|
+
# MonitoringConfig is cluster monitoring configuration.
|
745
|
+
# Corresponds to the JSON property `monitoringConfig`
|
746
|
+
# @return [Google::Apis::ContainerV1beta1::MonitoringConfig]
|
747
|
+
attr_accessor :monitoring_config
|
748
|
+
|
733
749
|
# The monitoring service the cluster should use to write metrics. Currently
|
734
750
|
# available options: * "monitoring.googleapis.com/kubernetes" - The Cloud
|
735
751
|
# Monitoring service with a Kubernetes-native resource model * `monitoring.
|
@@ -933,6 +949,7 @@ module Google
|
|
933
949
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
934
950
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
935
951
|
@id = args[:id] if args.key?(:id)
|
952
|
+
@identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
|
936
953
|
@initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
|
937
954
|
@initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
|
938
955
|
@instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
|
@@ -941,12 +958,14 @@ module Google
|
|
941
958
|
@legacy_abac = args[:legacy_abac] if args.key?(:legacy_abac)
|
942
959
|
@location = args[:location] if args.key?(:location)
|
943
960
|
@locations = args[:locations] if args.key?(:locations)
|
961
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
944
962
|
@logging_service = args[:logging_service] if args.key?(:logging_service)
|
945
963
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
946
964
|
@master = args[:master] if args.key?(:master)
|
947
965
|
@master_auth = args[:master_auth] if args.key?(:master_auth)
|
948
966
|
@master_authorized_networks_config = args[:master_authorized_networks_config] if args.key?(:master_authorized_networks_config)
|
949
967
|
@master_ipv4_cidr_block = args[:master_ipv4_cidr_block] if args.key?(:master_ipv4_cidr_block)
|
968
|
+
@monitoring_config = args[:monitoring_config] if args.key?(:monitoring_config)
|
950
969
|
@monitoring_service = args[:monitoring_service] if args.key?(:monitoring_service)
|
951
970
|
@name = args[:name] if args.key?(:name)
|
952
971
|
@network = args[:network] if args.key?(:network)
|
@@ -1105,6 +1124,12 @@ module Google
|
|
1105
1124
|
# @return [Google::Apis::ContainerV1beta1::DnsConfig]
|
1106
1125
|
attr_accessor :desired_dns_config
|
1107
1126
|
|
1127
|
+
# IdentityServiceConfig is configuration for Identity Service which allows
|
1128
|
+
# customers to use external identity providers with the K8S API
|
1129
|
+
# Corresponds to the JSON property `desiredIdentityServiceConfig`
|
1130
|
+
# @return [Google::Apis::ContainerV1beta1::IdentityServiceConfig]
|
1131
|
+
attr_accessor :desired_identity_service_config
|
1132
|
+
|
1108
1133
|
# The desired image type for the node pool. NOTE: Set the "desired_node_pool"
|
1109
1134
|
# field as well.
|
1110
1135
|
# Corresponds to the JSON property `desiredImageType`
|
@@ -1132,6 +1157,11 @@ module Google
|
|
1132
1157
|
# @return [Array<String>]
|
1133
1158
|
attr_accessor :desired_locations
|
1134
1159
|
|
1160
|
+
# LoggingConfig is cluster logging configuration.
|
1161
|
+
# Corresponds to the JSON property `desiredLoggingConfig`
|
1162
|
+
# @return [Google::Apis::ContainerV1beta1::LoggingConfig]
|
1163
|
+
attr_accessor :desired_logging_config
|
1164
|
+
|
1135
1165
|
# The logging service the cluster should use to write logs. Currently available
|
1136
1166
|
# options: * `logging.googleapis.com/kubernetes` - The Cloud Logging service
|
1137
1167
|
# with a Kubernetes-native resource model * `logging.googleapis.com` - The
|
@@ -1167,6 +1197,11 @@ module Google
|
|
1167
1197
|
# @return [String]
|
1168
1198
|
attr_accessor :desired_master_version
|
1169
1199
|
|
1200
|
+
# MonitoringConfig is cluster monitoring configuration.
|
1201
|
+
# Corresponds to the JSON property `desiredMonitoringConfig`
|
1202
|
+
# @return [Google::Apis::ContainerV1beta1::MonitoringConfig]
|
1203
|
+
attr_accessor :desired_monitoring_config
|
1204
|
+
|
1170
1205
|
# The monitoring service the cluster should use to write metrics. Currently
|
1171
1206
|
# available options: * "monitoring.googleapis.com/kubernetes" - The Cloud
|
1172
1207
|
# Monitoring service with a Kubernetes-native resource model * `monitoring.
|
@@ -1236,6 +1271,11 @@ module Google
|
|
1236
1271
|
# @return [Google::Apis::ContainerV1beta1::ResourceUsageExportConfig]
|
1237
1272
|
attr_accessor :desired_resource_usage_export_config
|
1238
1273
|
|
1274
|
+
# Config to block services with externalIPs field.
|
1275
|
+
# Corresponds to the JSON property `desiredServiceExternalIpsConfig`
|
1276
|
+
# @return [Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig]
|
1277
|
+
attr_accessor :desired_service_external_ips_config
|
1278
|
+
|
1239
1279
|
# Configuration of Shielded Nodes feature.
|
1240
1280
|
# Corresponds to the JSON property `desiredShieldedNodes`
|
1241
1281
|
# @return [Google::Apis::ContainerV1beta1::ShieldedNodes]
|
@@ -1279,14 +1319,17 @@ module Google
|
|
1279
1319
|
@desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
|
1280
1320
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1281
1321
|
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
1322
|
+
@desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
|
1282
1323
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
1283
1324
|
@desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
|
1284
1325
|
@desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
|
1285
1326
|
@desired_locations = args[:desired_locations] if args.key?(:desired_locations)
|
1327
|
+
@desired_logging_config = args[:desired_logging_config] if args.key?(:desired_logging_config)
|
1286
1328
|
@desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
|
1287
1329
|
@desired_master = args[:desired_master] if args.key?(:desired_master)
|
1288
1330
|
@desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
|
1289
1331
|
@desired_master_version = args[:desired_master_version] if args.key?(:desired_master_version)
|
1332
|
+
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
1290
1333
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
1291
1334
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
1292
1335
|
@desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
|
@@ -1297,6 +1340,7 @@ module Google
|
|
1297
1340
|
@desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
|
1298
1341
|
@desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
|
1299
1342
|
@desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
|
1343
|
+
@desired_service_external_ips_config = args[:desired_service_external_ips_config] if args.key?(:desired_service_external_ips_config)
|
1300
1344
|
@desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
|
1301
1345
|
@desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
|
1302
1346
|
@desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
|
@@ -2079,6 +2123,27 @@ module Google
|
|
2079
2123
|
end
|
2080
2124
|
end
|
2081
2125
|
|
2126
|
+
# IdentityServiceConfig is configuration for Identity Service which allows
|
2127
|
+
# customers to use external identity providers with the K8S API
|
2128
|
+
class IdentityServiceConfig
|
2129
|
+
include Google::Apis::Core::Hashable
|
2130
|
+
|
2131
|
+
# Whether to enable the Identity Service component
|
2132
|
+
# Corresponds to the JSON property `enabled`
|
2133
|
+
# @return [Boolean]
|
2134
|
+
attr_accessor :enabled
|
2135
|
+
alias_method :enabled?, :enabled
|
2136
|
+
|
2137
|
+
def initialize(**args)
|
2138
|
+
update!(**args)
|
2139
|
+
end
|
2140
|
+
|
2141
|
+
# Update properties of this object
|
2142
|
+
def update!(**args)
|
2143
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
2144
|
+
end
|
2145
|
+
end
|
2146
|
+
|
2082
2147
|
# IntraNodeVisibilityConfig contains the desired config of the intra-node
|
2083
2148
|
# visibility on this cluster.
|
2084
2149
|
class IntraNodeVisibilityConfig
|
@@ -2440,6 +2505,44 @@ module Google
|
|
2440
2505
|
end
|
2441
2506
|
end
|
2442
2507
|
|
2508
|
+
# LoggingComponentConfig is cluster logging component configuration.
|
2509
|
+
class LoggingComponentConfig
|
2510
|
+
include Google::Apis::Core::Hashable
|
2511
|
+
|
2512
|
+
# Select components to collect logs. An empty set would disable all logging.
|
2513
|
+
# Corresponds to the JSON property `enableComponents`
|
2514
|
+
# @return [Array<String>]
|
2515
|
+
attr_accessor :enable_components
|
2516
|
+
|
2517
|
+
def initialize(**args)
|
2518
|
+
update!(**args)
|
2519
|
+
end
|
2520
|
+
|
2521
|
+
# Update properties of this object
|
2522
|
+
def update!(**args)
|
2523
|
+
@enable_components = args[:enable_components] if args.key?(:enable_components)
|
2524
|
+
end
|
2525
|
+
end
|
2526
|
+
|
2527
|
+
# LoggingConfig is cluster logging configuration.
|
2528
|
+
class LoggingConfig
|
2529
|
+
include Google::Apis::Core::Hashable
|
2530
|
+
|
2531
|
+
# LoggingComponentConfig is cluster logging component configuration.
|
2532
|
+
# Corresponds to the JSON property `componentConfig`
|
2533
|
+
# @return [Google::Apis::ContainerV1beta1::LoggingComponentConfig]
|
2534
|
+
attr_accessor :component_config
|
2535
|
+
|
2536
|
+
def initialize(**args)
|
2537
|
+
update!(**args)
|
2538
|
+
end
|
2539
|
+
|
2540
|
+
# Update properties of this object
|
2541
|
+
def update!(**args)
|
2542
|
+
@component_config = args[:component_config] if args.key?(:component_config)
|
2543
|
+
end
|
2544
|
+
end
|
2545
|
+
|
2443
2546
|
# MaintenancePolicy defines the maintenance policy to be used for the cluster.
|
2444
2547
|
class MaintenancePolicy
|
2445
2548
|
include Google::Apis::Core::Hashable
|
@@ -2664,6 +2767,45 @@ module Google
|
|
2664
2767
|
end
|
2665
2768
|
end
|
2666
2769
|
|
2770
|
+
# MonitoringComponentConfig is cluster monitoring component configuration.
|
2771
|
+
class MonitoringComponentConfig
|
2772
|
+
include Google::Apis::Core::Hashable
|
2773
|
+
|
2774
|
+
# Select components to collect metrics. An empty set would disable all
|
2775
|
+
# monitoring.
|
2776
|
+
# Corresponds to the JSON property `enableComponents`
|
2777
|
+
# @return [Array<String>]
|
2778
|
+
attr_accessor :enable_components
|
2779
|
+
|
2780
|
+
def initialize(**args)
|
2781
|
+
update!(**args)
|
2782
|
+
end
|
2783
|
+
|
2784
|
+
# Update properties of this object
|
2785
|
+
def update!(**args)
|
2786
|
+
@enable_components = args[:enable_components] if args.key?(:enable_components)
|
2787
|
+
end
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
# MonitoringConfig is cluster monitoring configuration.
|
2791
|
+
class MonitoringConfig
|
2792
|
+
include Google::Apis::Core::Hashable
|
2793
|
+
|
2794
|
+
# MonitoringComponentConfig is cluster monitoring component configuration.
|
2795
|
+
# Corresponds to the JSON property `componentConfig`
|
2796
|
+
# @return [Google::Apis::ContainerV1beta1::MonitoringComponentConfig]
|
2797
|
+
attr_accessor :component_config
|
2798
|
+
|
2799
|
+
def initialize(**args)
|
2800
|
+
update!(**args)
|
2801
|
+
end
|
2802
|
+
|
2803
|
+
# Update properties of this object
|
2804
|
+
def update!(**args)
|
2805
|
+
@component_config = args[:component_config] if args.key?(:component_config)
|
2806
|
+
end
|
2807
|
+
end
|
2808
|
+
|
2667
2809
|
# NetworkConfig reports the relative names of network & subnetwork.
|
2668
2810
|
class NetworkConfig
|
2669
2811
|
include Google::Apis::Core::Hashable
|
@@ -3138,8 +3280,7 @@ module Google
|
|
3138
3280
|
end
|
3139
3281
|
end
|
3140
3282
|
|
3141
|
-
# Parameters for node pool-level network config.
|
3142
|
-
# ip_allocation_policy.use_ip_aliases` is true.
|
3283
|
+
# Parameters for node pool-level network config.
|
3143
3284
|
class NodeNetworkConfig
|
3144
3285
|
include Google::Apis::Core::Hashable
|
3145
3286
|
|
@@ -3147,6 +3288,8 @@ module Google
|
|
3147
3288
|
# Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are
|
3148
3289
|
# not specified. If neither `create_pod_range` or `pod_range` are specified, the
|
3149
3290
|
# cluster-level default (`ip_allocation_policy.cluster_ipv4_cidr_block`) is used.
|
3291
|
+
# Only applicable if `ip_allocation_policy.use_ip_aliases` is true. This field
|
3292
|
+
# cannot be changed after the node pool has been created.
|
3150
3293
|
# Corresponds to the JSON property `createPodRange`
|
3151
3294
|
# @return [Boolean]
|
3152
3295
|
attr_accessor :create_pod_range
|
@@ -3157,14 +3300,17 @@ module Google
|
|
3157
3300
|
# default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
|
3158
3301
|
# specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
|
3159
3302
|
# Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) to pick a
|
3160
|
-
# specific range to use.
|
3303
|
+
# specific range to use. Only applicable if `ip_allocation_policy.use_ip_aliases`
|
3304
|
+
# is true. This field cannot be changed after the node pool has been created.
|
3161
3305
|
# Corresponds to the JSON property `podIpv4CidrBlock`
|
3162
3306
|
# @return [String]
|
3163
3307
|
attr_accessor :pod_ipv4_cidr_block
|
3164
3308
|
|
3165
3309
|
# The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
|
3166
3310
|
# ID is used for the new range. If `create_pod_range` is false, uses an existing
|
3167
|
-
# secondary range with this ID.
|
3311
|
+
# secondary range with this ID. Only applicable if `ip_allocation_policy.
|
3312
|
+
# use_ip_aliases` is true. This field cannot be changed after the node pool has
|
3313
|
+
# been created.
|
3168
3314
|
# Corresponds to the JSON property `podRange`
|
3169
3315
|
# @return [String]
|
3170
3316
|
attr_accessor :pod_range
|
@@ -3260,8 +3406,7 @@ module Google
|
|
3260
3406
|
# @return [String]
|
3261
3407
|
attr_accessor :name
|
3262
3408
|
|
3263
|
-
# Parameters for node pool-level network config.
|
3264
|
-
# ip_allocation_policy.use_ip_aliases` is true.
|
3409
|
+
# Parameters for node pool-level network config.
|
3265
3410
|
# Corresponds to the JSON property `networkConfig`
|
3266
3411
|
# @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
|
3267
3412
|
attr_accessor :network_config
|
@@ -3340,7 +3485,7 @@ module Google
|
|
3340
3485
|
alias_method :enabled?, :enabled
|
3341
3486
|
|
3342
3487
|
# Maximum number of nodes in the NodePool. Must be >= min_node_count. There has
|
3343
|
-
# to enough quota to scale up the cluster.
|
3488
|
+
# to be enough quota to scale up the cluster.
|
3344
3489
|
# Corresponds to the JSON property `maxNodeCount`
|
3345
3490
|
# @return [Fixnum]
|
3346
3491
|
attr_accessor :max_node_count
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210722"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,6 +256,12 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class IdentityServiceConfig
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
259
265
|
class IntraNodeVisibilityConfig
|
260
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
267
|
|
@@ -334,6 +340,18 @@ module Google
|
|
334
340
|
include Google::Apis::Core::JsonObjectSupport
|
335
341
|
end
|
336
342
|
|
343
|
+
class LoggingComponentConfig
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
349
|
+
class LoggingConfig
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
337
355
|
class MaintenancePolicy
|
338
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
357
|
|
@@ -376,6 +394,18 @@ module Google
|
|
376
394
|
include Google::Apis::Core::JsonObjectSupport
|
377
395
|
end
|
378
396
|
|
397
|
+
class MonitoringComponentConfig
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
403
|
+
class MonitoringConfig
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
379
409
|
class NetworkConfig
|
380
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
411
|
|
@@ -932,6 +962,8 @@ module Google
|
|
932
962
|
property :endpoint, as: 'endpoint'
|
933
963
|
property :expire_time, as: 'expireTime'
|
934
964
|
property :id, as: 'id'
|
965
|
+
property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
|
966
|
+
|
935
967
|
property :initial_cluster_version, as: 'initialClusterVersion'
|
936
968
|
property :initial_node_count, as: 'initialNodeCount'
|
937
969
|
collection :instance_group_urls, as: 'instanceGroupUrls'
|
@@ -942,6 +974,8 @@ module Google
|
|
942
974
|
|
943
975
|
property :location, as: 'location'
|
944
976
|
collection :locations, as: 'locations'
|
977
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::LoggingConfig, decorator: Google::Apis::ContainerV1beta1::LoggingConfig::Representation
|
978
|
+
|
945
979
|
property :logging_service, as: 'loggingService'
|
946
980
|
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::ContainerV1beta1::MaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::MaintenancePolicy::Representation
|
947
981
|
|
@@ -952,6 +986,8 @@ module Google
|
|
952
986
|
property :master_authorized_networks_config, as: 'masterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
|
953
987
|
|
954
988
|
property :master_ipv4_cidr_block, as: 'masterIpv4CidrBlock'
|
989
|
+
property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
|
990
|
+
|
955
991
|
property :monitoring_service, as: 'monitoringService'
|
956
992
|
property :name, as: 'name'
|
957
993
|
property :network, as: 'network'
|
@@ -1040,18 +1076,24 @@ module Google
|
|
1040
1076
|
|
1041
1077
|
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
|
1042
1078
|
|
1079
|
+
property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
|
1080
|
+
|
1043
1081
|
property :desired_image_type, as: 'desiredImageType'
|
1044
1082
|
property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
|
1045
1083
|
|
1046
1084
|
property :desired_l4ilb_subsetting_config, as: 'desiredL4ilbSubsettingConfig', class: Google::Apis::ContainerV1beta1::IlbSubsettingConfig, decorator: Google::Apis::ContainerV1beta1::IlbSubsettingConfig::Representation
|
1047
1085
|
|
1048
1086
|
collection :desired_locations, as: 'desiredLocations'
|
1087
|
+
property :desired_logging_config, as: 'desiredLoggingConfig', class: Google::Apis::ContainerV1beta1::LoggingConfig, decorator: Google::Apis::ContainerV1beta1::LoggingConfig::Representation
|
1088
|
+
|
1049
1089
|
property :desired_logging_service, as: 'desiredLoggingService'
|
1050
1090
|
property :desired_master, as: 'desiredMaster', class: Google::Apis::ContainerV1beta1::Master, decorator: Google::Apis::ContainerV1beta1::Master::Representation
|
1051
1091
|
|
1052
1092
|
property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
|
1053
1093
|
|
1054
1094
|
property :desired_master_version, as: 'desiredMasterVersion'
|
1095
|
+
property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
|
1096
|
+
|
1055
1097
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
1056
1098
|
property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1beta1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1beta1::NodePoolAutoscaling::Representation
|
1057
1099
|
|
@@ -1068,6 +1110,8 @@ module Google
|
|
1068
1110
|
|
1069
1111
|
property :desired_resource_usage_export_config, as: 'desiredResourceUsageExportConfig', class: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig::Representation
|
1070
1112
|
|
1113
|
+
property :desired_service_external_ips_config, as: 'desiredServiceExternalIpsConfig', class: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig::Representation
|
1114
|
+
|
1071
1115
|
property :desired_shielded_nodes, as: 'desiredShieldedNodes', class: Google::Apis::ContainerV1beta1::ShieldedNodes, decorator: Google::Apis::ContainerV1beta1::ShieldedNodes::Representation
|
1072
1116
|
|
1073
1117
|
property :desired_tpu_config, as: 'desiredTpuConfig', class: Google::Apis::ContainerV1beta1::TpuConfig, decorator: Google::Apis::ContainerV1beta1::TpuConfig::Representation
|
@@ -1278,6 +1322,13 @@ module Google
|
|
1278
1322
|
end
|
1279
1323
|
end
|
1280
1324
|
|
1325
|
+
class IdentityServiceConfig
|
1326
|
+
# @private
|
1327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1328
|
+
property :enabled, as: 'enabled'
|
1329
|
+
end
|
1330
|
+
end
|
1331
|
+
|
1281
1332
|
class IntraNodeVisibilityConfig
|
1282
1333
|
# @private
|
1283
1334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1389,6 +1440,21 @@ module Google
|
|
1389
1440
|
end
|
1390
1441
|
end
|
1391
1442
|
|
1443
|
+
class LoggingComponentConfig
|
1444
|
+
# @private
|
1445
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1446
|
+
collection :enable_components, as: 'enableComponents'
|
1447
|
+
end
|
1448
|
+
end
|
1449
|
+
|
1450
|
+
class LoggingConfig
|
1451
|
+
# @private
|
1452
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1453
|
+
property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1beta1::LoggingComponentConfig, decorator: Google::Apis::ContainerV1beta1::LoggingComponentConfig::Representation
|
1454
|
+
|
1455
|
+
end
|
1456
|
+
end
|
1457
|
+
|
1392
1458
|
class MaintenancePolicy
|
1393
1459
|
# @private
|
1394
1460
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1455,6 +1521,21 @@ module Google
|
|
1455
1521
|
end
|
1456
1522
|
end
|
1457
1523
|
|
1524
|
+
class MonitoringComponentConfig
|
1525
|
+
# @private
|
1526
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1527
|
+
collection :enable_components, as: 'enableComponents'
|
1528
|
+
end
|
1529
|
+
end
|
1530
|
+
|
1531
|
+
class MonitoringConfig
|
1532
|
+
# @private
|
1533
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1534
|
+
property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1beta1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringComponentConfig::Representation
|
1535
|
+
|
1536
|
+
end
|
1537
|
+
end
|
1538
|
+
|
1458
1539
|
class NetworkConfig
|
1459
1540
|
# @private
|
1460
1541
|
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.
|
4
|
+
version: 0.17.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-
|
11
|
+
date: 2021-08-09 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/master/generated/google-apis-container_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.17.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|