google-apis-container_v1 0.110.0 → 0.111.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: edf0949b9a8ebd3ef5dd24a747b1d4c6ec9c3a32c2ae6a894cbaa30b09a89f8f
|
|
4
|
+
data.tar.gz: caafdc8f0e28f168aedecaf235d42a67ef0ea6eac123e07b1bcee207a4f656f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa064835129fe008642af410512e00d7c4e14ff9e275e5a0fed927814120425ea1e5231824c03be267332416d90139591825bd7bfe8770486f042e08bea01df0
|
|
7
|
+
data.tar.gz: ab7f67049d8c4e2774b8413a5be15344930cee907588d46295482900cdf10321198a973dc5553b49a9f9498c3c43a3045cd1ac7711a476145ace482329b00b07
|
data/CHANGELOG.md
CHANGED
|
@@ -1432,6 +1432,12 @@ module Google
|
|
|
1432
1432
|
# @return [Google::Apis::ContainerV1::MaintenancePolicy]
|
|
1433
1433
|
attr_accessor :maintenance_policy
|
|
1434
1434
|
|
|
1435
|
+
# ManagedOpenTelemetryConfig is the configuration for the GKE Managed
|
|
1436
|
+
# OpenTelemetry pipeline.
|
|
1437
|
+
# Corresponds to the JSON property `managedOpentelemetryConfig`
|
|
1438
|
+
# @return [Google::Apis::ContainerV1::ManagedOpenTelemetryConfig]
|
|
1439
|
+
attr_accessor :managed_opentelemetry_config
|
|
1440
|
+
|
|
1435
1441
|
# The authentication information for accessing the master endpoint.
|
|
1436
1442
|
# Authentication can be done using HTTP basic auth or using client certificates.
|
|
1437
1443
|
# Corresponds to the JSON property `masterAuth`
|
|
@@ -1711,6 +1717,7 @@ module Google
|
|
|
1711
1717
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
|
1712
1718
|
@logging_service = args[:logging_service] if args.key?(:logging_service)
|
|
1713
1719
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
|
1720
|
+
@managed_opentelemetry_config = args[:managed_opentelemetry_config] if args.key?(:managed_opentelemetry_config)
|
|
1714
1721
|
@master_auth = args[:master_auth] if args.key?(:master_auth)
|
|
1715
1722
|
@master_authorized_networks_config = args[:master_authorized_networks_config] if args.key?(:master_authorized_networks_config)
|
|
1716
1723
|
@mesh_certificates = args[:mesh_certificates] if args.key?(:mesh_certificates)
|
|
@@ -2046,6 +2053,12 @@ module Google
|
|
|
2046
2053
|
# @return [String]
|
|
2047
2054
|
attr_accessor :desired_logging_service
|
|
2048
2055
|
|
|
2056
|
+
# ManagedOpenTelemetryConfig is the configuration for the GKE Managed
|
|
2057
|
+
# OpenTelemetry pipeline.
|
|
2058
|
+
# Corresponds to the JSON property `desiredManagedOpentelemetryConfig`
|
|
2059
|
+
# @return [Google::Apis::ContainerV1::ManagedOpenTelemetryConfig]
|
|
2060
|
+
attr_accessor :desired_managed_opentelemetry_config
|
|
2061
|
+
|
|
2049
2062
|
# Configuration options for the master authorized networks feature. Enabled
|
|
2050
2063
|
# master authorized networks will disallow all external traffic to access
|
|
2051
2064
|
# Kubernetes master through HTTPS except traffic from the given CIDR blocks,
|
|
@@ -2325,6 +2338,7 @@ module Google
|
|
|
2325
2338
|
@desired_locations = args[:desired_locations] if args.key?(:desired_locations)
|
|
2326
2339
|
@desired_logging_config = args[:desired_logging_config] if args.key?(:desired_logging_config)
|
|
2327
2340
|
@desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
|
|
2341
|
+
@desired_managed_opentelemetry_config = args[:desired_managed_opentelemetry_config] if args.key?(:desired_managed_opentelemetry_config)
|
|
2328
2342
|
@desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
|
|
2329
2343
|
@desired_master_version = args[:desired_master_version] if args.key?(:desired_master_version)
|
|
2330
2344
|
@desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
|
|
@@ -4767,6 +4781,26 @@ module Google
|
|
|
4767
4781
|
end
|
|
4768
4782
|
end
|
|
4769
4783
|
|
|
4784
|
+
# ManagedOpenTelemetryConfig is the configuration for the GKE Managed
|
|
4785
|
+
# OpenTelemetry pipeline.
|
|
4786
|
+
class ManagedOpenTelemetryConfig
|
|
4787
|
+
include Google::Apis::Core::Hashable
|
|
4788
|
+
|
|
4789
|
+
# Scope of the Managed OpenTelemetry pipeline.
|
|
4790
|
+
# Corresponds to the JSON property `scope`
|
|
4791
|
+
# @return [String]
|
|
4792
|
+
attr_accessor :scope
|
|
4793
|
+
|
|
4794
|
+
def initialize(**args)
|
|
4795
|
+
update!(**args)
|
|
4796
|
+
end
|
|
4797
|
+
|
|
4798
|
+
# Update properties of this object
|
|
4799
|
+
def update!(**args)
|
|
4800
|
+
@scope = args[:scope] if args.key?(:scope)
|
|
4801
|
+
end
|
|
4802
|
+
end
|
|
4803
|
+
|
|
4770
4804
|
# ManagedPrometheusConfig defines the configuration for Google Cloud Managed
|
|
4771
4805
|
# Service for Prometheus.
|
|
4772
4806
|
class ManagedPrometheusConfig
|
|
@@ -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.111.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251202"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -670,6 +670,12 @@ module Google
|
|
|
670
670
|
include Google::Apis::Core::JsonObjectSupport
|
|
671
671
|
end
|
|
672
672
|
|
|
673
|
+
class ManagedOpenTelemetryConfig
|
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
675
|
+
|
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
677
|
+
end
|
|
678
|
+
|
|
673
679
|
class ManagedPrometheusConfig
|
|
674
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
675
681
|
|
|
@@ -1743,6 +1749,8 @@ module Google
|
|
|
1743
1749
|
property :logging_service, as: 'loggingService'
|
|
1744
1750
|
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::ContainerV1::MaintenancePolicy, decorator: Google::Apis::ContainerV1::MaintenancePolicy::Representation
|
|
1745
1751
|
|
|
1752
|
+
property :managed_opentelemetry_config, as: 'managedOpentelemetryConfig', class: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig, decorator: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig::Representation
|
|
1753
|
+
|
|
1746
1754
|
property :master_auth, as: 'masterAuth', class: Google::Apis::ContainerV1::MasterAuth, decorator: Google::Apis::ContainerV1::MasterAuth::Representation
|
|
1747
1755
|
|
|
1748
1756
|
property :master_authorized_networks_config, as: 'masterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
|
@@ -1892,6 +1900,8 @@ module Google
|
|
|
1892
1900
|
property :desired_logging_config, as: 'desiredLoggingConfig', class: Google::Apis::ContainerV1::LoggingConfig, decorator: Google::Apis::ContainerV1::LoggingConfig::Representation
|
|
1893
1901
|
|
|
1894
1902
|
property :desired_logging_service, as: 'desiredLoggingService'
|
|
1903
|
+
property :desired_managed_opentelemetry_config, as: 'desiredManagedOpentelemetryConfig', class: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig, decorator: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig::Representation
|
|
1904
|
+
|
|
1895
1905
|
property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
|
1896
1906
|
|
|
1897
1907
|
property :desired_master_version, as: 'desiredMasterVersion'
|
|
@@ -2623,6 +2633,13 @@ module Google
|
|
|
2623
2633
|
end
|
|
2624
2634
|
end
|
|
2625
2635
|
|
|
2636
|
+
class ManagedOpenTelemetryConfig
|
|
2637
|
+
# @private
|
|
2638
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2639
|
+
property :scope, as: 'scope'
|
|
2640
|
+
end
|
|
2641
|
+
end
|
|
2642
|
+
|
|
2626
2643
|
class ManagedPrometheusConfig
|
|
2627
2644
|
# @private
|
|
2628
2645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.111.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.111.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:
|