google-apis-container_v1 0.89.0 → 0.90.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: abb2bd6b8930b5038b7bd1deb9b2702ea0ab860ae30b66d4a6a5dca40cdfeff1
|
4
|
+
data.tar.gz: 9e5fdb6e1ea96360ca411d5560d01c15af045f9c736f646550e6d5b939685824
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52dde229e12561f017b56bdb93bdeb5bb2205c3d698c95237114b3743aa3adcf67b612aca7ee0c11cafdd5582aa75e15e6528f0a8cbe455c09f37310a6b70e15
|
7
|
+
data.tar.gz: deac514add6475950865f571dd9e35e79bc2c01fde236f302a5b0a9fbce771b5ffc02567860824541fab2fafc13868ae60c2d71619bf663f7296c8e9a7e0ef0d
|
data/CHANGELOG.md
CHANGED
@@ -355,6 +355,26 @@ module Google
|
|
355
355
|
end
|
356
356
|
end
|
357
357
|
|
358
|
+
# AutoMonitoringConfig defines the configuration for GKE Workload Auto-
|
359
|
+
# Monitoring.
|
360
|
+
class AutoMonitoringConfig
|
361
|
+
include Google::Apis::Core::Hashable
|
362
|
+
|
363
|
+
# Scope for GKE Workload Auto-Monitoring.
|
364
|
+
# Corresponds to the JSON property `scope`
|
365
|
+
# @return [String]
|
366
|
+
attr_accessor :scope
|
367
|
+
|
368
|
+
def initialize(**args)
|
369
|
+
update!(**args)
|
370
|
+
end
|
371
|
+
|
372
|
+
# Update properties of this object
|
373
|
+
def update!(**args)
|
374
|
+
@scope = args[:scope] if args.key?(:scope)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
358
378
|
# AutoUpgradeOptions defines the set of options for the user to control how the
|
359
379
|
# Auto Upgrades will proceed.
|
360
380
|
class AutoUpgradeOptions
|
@@ -3850,6 +3870,12 @@ module Google
|
|
3850
3870
|
class ManagedPrometheusConfig
|
3851
3871
|
include Google::Apis::Core::Hashable
|
3852
3872
|
|
3873
|
+
# AutoMonitoringConfig defines the configuration for GKE Workload Auto-
|
3874
|
+
# Monitoring.
|
3875
|
+
# Corresponds to the JSON property `autoMonitoringConfig`
|
3876
|
+
# @return [Google::Apis::ContainerV1::AutoMonitoringConfig]
|
3877
|
+
attr_accessor :auto_monitoring_config
|
3878
|
+
|
3853
3879
|
# Enable Managed Collection.
|
3854
3880
|
# Corresponds to the JSON property `enabled`
|
3855
3881
|
# @return [Boolean]
|
@@ -3862,6 +3888,7 @@ module Google
|
|
3862
3888
|
|
3863
3889
|
# Update properties of this object
|
3864
3890
|
def update!(**args)
|
3891
|
+
@auto_monitoring_config = args[:auto_monitoring_config] if args.key?(:auto_monitoring_config)
|
3865
3892
|
@enabled = args[:enabled] if args.key?(:enabled)
|
3866
3893
|
end
|
3867
3894
|
end
|
@@ -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.90.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250225"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class AutoMonitoringConfig
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class AutoUpgradeOptions
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -1256,6 +1262,13 @@ module Google
|
|
1256
1262
|
end
|
1257
1263
|
end
|
1258
1264
|
|
1265
|
+
class AutoMonitoringConfig
|
1266
|
+
# @private
|
1267
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1268
|
+
property :scope, as: 'scope'
|
1269
|
+
end
|
1270
|
+
end
|
1271
|
+
|
1259
1272
|
class AutoUpgradeOptions
|
1260
1273
|
# @private
|
1261
1274
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2197,6 +2210,8 @@ module Google
|
|
2197
2210
|
class ManagedPrometheusConfig
|
2198
2211
|
# @private
|
2199
2212
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2213
|
+
property :auto_monitoring_config, as: 'autoMonitoringConfig', class: Google::Apis::ContainerV1::AutoMonitoringConfig, decorator: Google::Apis::ContainerV1::AutoMonitoringConfig::Representation
|
2214
|
+
|
2200
2215
|
property :enabled, as: 'enabled'
|
2201
2216
|
end
|
2202
2217
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.90.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-09 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.90.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|