google-cloud-database_center-v1beta 0.2.0 → 0.4.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/database_center/v1beta/database_center/client.rb +152 -21
- data/lib/google/cloud/database_center/v1beta/database_center/rest/client.rb +153 -21
- data/lib/google/cloud/database_center/v1beta/database_center/rest/service_stub.rb +60 -0
- data/lib/google/cloud/database_center/v1beta/version.rb +1 -1
- data/lib/google/cloud/databasecenter/v1beta/machine_config_pb.rb +2 -23
- data/lib/google/cloud/databasecenter/v1beta/maintenance_pb.rb +3 -26
- data/lib/google/cloud/databasecenter/v1beta/metric_data_pb.rb +2 -24
- data/lib/google/cloud/databasecenter/v1beta/operation_error_type_pb.rb +2 -23
- data/lib/google/cloud/databasecenter/v1beta/product_pb.rb +2 -23
- data/lib/google/cloud/databasecenter/v1beta/service_pb.rb +7 -30
- data/lib/google/cloud/databasecenter/v1beta/service_services_pb.rb +3 -0
- data/lib/google/cloud/databasecenter/v1beta/signals_pb.rb +2 -28
- data/lib/google/cloud/databasecenter/v1beta/suspension_reason_pb.rb +2 -23
- data/proto_docs/google/cloud/databasecenter/v1beta/maintenance.rb +2 -2
- data/proto_docs/google/cloud/databasecenter/v1beta/product.rb +8 -8
- data/proto_docs/google/cloud/databasecenter/v1beta/service.rb +129 -32
- data/proto_docs/google/cloud/databasecenter/v1beta/signals.rb +7 -7
- data/proto_docs/google/protobuf/wrappers.rb +27 -0
- metadata +9 -8
|
@@ -210,8 +210,8 @@ module Google
|
|
|
210
210
|
# OPTIONAL
|
|
211
211
|
# @!attribute [rw] container
|
|
212
212
|
# @return [::String]
|
|
213
|
-
# Specifies where the resource is created. For
|
|
214
|
-
# the project.
|
|
213
|
+
# Specifies where the resource is created. For Google Cloud resources, it is
|
|
214
|
+
# the full name of the project.
|
|
215
215
|
class SubResource
|
|
216
216
|
include ::Google::Protobuf::MessageExts
|
|
217
217
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -530,19 +530,19 @@ module Google
|
|
|
530
530
|
# value.
|
|
531
531
|
SIGNAL_TYPE_LAST_BACKUP_OLD = 7
|
|
532
532
|
|
|
533
|
-
# Represents if a resource violates CIS
|
|
533
|
+
# Represents if a resource violates CIS Google Cloud Platform Foundation 2.0.
|
|
534
534
|
SIGNAL_TYPE_VIOLATES_CIS_GCP_FOUNDATION_2_0 = 8
|
|
535
535
|
|
|
536
|
-
# Represents if a resource violates CIS
|
|
536
|
+
# Represents if a resource violates CIS Google Cloud Platform Foundation 1.3.
|
|
537
537
|
SIGNAL_TYPE_VIOLATES_CIS_GCP_FOUNDATION_1_3 = 9
|
|
538
538
|
|
|
539
|
-
# Represents if a resource violates CIS
|
|
539
|
+
# Represents if a resource violates CIS Google Cloud Platform Foundation 1.2.
|
|
540
540
|
SIGNAL_TYPE_VIOLATES_CIS_GCP_FOUNDATION_1_2 = 10
|
|
541
541
|
|
|
542
|
-
# Represents if a resource violates CIS
|
|
542
|
+
# Represents if a resource violates CIS Google Cloud Platform Foundation 1.1.
|
|
543
543
|
SIGNAL_TYPE_VIOLATES_CIS_GCP_FOUNDATION_1_1 = 11
|
|
544
544
|
|
|
545
|
-
# Represents if a resource violates CIS
|
|
545
|
+
# Represents if a resource violates CIS Google Cloud Platform Foundation 1.0.
|
|
546
546
|
SIGNAL_TYPE_VIOLATES_CIS_GCP_FOUNDATION_1_0 = 12
|
|
547
547
|
|
|
548
548
|
# Represents if a resource violates CIS Controls 8.0.
|
|
@@ -22,6 +22,9 @@ module Google
|
|
|
22
22
|
# Wrapper message for `double`.
|
|
23
23
|
#
|
|
24
24
|
# The JSON representation for `DoubleValue` is JSON number.
|
|
25
|
+
#
|
|
26
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
27
|
+
# has no plan to be removed.
|
|
25
28
|
# @!attribute [rw] value
|
|
26
29
|
# @return [::Float]
|
|
27
30
|
# The double value.
|
|
@@ -33,6 +36,9 @@ module Google
|
|
|
33
36
|
# Wrapper message for `float`.
|
|
34
37
|
#
|
|
35
38
|
# The JSON representation for `FloatValue` is JSON number.
|
|
39
|
+
#
|
|
40
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
41
|
+
# has no plan to be removed.
|
|
36
42
|
# @!attribute [rw] value
|
|
37
43
|
# @return [::Float]
|
|
38
44
|
# The float value.
|
|
@@ -44,6 +50,9 @@ module Google
|
|
|
44
50
|
# Wrapper message for `int64`.
|
|
45
51
|
#
|
|
46
52
|
# The JSON representation for `Int64Value` is JSON string.
|
|
53
|
+
#
|
|
54
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
55
|
+
# has no plan to be removed.
|
|
47
56
|
# @!attribute [rw] value
|
|
48
57
|
# @return [::Integer]
|
|
49
58
|
# The int64 value.
|
|
@@ -55,6 +64,9 @@ module Google
|
|
|
55
64
|
# Wrapper message for `uint64`.
|
|
56
65
|
#
|
|
57
66
|
# The JSON representation for `UInt64Value` is JSON string.
|
|
67
|
+
#
|
|
68
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
69
|
+
# has no plan to be removed.
|
|
58
70
|
# @!attribute [rw] value
|
|
59
71
|
# @return [::Integer]
|
|
60
72
|
# The uint64 value.
|
|
@@ -66,6 +78,9 @@ module Google
|
|
|
66
78
|
# Wrapper message for `int32`.
|
|
67
79
|
#
|
|
68
80
|
# The JSON representation for `Int32Value` is JSON number.
|
|
81
|
+
#
|
|
82
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
83
|
+
# has no plan to be removed.
|
|
69
84
|
# @!attribute [rw] value
|
|
70
85
|
# @return [::Integer]
|
|
71
86
|
# The int32 value.
|
|
@@ -77,6 +92,9 @@ module Google
|
|
|
77
92
|
# Wrapper message for `uint32`.
|
|
78
93
|
#
|
|
79
94
|
# The JSON representation for `UInt32Value` is JSON number.
|
|
95
|
+
#
|
|
96
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
97
|
+
# has no plan to be removed.
|
|
80
98
|
# @!attribute [rw] value
|
|
81
99
|
# @return [::Integer]
|
|
82
100
|
# The uint32 value.
|
|
@@ -88,6 +106,9 @@ module Google
|
|
|
88
106
|
# Wrapper message for `bool`.
|
|
89
107
|
#
|
|
90
108
|
# The JSON representation for `BoolValue` is JSON `true` and `false`.
|
|
109
|
+
#
|
|
110
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
111
|
+
# has no plan to be removed.
|
|
91
112
|
# @!attribute [rw] value
|
|
92
113
|
# @return [::Boolean]
|
|
93
114
|
# The bool value.
|
|
@@ -99,6 +120,9 @@ module Google
|
|
|
99
120
|
# Wrapper message for `string`.
|
|
100
121
|
#
|
|
101
122
|
# The JSON representation for `StringValue` is JSON string.
|
|
123
|
+
#
|
|
124
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
125
|
+
# has no plan to be removed.
|
|
102
126
|
# @!attribute [rw] value
|
|
103
127
|
# @return [::String]
|
|
104
128
|
# The string value.
|
|
@@ -110,6 +134,9 @@ module Google
|
|
|
110
134
|
# Wrapper message for `bytes`.
|
|
111
135
|
#
|
|
112
136
|
# The JSON representation for `BytesValue` is JSON string.
|
|
137
|
+
#
|
|
138
|
+
# Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
139
|
+
# has no plan to be removed.
|
|
113
140
|
# @!attribute [rw] value
|
|
114
141
|
# @return [::String]
|
|
115
142
|
# The bytes value.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-database_center-v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -101,7 +101,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
requirements:
|
|
102
102
|
- - ">="
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: '3.
|
|
104
|
+
version: '3.2'
|
|
105
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
107
107
|
- - ">="
|
|
@@ -110,10 +110,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
requirements: []
|
|
111
111
|
rubygems_version: 3.6.9
|
|
112
112
|
specification_version: 4
|
|
113
|
-
summary: Database Center
|
|
114
|
-
|
|
115
|
-
and summarizing health signals
|
|
116
|
-
|
|
117
|
-
reliability, compliance, security, cost, and
|
|
118
|
-
|
|
113
|
+
summary: Database Center offers a comprehensive, organization-wide platform for monitoring
|
|
114
|
+
database fleet health across various products. It simplifies management and reduces
|
|
115
|
+
risk by automatically aggregating and summarizing key health signals, removing the
|
|
116
|
+
need for custom dashboards. The platform provides a unified view through its dashboard
|
|
117
|
+
and API, enabling teams focused on reliability, compliance, security, cost, and
|
|
118
|
+
administration to quickly identify and address relevant issues within their database
|
|
119
|
+
fleets.
|
|
119
120
|
test_files: []
|