google-apis-container_v1 0.34.0 → 0.36.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: 543ca22eb167f82b431739e8a273919a77fa0a868770a0c847668c9169719c04
|
4
|
+
data.tar.gz: 857e77355496dcd3620e430f6fdb9a6bdda6d47c2147f57d8ea379b9853a39f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e6e637edbe582fa9a5e2817ced87a70a9de0e653637eedc2e7e540889b2be19f4ecdb324caca47629024e945c48baf15aca545f3e80164f688571323cf6f809
|
7
|
+
data.tar.gz: ed8c8fe7d5fbe0a61e30153db846c0d218738416e77566bddf95799ef73b36c9fcd5f89e285be0f2e755b7ed3df7b7bc972226462b4282708c43d2b09751c7e7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.36.0 (2022-09-22)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.10.0
|
6
|
+
|
7
|
+
### v0.35.0 (2022-09-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220826
|
10
|
+
|
3
11
|
### v0.34.0 (2022-08-09)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220727
|
@@ -276,8 +276,8 @@ module Google
|
|
276
276
|
# values are the friendly names of CPU platforms, such as minCpuPlatform: Intel
|
277
277
|
# Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
|
278
278
|
# to specify min CPU platform](https://cloud.google.com/compute/docs/instances/
|
279
|
-
# specify-min-cpu-platform) This field is deprecated, min_cpu_platform should
|
280
|
-
# specified using https://cloud.google.com/requested-min-cpu-platform label
|
279
|
+
# specify-min-cpu-platform). This field is deprecated, min_cpu_platform should
|
280
|
+
# be specified using https://cloud.google.com/requested-min-cpu-platform label
|
281
281
|
# selector on the pod. To unset the min cpu platform field pass "automatic" as
|
282
282
|
# field value.
|
283
283
|
# Corresponds to the JSON property `minCpuPlatform`
|
@@ -1271,6 +1271,11 @@ module Google
|
|
1271
1271
|
# @return [String]
|
1272
1272
|
attr_accessor :desired_node_pool_id
|
1273
1273
|
|
1274
|
+
# NodePoolLoggingConfig specifies logging configuration for nodepools.
|
1275
|
+
# Corresponds to the JSON property `desiredNodePoolLoggingConfig`
|
1276
|
+
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
1277
|
+
attr_accessor :desired_node_pool_logging_config
|
1278
|
+
|
1274
1279
|
# The Kubernetes version to change the nodes to (typically an upgrade). Users
|
1275
1280
|
# may specify either explicit versions offered by Kubernetes Engine or version
|
1276
1281
|
# aliases, which have the following behavior: - "latest": picks the highest
|
@@ -1362,6 +1367,7 @@ module Google
|
|
1362
1367
|
@desired_node_pool_auto_config_network_tags = args[:desired_node_pool_auto_config_network_tags] if args.key?(:desired_node_pool_auto_config_network_tags)
|
1363
1368
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
1364
1369
|
@desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
|
1370
|
+
@desired_node_pool_logging_config = args[:desired_node_pool_logging_config] if args.key?(:desired_node_pool_logging_config)
|
1365
1371
|
@desired_node_version = args[:desired_node_version] if args.key?(:desired_node_version)
|
1366
1372
|
@desired_notification_config = args[:desired_notification_config] if args.key?(:desired_notification_config)
|
1367
1373
|
@desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
|
@@ -2473,6 +2479,25 @@ module Google
|
|
2473
2479
|
end
|
2474
2480
|
end
|
2475
2481
|
|
2482
|
+
# LoggingVariantConfig specifies the behaviour of the logging component.
|
2483
|
+
class LoggingVariantConfig
|
2484
|
+
include Google::Apis::Core::Hashable
|
2485
|
+
|
2486
|
+
# Logging variant deployed on nodes.
|
2487
|
+
# Corresponds to the JSON property `variant`
|
2488
|
+
# @return [String]
|
2489
|
+
attr_accessor :variant
|
2490
|
+
|
2491
|
+
def initialize(**args)
|
2492
|
+
update!(**args)
|
2493
|
+
end
|
2494
|
+
|
2495
|
+
# Update properties of this object
|
2496
|
+
def update!(**args)
|
2497
|
+
@variant = args[:variant] if args.key?(:variant)
|
2498
|
+
end
|
2499
|
+
end
|
2500
|
+
|
2476
2501
|
# Represents the Maintenance exclusion option.
|
2477
2502
|
class MaintenanceExclusionOptions
|
2478
2503
|
include Google::Apis::Core::Hashable
|
@@ -3050,6 +3075,11 @@ module Google
|
|
3050
3075
|
# @return [Fixnum]
|
3051
3076
|
attr_accessor :local_ssd_count
|
3052
3077
|
|
3078
|
+
# NodePoolLoggingConfig specifies logging configuration for nodepools.
|
3079
|
+
# Corresponds to the JSON property `loggingConfig`
|
3080
|
+
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
3081
|
+
attr_accessor :logging_config
|
3082
|
+
|
3053
3083
|
# The name of a Google Compute Engine [machine type](https://cloud.google.com/
|
3054
3084
|
# compute/docs/machine-types) If unspecified, the default machine type is `e2-
|
3055
3085
|
# medium`.
|
@@ -3184,6 +3214,7 @@ module Google
|
|
3184
3214
|
@labels = args[:labels] if args.key?(:labels)
|
3185
3215
|
@linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
|
3186
3216
|
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
3217
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
3187
3218
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
3188
3219
|
@metadata = args[:metadata] if args.key?(:metadata)
|
3189
3220
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
@@ -3211,6 +3242,11 @@ module Google
|
|
3211
3242
|
# @return [Google::Apis::ContainerV1::GcfsConfig]
|
3212
3243
|
attr_accessor :gcfs_config
|
3213
3244
|
|
3245
|
+
# NodePoolLoggingConfig specifies logging configuration for nodepools.
|
3246
|
+
# Corresponds to the JSON property `loggingConfig`
|
3247
|
+
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
3248
|
+
attr_accessor :logging_config
|
3249
|
+
|
3214
3250
|
def initialize(**args)
|
3215
3251
|
update!(**args)
|
3216
3252
|
end
|
@@ -3218,6 +3254,7 @@ module Google
|
|
3218
3254
|
# Update properties of this object
|
3219
3255
|
def update!(**args)
|
3220
3256
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
3257
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
3221
3258
|
end
|
3222
3259
|
end
|
3223
3260
|
|
@@ -3661,6 +3698,25 @@ module Google
|
|
3661
3698
|
end
|
3662
3699
|
end
|
3663
3700
|
|
3701
|
+
# NodePoolLoggingConfig specifies logging configuration for nodepools.
|
3702
|
+
class NodePoolLoggingConfig
|
3703
|
+
include Google::Apis::Core::Hashable
|
3704
|
+
|
3705
|
+
# LoggingVariantConfig specifies the behaviour of the logging component.
|
3706
|
+
# Corresponds to the JSON property `variantConfig`
|
3707
|
+
# @return [Google::Apis::ContainerV1::LoggingVariantConfig]
|
3708
|
+
attr_accessor :variant_config
|
3709
|
+
|
3710
|
+
def initialize(**args)
|
3711
|
+
update!(**args)
|
3712
|
+
end
|
3713
|
+
|
3714
|
+
# Update properties of this object
|
3715
|
+
def update!(**args)
|
3716
|
+
@variant_config = args[:variant_config] if args.key?(:variant_config)
|
3717
|
+
end
|
3718
|
+
end
|
3719
|
+
|
3664
3720
|
# Kubernetes taint is comprised of three fields: key, value, and effect. Effect
|
3665
3721
|
# can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
|
3666
3722
|
# [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
|
@@ -4115,8 +4171,8 @@ module Google
|
|
4115
4171
|
attr_accessor :consume_reservation_type
|
4116
4172
|
|
4117
4173
|
# Corresponds to the label key of a reservation resource. To target a
|
4118
|
-
# SPECIFIC_RESERVATION by name, specify "googleapis.com/reservation-name"
|
4119
|
-
# key and specify the name of your reservation as its value.
|
4174
|
+
# SPECIFIC_RESERVATION by name, specify "compute.googleapis.com/reservation-name"
|
4175
|
+
# as the key and specify the name of your reservation as its value.
|
4120
4176
|
# Corresponds to the JSON property `key`
|
4121
4177
|
# @return [String]
|
4122
4178
|
attr_accessor :key
|
@@ -5508,6 +5564,11 @@ module Google
|
|
5508
5564
|
# @return [Array<String>]
|
5509
5565
|
attr_accessor :locations
|
5510
5566
|
|
5567
|
+
# NodePoolLoggingConfig specifies logging configuration for nodepools.
|
5568
|
+
# Corresponds to the JSON property `loggingConfig`
|
5569
|
+
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
5570
|
+
attr_accessor :logging_config
|
5571
|
+
|
5511
5572
|
# The name (project, location, cluster, node pool) of the node pool to update.
|
5512
5573
|
# Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.
|
5513
5574
|
# Corresponds to the JSON property `name`
|
@@ -5618,6 +5679,7 @@ module Google
|
|
5618
5679
|
@labels = args[:labels] if args.key?(:labels)
|
5619
5680
|
@linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
|
5620
5681
|
@locations = args[:locations] if args.key?(:locations)
|
5682
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
5621
5683
|
@name = args[:name] if args.key?(:name)
|
5622
5684
|
@node_network_config = args[:node_network_config] if args.key?(:node_network_config)
|
5623
5685
|
@node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
|
@@ -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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220826"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -352,6 +352,12 @@ module Google
|
|
352
352
|
include Google::Apis::Core::JsonObjectSupport
|
353
353
|
end
|
354
354
|
|
355
|
+
class LoggingVariantConfig
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
355
361
|
class MaintenanceExclusionOptions
|
356
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
363
|
|
@@ -508,6 +514,12 @@ module Google
|
|
508
514
|
include Google::Apis::Core::JsonObjectSupport
|
509
515
|
end
|
510
516
|
|
517
|
+
class NodePoolLoggingConfig
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
|
+
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
521
|
+
end
|
522
|
+
|
511
523
|
class NodeTaint
|
512
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
525
|
|
@@ -1121,6 +1133,8 @@ module Google
|
|
1121
1133
|
property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1::NodePoolAutoscaling::Representation
|
1122
1134
|
|
1123
1135
|
property :desired_node_pool_id, as: 'desiredNodePoolId'
|
1136
|
+
property :desired_node_pool_logging_config, as: 'desiredNodePoolLoggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
|
1137
|
+
|
1124
1138
|
property :desired_node_version, as: 'desiredNodeVersion'
|
1125
1139
|
property :desired_notification_config, as: 'desiredNotificationConfig', class: Google::Apis::ContainerV1::NotificationConfig, decorator: Google::Apis::ContainerV1::NotificationConfig::Representation
|
1126
1140
|
|
@@ -1457,6 +1471,13 @@ module Google
|
|
1457
1471
|
end
|
1458
1472
|
end
|
1459
1473
|
|
1474
|
+
class LoggingVariantConfig
|
1475
|
+
# @private
|
1476
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1477
|
+
property :variant, as: 'variant'
|
1478
|
+
end
|
1479
|
+
end
|
1480
|
+
|
1460
1481
|
class MaintenanceExclusionOptions
|
1461
1482
|
# @private
|
1462
1483
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1625,6 +1646,8 @@ module Google
|
|
1625
1646
|
property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1::LinuxNodeConfig::Representation
|
1626
1647
|
|
1627
1648
|
property :local_ssd_count, as: 'localSsdCount'
|
1649
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
|
1650
|
+
|
1628
1651
|
property :machine_type, as: 'machineType'
|
1629
1652
|
hash :metadata, as: 'metadata'
|
1630
1653
|
property :min_cpu_platform, as: 'minCpuPlatform'
|
@@ -1652,6 +1675,8 @@ module Google
|
|
1652
1675
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1653
1676
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
1654
1677
|
|
1678
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
|
1679
|
+
|
1655
1680
|
end
|
1656
1681
|
end
|
1657
1682
|
|
@@ -1753,6 +1778,14 @@ module Google
|
|
1753
1778
|
end
|
1754
1779
|
end
|
1755
1780
|
|
1781
|
+
class NodePoolLoggingConfig
|
1782
|
+
# @private
|
1783
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1784
|
+
property :variant_config, as: 'variantConfig', class: Google::Apis::ContainerV1::LoggingVariantConfig, decorator: Google::Apis::ContainerV1::LoggingVariantConfig::Representation
|
1785
|
+
|
1786
|
+
end
|
1787
|
+
end
|
1788
|
+
|
1756
1789
|
class NodeTaint
|
1757
1790
|
# @private
|
1758
1791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2210,6 +2243,8 @@ module Google
|
|
2210
2243
|
property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1::LinuxNodeConfig::Representation
|
2211
2244
|
|
2212
2245
|
collection :locations, as: 'locations'
|
2246
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
|
2247
|
+
|
2213
2248
|
property :name, as: 'name'
|
2214
2249
|
property :node_network_config, as: 'nodeNetworkConfig', class: Google::Apis::ContainerV1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1::NodeNetworkConfig::Representation
|
2215
2250
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.36.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-
|
11
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.9.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.9.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|