google-apis-gkehub_v1beta 0.17.0 → 0.18.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: 3d470c7ad0c8ee76e7b73346d0055ae1b3dd3f898c1c18595246e34d11f82db1
|
4
|
+
data.tar.gz: 0e94452733cd4afe2356177055e4a908e3b2b4b77342b674ab541726ada58b0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d7c5cf0a256cb928be4283950e78a7737343e637146409d059d160246df8e03ef41589c860fbc05df3c8d06fca28c6a214ef6bfb9be5782c12bfe96d3f5f046
|
7
|
+
data.tar.gz: e2398469ff4910782fbe375635ae4e4a04077c19367bc170df0a1f0aa19ffe9f8d56200301b52d9f3013a57d993929e792cf88c083ded389efde366e3d7cff38
|
data/CHANGELOG.md
CHANGED
@@ -22,6 +22,36 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1beta
|
24
24
|
|
25
|
+
# **Anthosobservability**: Per-Membership Feature spec.
|
26
|
+
class AnthosObservabilityMembershipSpec
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# use full of metrics rather than optimized metrics. See https://cloud.google.
|
30
|
+
# com/anthos/clusters/docs/on-prem/1.8/concepts/logging-and-monitoring#
|
31
|
+
# optimized_metrics_default_metrics
|
32
|
+
# Corresponds to the JSON property `doNotOptimizeMetrics`
|
33
|
+
# @return [Boolean]
|
34
|
+
attr_accessor :do_not_optimize_metrics
|
35
|
+
alias_method :do_not_optimize_metrics?, :do_not_optimize_metrics
|
36
|
+
|
37
|
+
# enable collecting and reporting metrics and logs from user apps See go/onyx-
|
38
|
+
# application-metrics-logs-user-guide
|
39
|
+
# Corresponds to the JSON property `enableStackdriverOnApplications`
|
40
|
+
# @return [Boolean]
|
41
|
+
attr_accessor :enable_stackdriver_on_applications
|
42
|
+
alias_method :enable_stackdriver_on_applications?, :enable_stackdriver_on_applications
|
43
|
+
|
44
|
+
def initialize(**args)
|
45
|
+
update!(**args)
|
46
|
+
end
|
47
|
+
|
48
|
+
# Update properties of this object
|
49
|
+
def update!(**args)
|
50
|
+
@do_not_optimize_metrics = args[:do_not_optimize_metrics] if args.key?(:do_not_optimize_metrics)
|
51
|
+
@enable_stackdriver_on_applications = args[:enable_stackdriver_on_applications] if args.key?(:enable_stackdriver_on_applications)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
25
55
|
# Spec for App Dev Experience Feature.
|
26
56
|
class AppDevExperienceFeatureSpec
|
27
57
|
include Google::Apis::Core::Hashable
|
@@ -1680,6 +1710,11 @@ module Google
|
|
1680
1710
|
class MembershipFeatureSpec
|
1681
1711
|
include Google::Apis::Core::Hashable
|
1682
1712
|
|
1713
|
+
# **Anthosobservability**: Per-Membership Feature spec.
|
1714
|
+
# Corresponds to the JSON property `anthosobservability`
|
1715
|
+
# @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
|
1716
|
+
attr_accessor :anthosobservability
|
1717
|
+
|
1683
1718
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
1684
1719
|
# Corresponds to the JSON property `cloudbuild`
|
1685
1720
|
# @return [Google::Apis::GkehubV1beta::MembershipSpec]
|
@@ -1702,6 +1737,7 @@ module Google
|
|
1702
1737
|
|
1703
1738
|
# Update properties of this object
|
1704
1739
|
def update!(**args)
|
1740
|
+
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
1705
1741
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
1706
1742
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
1707
1743
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1beta
|
18
18
|
# Version of the google-apis-gkehub_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220128"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,12 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1beta
|
24
24
|
|
25
|
+
class AnthosObservabilityMembershipSpec
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
25
31
|
class AppDevExperienceFeatureSpec
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
33
|
|
@@ -406,6 +412,14 @@ module Google
|
|
406
412
|
include Google::Apis::Core::JsonObjectSupport
|
407
413
|
end
|
408
414
|
|
415
|
+
class AnthosObservabilityMembershipSpec
|
416
|
+
# @private
|
417
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
418
|
+
property :do_not_optimize_metrics, as: 'doNotOptimizeMetrics'
|
419
|
+
property :enable_stackdriver_on_applications, as: 'enableStackdriverOnApplications'
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
409
423
|
class AppDevExperienceFeatureSpec
|
410
424
|
# @private
|
411
425
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -875,6 +889,8 @@ module Google
|
|
875
889
|
class MembershipFeatureSpec
|
876
890
|
# @private
|
877
891
|
class Representation < Google::Apis::Core::JsonRepresentation
|
892
|
+
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
|
893
|
+
|
878
894
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1beta::MembershipSpec, decorator: Google::Apis::GkehubV1beta::MembershipSpec::Representation
|
879
895
|
|
880
896
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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-02-07 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/main/generated/google-apis-gkehub_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|