google-cloud-oracle_database-v1 0.a → 0.2.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/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +154 -8
- data/lib/google/cloud/oracle_database/v1/bindings_override.rb +102 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/credentials.rb +47 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/paths.rb +124 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/client.rb +2647 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/operations.rb +907 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/service_stub.rb +1428 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest.rb +54 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database.rb +48 -0
- data/lib/google/cloud/oracle_database/v1/rest.rb +38 -0
- data/lib/google/cloud/oracle_database/v1/version.rb +7 -2
- data/lib/google/cloud/oracle_database/v1.rb +40 -0
- data/lib/google/cloud/oracledatabase/v1/autonomous_database_character_set_pb.rb +46 -0
- data/lib/google/cloud/oracledatabase/v1/autonomous_database_pb.rb +83 -0
- data/lib/google/cloud/oracledatabase/v1/autonomous_db_backup_pb.rb +50 -0
- data/lib/google/cloud/oracledatabase/v1/autonomous_db_version_pb.rb +46 -0
- data/lib/google/cloud/oracledatabase/v1/common_pb.rb +44 -0
- data/lib/google/cloud/oracledatabase/v1/db_node_pb.rb +47 -0
- data/lib/google/cloud/oracledatabase/v1/db_server_pb.rb +47 -0
- data/lib/google/cloud/oracledatabase/v1/db_system_shape_pb.rb +45 -0
- data/lib/google/cloud/oracledatabase/v1/entitlement_pb.rb +47 -0
- data/lib/google/cloud/oracledatabase/v1/exadata_infra_pb.rb +56 -0
- data/lib/google/cloud/oracledatabase/v1/gi_version_pb.rb +45 -0
- data/lib/google/cloud/oracledatabase/v1/location_metadata_pb.rb +44 -0
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_pb.rb +108 -0
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_services_pb.rb +89 -0
- data/lib/google/cloud/oracledatabase/v1/vm_cluster_pb.rb +54 -0
- data/lib/google-cloud-oracle_database-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +459 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/field_info.rb +88 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +227 -0
- data/proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb +844 -0
- data/proto_docs/google/cloud/oracledatabase/v1/autonomous_database_character_set.rb +57 -0
- data/proto_docs/google/cloud/oracledatabase/v1/autonomous_db_backup.rb +175 -0
- data/proto_docs/google/cloud/oracledatabase/v1/autonomous_db_version.rb +48 -0
- data/proto_docs/google/cloud/oracledatabase/v1/common.rb +37 -0
- data/proto_docs/google/cloud/oracledatabase/v1/db_node.rb +103 -0
- data/proto_docs/google/cloud/oracledatabase/v1/db_server.rb +100 -0
- data/proto_docs/google/cloud/oracledatabase/v1/db_system_shape.rb +70 -0
- data/proto_docs/google/cloud/oracledatabase/v1/entitlement.rb +78 -0
- data/proto_docs/google/cloud/oracledatabase/v1/exadata_infra.rb +266 -0
- data/proto_docs/google/cloud/oracledatabase/v1/gi_version.rb +41 -0
- data/proto_docs/google/cloud/oracledatabase/v1/location_metadata.rb +35 -0
- data/proto_docs/google/cloud/oracledatabase/v1/oracledatabase.rb +649 -0
- data/proto_docs/google/cloud/oracledatabase/v1/vm_cluster.rb +251 -0
- data/proto_docs/google/longrunning/operations.rb +169 -0
- data/proto_docs/google/protobuf/any.rb +145 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +34 -0
- data/proto_docs/google/protobuf/timestamp.rb +127 -0
- data/proto_docs/google/rpc/status.rb +48 -0
- data/proto_docs/google/type/datetime.rb +99 -0
- data/proto_docs/google/type/dayofweek.rb +49 -0
- data/proto_docs/google/type/month.rb +64 -0
- data/proto_docs/google/type/timeofday.rb +45 -0
- metadata +124 -11
|
@@ -0,0 +1,649 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2024 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
module Google
|
|
21
|
+
module Cloud
|
|
22
|
+
module OracleDatabase
|
|
23
|
+
module V1
|
|
24
|
+
# The request for `CloudExadataInfrastructures.List`.
|
|
25
|
+
# @!attribute [rw] parent
|
|
26
|
+
# @return [::String]
|
|
27
|
+
# Required. The parent value for CloudExadataInfrastructure in the following
|
|
28
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
29
|
+
# @!attribute [rw] page_size
|
|
30
|
+
# @return [::Integer]
|
|
31
|
+
# Optional. The maximum number of items to return.
|
|
32
|
+
# If unspecified, at most 50 Exadata infrastructures will be returned.
|
|
33
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
34
|
+
# @!attribute [rw] page_token
|
|
35
|
+
# @return [::String]
|
|
36
|
+
# Optional. A token identifying a page of results the server should return.
|
|
37
|
+
class ListCloudExadataInfrastructuresRequest
|
|
38
|
+
include ::Google::Protobuf::MessageExts
|
|
39
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# The response for `CloudExadataInfrastructures.list`.
|
|
43
|
+
# @!attribute [rw] cloud_exadata_infrastructures
|
|
44
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::CloudExadataInfrastructure>]
|
|
45
|
+
# The list of Exadata Infrastructures.
|
|
46
|
+
# @!attribute [rw] next_page_token
|
|
47
|
+
# @return [::String]
|
|
48
|
+
# A token for fetching next page of response.
|
|
49
|
+
class ListCloudExadataInfrastructuresResponse
|
|
50
|
+
include ::Google::Protobuf::MessageExts
|
|
51
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# The request for `CloudExadataInfrastructure.Get`.
|
|
55
|
+
# @!attribute [rw] name
|
|
56
|
+
# @return [::String]
|
|
57
|
+
# Required. The name of the Cloud Exadata Infrastructure in the following
|
|
58
|
+
# format:
|
|
59
|
+
# projects/\\{project}/locations/\\{location}/cloudExadataInfrastructures/\\{cloud_exadata_infrastructure}.
|
|
60
|
+
class GetCloudExadataInfrastructureRequest
|
|
61
|
+
include ::Google::Protobuf::MessageExts
|
|
62
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# The request for `CloudExadataInfrastructure.Create`.
|
|
66
|
+
# @!attribute [rw] parent
|
|
67
|
+
# @return [::String]
|
|
68
|
+
# Required. The parent value for CloudExadataInfrastructure in the following
|
|
69
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
70
|
+
# @!attribute [rw] cloud_exadata_infrastructure_id
|
|
71
|
+
# @return [::String]
|
|
72
|
+
# Required. The ID of the Exadata Infrastructure to create. This value is
|
|
73
|
+
# restricted to (^[a-z]([a-z0-9-]\\{0,61}[a-z0-9])?$) and must be a maximum of
|
|
74
|
+
# 63 characters in length. The value must start with a letter and end with a
|
|
75
|
+
# letter or a number.
|
|
76
|
+
# @!attribute [rw] cloud_exadata_infrastructure
|
|
77
|
+
# @return [::Google::Cloud::OracleDatabase::V1::CloudExadataInfrastructure]
|
|
78
|
+
# Required. Details of the Exadata Infrastructure instance to create.
|
|
79
|
+
# @!attribute [rw] request_id
|
|
80
|
+
# @return [::String]
|
|
81
|
+
# Optional. An optional ID to identify the request. This value is used to
|
|
82
|
+
# identify duplicate requests. If you make a request with the same request ID
|
|
83
|
+
# and the original request is still in progress or completed, the server
|
|
84
|
+
# ignores the second request. This prevents clients from
|
|
85
|
+
# accidentally creating duplicate commitments.
|
|
86
|
+
#
|
|
87
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
88
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
89
|
+
class CreateCloudExadataInfrastructureRequest
|
|
90
|
+
include ::Google::Protobuf::MessageExts
|
|
91
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# The request for `CloudExadataInfrastructure.Delete`.
|
|
95
|
+
# @!attribute [rw] name
|
|
96
|
+
# @return [::String]
|
|
97
|
+
# Required. The name of the Cloud Exadata Infrastructure in the following
|
|
98
|
+
# format:
|
|
99
|
+
# projects/\\{project}/locations/\\{location}/cloudExadataInfrastructures/\\{cloud_exadata_infrastructure}.
|
|
100
|
+
# @!attribute [rw] request_id
|
|
101
|
+
# @return [::String]
|
|
102
|
+
# Optional. An optional ID to identify the request. This value is used to
|
|
103
|
+
# identify duplicate requests. If you make a request with the same request ID
|
|
104
|
+
# and the original request is still in progress or completed, the server
|
|
105
|
+
# ignores the second request. This prevents clients from
|
|
106
|
+
# accidentally creating duplicate commitments.
|
|
107
|
+
#
|
|
108
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
109
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
110
|
+
# @!attribute [rw] force
|
|
111
|
+
# @return [::Boolean]
|
|
112
|
+
# Optional. If set to true, all VM clusters for this Exadata Infrastructure
|
|
113
|
+
# will be deleted. An Exadata Infrastructure can only be deleted once all its
|
|
114
|
+
# VM clusters have been deleted.
|
|
115
|
+
class DeleteCloudExadataInfrastructureRequest
|
|
116
|
+
include ::Google::Protobuf::MessageExts
|
|
117
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# The request for `CloudVmCluster.List`.
|
|
121
|
+
# @!attribute [rw] parent
|
|
122
|
+
# @return [::String]
|
|
123
|
+
# Required. The name of the parent in the following format:
|
|
124
|
+
# projects/\\{project}/locations/\\{location}.
|
|
125
|
+
# @!attribute [rw] page_size
|
|
126
|
+
# @return [::Integer]
|
|
127
|
+
# Optional. The number of VM clusters to return.
|
|
128
|
+
# If unspecified, at most 50 VM clusters will be returned.
|
|
129
|
+
# The maximum value is 1,000.
|
|
130
|
+
# @!attribute [rw] page_token
|
|
131
|
+
# @return [::String]
|
|
132
|
+
# Optional. A token identifying the page of results the server returns.
|
|
133
|
+
# @!attribute [rw] filter
|
|
134
|
+
# @return [::String]
|
|
135
|
+
# Optional. An expression for filtering the results of the request.
|
|
136
|
+
class ListCloudVmClustersRequest
|
|
137
|
+
include ::Google::Protobuf::MessageExts
|
|
138
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# The response for `CloudVmCluster.List`.
|
|
142
|
+
# @!attribute [rw] cloud_vm_clusters
|
|
143
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::CloudVmCluster>]
|
|
144
|
+
# The list of VM Clusters.
|
|
145
|
+
# @!attribute [rw] next_page_token
|
|
146
|
+
# @return [::String]
|
|
147
|
+
# A token to fetch the next page of results.
|
|
148
|
+
class ListCloudVmClustersResponse
|
|
149
|
+
include ::Google::Protobuf::MessageExts
|
|
150
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
# The request for `CloudVmCluster.Get`.
|
|
154
|
+
# @!attribute [rw] name
|
|
155
|
+
# @return [::String]
|
|
156
|
+
# Required. The name of the Cloud VM Cluster in the following format:
|
|
157
|
+
# projects/\\{project}/locations/\\{location}/cloudVmClusters/\\{cloud_vm_cluster}.
|
|
158
|
+
class GetCloudVmClusterRequest
|
|
159
|
+
include ::Google::Protobuf::MessageExts
|
|
160
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
# The request for `CloudVmCluster.Create`.
|
|
164
|
+
# @!attribute [rw] parent
|
|
165
|
+
# @return [::String]
|
|
166
|
+
# Required. The name of the parent in the following format:
|
|
167
|
+
# projects/\\{project}/locations/\\{location}.
|
|
168
|
+
# @!attribute [rw] cloud_vm_cluster_id
|
|
169
|
+
# @return [::String]
|
|
170
|
+
# Required. The ID of the VM Cluster to create. This value is restricted
|
|
171
|
+
# to (^[a-z]([a-z0-9-]\\{0,61}[a-z0-9])?$) and must be a maximum of 63
|
|
172
|
+
# characters in length. The value must start with a letter and end with
|
|
173
|
+
# a letter or a number.
|
|
174
|
+
# @!attribute [rw] cloud_vm_cluster
|
|
175
|
+
# @return [::Google::Cloud::OracleDatabase::V1::CloudVmCluster]
|
|
176
|
+
# Required. The resource being created
|
|
177
|
+
# @!attribute [rw] request_id
|
|
178
|
+
# @return [::String]
|
|
179
|
+
# Optional. An optional ID to identify the request. This value is used to
|
|
180
|
+
# identify duplicate requests. If you make a request with the same request ID
|
|
181
|
+
# and the original request is still in progress or completed, the server
|
|
182
|
+
# ignores the second request. This prevents clients from
|
|
183
|
+
# accidentally creating duplicate commitments.
|
|
184
|
+
#
|
|
185
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
186
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
187
|
+
class CreateCloudVmClusterRequest
|
|
188
|
+
include ::Google::Protobuf::MessageExts
|
|
189
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
# The request for `CloudVmCluster.Delete`.
|
|
193
|
+
# @!attribute [rw] name
|
|
194
|
+
# @return [::String]
|
|
195
|
+
# Required. The name of the Cloud VM Cluster in the following format:
|
|
196
|
+
# projects/\\{project}/locations/\\{location}/cloudVmClusters/\\{cloud_vm_cluster}.
|
|
197
|
+
# @!attribute [rw] request_id
|
|
198
|
+
# @return [::String]
|
|
199
|
+
# Optional. An optional ID to identify the request. This value is used to
|
|
200
|
+
# identify duplicate requests. If you make a request with the same request ID
|
|
201
|
+
# and the original request is still in progress or completed, the server
|
|
202
|
+
# ignores the second request. This prevents clients from
|
|
203
|
+
# accidentally creating duplicate commitments.
|
|
204
|
+
#
|
|
205
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
206
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
207
|
+
# @!attribute [rw] force
|
|
208
|
+
# @return [::Boolean]
|
|
209
|
+
# Optional. If set to true, all child resources for the VM Cluster will be
|
|
210
|
+
# deleted. A VM Cluster can only be deleted once all its child resources have
|
|
211
|
+
# been deleted.
|
|
212
|
+
class DeleteCloudVmClusterRequest
|
|
213
|
+
include ::Google::Protobuf::MessageExts
|
|
214
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
# The request for `Entitlement.List`.
|
|
218
|
+
# @!attribute [rw] parent
|
|
219
|
+
# @return [::String]
|
|
220
|
+
# Required. The parent value for the entitlement in the following format:
|
|
221
|
+
# projects/\\{project}/locations/\\{location}.
|
|
222
|
+
# @!attribute [rw] page_size
|
|
223
|
+
# @return [::Integer]
|
|
224
|
+
# Optional. The maximum number of items to return.
|
|
225
|
+
# If unspecified, a maximum of 50 entitlements will be returned.
|
|
226
|
+
# The maximum value is 1000.
|
|
227
|
+
# @!attribute [rw] page_token
|
|
228
|
+
# @return [::String]
|
|
229
|
+
# Optional. A token identifying a page of results the server should return.
|
|
230
|
+
class ListEntitlementsRequest
|
|
231
|
+
include ::Google::Protobuf::MessageExts
|
|
232
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
# The response for `Entitlement.List`.
|
|
236
|
+
# @!attribute [rw] entitlements
|
|
237
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::Entitlement>]
|
|
238
|
+
# The list of Entitlements
|
|
239
|
+
# @!attribute [rw] next_page_token
|
|
240
|
+
# @return [::String]
|
|
241
|
+
# A token identifying a page of results the server should return.
|
|
242
|
+
class ListEntitlementsResponse
|
|
243
|
+
include ::Google::Protobuf::MessageExts
|
|
244
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
# The request for `DbServer.List`.
|
|
248
|
+
# @!attribute [rw] parent
|
|
249
|
+
# @return [::String]
|
|
250
|
+
# Required. The parent value for database server in the following format:
|
|
251
|
+
# projects/\\{project}/locations/\\{location}/cloudExadataInfrastructures/\\{cloudExadataInfrastructure}.
|
|
252
|
+
# @!attribute [rw] page_size
|
|
253
|
+
# @return [::Integer]
|
|
254
|
+
# Optional. The maximum number of items to return.
|
|
255
|
+
# If unspecified, a maximum of 50 db servers will be returned.
|
|
256
|
+
# The maximum value is 1000; values above 1000 will be reset to 1000.
|
|
257
|
+
# @!attribute [rw] page_token
|
|
258
|
+
# @return [::String]
|
|
259
|
+
# Optional. A token identifying a page of results the server should return.
|
|
260
|
+
class ListDbServersRequest
|
|
261
|
+
include ::Google::Protobuf::MessageExts
|
|
262
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
# The response for `DbServer.List`.
|
|
266
|
+
# @!attribute [rw] db_servers
|
|
267
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::DbServer>]
|
|
268
|
+
# The list of database servers.
|
|
269
|
+
# @!attribute [rw] next_page_token
|
|
270
|
+
# @return [::String]
|
|
271
|
+
# A token identifying a page of results the server should return.
|
|
272
|
+
class ListDbServersResponse
|
|
273
|
+
include ::Google::Protobuf::MessageExts
|
|
274
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
# The request for `DbNode.List`.
|
|
278
|
+
# @!attribute [rw] parent
|
|
279
|
+
# @return [::String]
|
|
280
|
+
# Required. The parent value for database node in the following format:
|
|
281
|
+
# projects/\\{project}/locations/\\{location}/cloudVmClusters/\\{cloudVmCluster}.
|
|
282
|
+
# @!attribute [rw] page_size
|
|
283
|
+
# @return [::Integer]
|
|
284
|
+
# Optional. The maximum number of items to return.
|
|
285
|
+
# If unspecified, at most 50 db nodes will be returned.
|
|
286
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
287
|
+
# @!attribute [rw] page_token
|
|
288
|
+
# @return [::String]
|
|
289
|
+
# Optional. A token identifying a page of results the node should return.
|
|
290
|
+
class ListDbNodesRequest
|
|
291
|
+
include ::Google::Protobuf::MessageExts
|
|
292
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
293
|
+
end
|
|
294
|
+
|
|
295
|
+
# The response for `DbNode.List`.
|
|
296
|
+
# @!attribute [rw] db_nodes
|
|
297
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::DbNode>]
|
|
298
|
+
# The list of DB Nodes
|
|
299
|
+
# @!attribute [rw] next_page_token
|
|
300
|
+
# @return [::String]
|
|
301
|
+
# A token identifying a page of results the node should return.
|
|
302
|
+
class ListDbNodesResponse
|
|
303
|
+
include ::Google::Protobuf::MessageExts
|
|
304
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
# The request for `GiVersion.List`.
|
|
308
|
+
# @!attribute [rw] parent
|
|
309
|
+
# @return [::String]
|
|
310
|
+
# Required. The parent value for Grid Infrastructure Version in the following
|
|
311
|
+
# format: Format: projects/\\{project}/locations/\\{location}.
|
|
312
|
+
# @!attribute [rw] page_size
|
|
313
|
+
# @return [::Integer]
|
|
314
|
+
# Optional. The maximum number of items to return.
|
|
315
|
+
# If unspecified, a maximum of 50 Oracle Grid Infrastructure (GI) versions
|
|
316
|
+
# will be returned. The maximum value is 1000; values above 1000 will be
|
|
317
|
+
# reset to 1000.
|
|
318
|
+
# @!attribute [rw] page_token
|
|
319
|
+
# @return [::String]
|
|
320
|
+
# Optional. A token identifying a page of results the server should return.
|
|
321
|
+
class ListGiVersionsRequest
|
|
322
|
+
include ::Google::Protobuf::MessageExts
|
|
323
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
324
|
+
end
|
|
325
|
+
|
|
326
|
+
# The response for `GiVersion.List`.
|
|
327
|
+
# @!attribute [rw] gi_versions
|
|
328
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::GiVersion>]
|
|
329
|
+
# The list of Oracle Grid Infrastructure (GI) versions.
|
|
330
|
+
# @!attribute [rw] next_page_token
|
|
331
|
+
# @return [::String]
|
|
332
|
+
# A token identifying a page of results the server should return.
|
|
333
|
+
class ListGiVersionsResponse
|
|
334
|
+
include ::Google::Protobuf::MessageExts
|
|
335
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
336
|
+
end
|
|
337
|
+
|
|
338
|
+
# The request for `DbSystemShape.List`.
|
|
339
|
+
# @!attribute [rw] parent
|
|
340
|
+
# @return [::String]
|
|
341
|
+
# Required. The parent value for Database System Shapes in the following
|
|
342
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
343
|
+
# @!attribute [rw] page_size
|
|
344
|
+
# @return [::Integer]
|
|
345
|
+
# Optional. The maximum number of items to return.
|
|
346
|
+
# If unspecified, at most 50 database system shapes will be returned.
|
|
347
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
348
|
+
# @!attribute [rw] page_token
|
|
349
|
+
# @return [::String]
|
|
350
|
+
# Optional. A token identifying a page of results the server should return.
|
|
351
|
+
class ListDbSystemShapesRequest
|
|
352
|
+
include ::Google::Protobuf::MessageExts
|
|
353
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
354
|
+
end
|
|
355
|
+
|
|
356
|
+
# The response for `DbSystemShape.List`.
|
|
357
|
+
# @!attribute [rw] db_system_shapes
|
|
358
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::DbSystemShape>]
|
|
359
|
+
# The list of Database System shapes.
|
|
360
|
+
# @!attribute [rw] next_page_token
|
|
361
|
+
# @return [::String]
|
|
362
|
+
# A token identifying a page of results the server should return.
|
|
363
|
+
class ListDbSystemShapesResponse
|
|
364
|
+
include ::Google::Protobuf::MessageExts
|
|
365
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
366
|
+
end
|
|
367
|
+
|
|
368
|
+
# Represents the metadata of the long-running operation.
|
|
369
|
+
# @!attribute [r] create_time
|
|
370
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
371
|
+
# Output only. The time the operation was created.
|
|
372
|
+
# @!attribute [r] end_time
|
|
373
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
374
|
+
# Output only. The time the operation finished running.
|
|
375
|
+
# @!attribute [r] target
|
|
376
|
+
# @return [::String]
|
|
377
|
+
# Output only. Server-defined resource path for the target of the operation.
|
|
378
|
+
# @!attribute [r] verb
|
|
379
|
+
# @return [::String]
|
|
380
|
+
# Output only. Name of the verb executed by the operation.
|
|
381
|
+
# @!attribute [r] status_message
|
|
382
|
+
# @return [::String]
|
|
383
|
+
# Output only. The status of the operation.
|
|
384
|
+
# @!attribute [r] requested_cancellation
|
|
385
|
+
# @return [::Boolean]
|
|
386
|
+
# Output only. Identifies whether the user has requested cancellation
|
|
387
|
+
# of the operation. Operations that have been cancelled successfully
|
|
388
|
+
# have [Operation.error][] value with a
|
|
389
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
|
|
390
|
+
# `Code.CANCELLED`.
|
|
391
|
+
# @!attribute [r] api_version
|
|
392
|
+
# @return [::String]
|
|
393
|
+
# Output only. API version used to start the operation.
|
|
394
|
+
# @!attribute [r] percent_complete
|
|
395
|
+
# @return [::Float]
|
|
396
|
+
# Output only. An estimated percentage of the operation that has been
|
|
397
|
+
# completed at a given moment of time, between 0 and 100.
|
|
398
|
+
class OperationMetadata
|
|
399
|
+
include ::Google::Protobuf::MessageExts
|
|
400
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
401
|
+
end
|
|
402
|
+
|
|
403
|
+
# The request for `AutonomousDatabase.List`.
|
|
404
|
+
# @!attribute [rw] parent
|
|
405
|
+
# @return [::String]
|
|
406
|
+
# Required. The parent value for the Autonomous Database in the following
|
|
407
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
408
|
+
# @!attribute [rw] page_size
|
|
409
|
+
# @return [::Integer]
|
|
410
|
+
# Optional. The maximum number of items to return.
|
|
411
|
+
# If unspecified, at most 50 Autonomous Database will be returned.
|
|
412
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
413
|
+
# @!attribute [rw] page_token
|
|
414
|
+
# @return [::String]
|
|
415
|
+
# Optional. A token identifying a page of results the server should return.
|
|
416
|
+
# @!attribute [rw] filter
|
|
417
|
+
# @return [::String]
|
|
418
|
+
# Optional. An expression for filtering the results of the request.
|
|
419
|
+
# @!attribute [rw] order_by
|
|
420
|
+
# @return [::String]
|
|
421
|
+
# Optional. An expression for ordering the results of the request.
|
|
422
|
+
class ListAutonomousDatabasesRequest
|
|
423
|
+
include ::Google::Protobuf::MessageExts
|
|
424
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
425
|
+
end
|
|
426
|
+
|
|
427
|
+
# The response for `AutonomousDatabase.List`.
|
|
428
|
+
# @!attribute [rw] autonomous_databases
|
|
429
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::AutonomousDatabase>]
|
|
430
|
+
# The list of Autonomous Databases.
|
|
431
|
+
# @!attribute [rw] next_page_token
|
|
432
|
+
# @return [::String]
|
|
433
|
+
# A token identifying a page of results the server should return.
|
|
434
|
+
class ListAutonomousDatabasesResponse
|
|
435
|
+
include ::Google::Protobuf::MessageExts
|
|
436
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
437
|
+
end
|
|
438
|
+
|
|
439
|
+
# The request for `AutonomousDatabase.Get`.
|
|
440
|
+
# @!attribute [rw] name
|
|
441
|
+
# @return [::String]
|
|
442
|
+
# Required. The name of the Autonomous Database in the following format:
|
|
443
|
+
# projects/\\{project}/locations/\\{location}/autonomousDatabases/\\{autonomous_database}.
|
|
444
|
+
class GetAutonomousDatabaseRequest
|
|
445
|
+
include ::Google::Protobuf::MessageExts
|
|
446
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
447
|
+
end
|
|
448
|
+
|
|
449
|
+
# The request for `AutonomousDatabase.Create`.
|
|
450
|
+
# @!attribute [rw] parent
|
|
451
|
+
# @return [::String]
|
|
452
|
+
# Required. The name of the parent in the following format:
|
|
453
|
+
# projects/\\{project}/locations/\\{location}.
|
|
454
|
+
# @!attribute [rw] autonomous_database_id
|
|
455
|
+
# @return [::String]
|
|
456
|
+
# Required. The ID of the Autonomous Database to create. This value is
|
|
457
|
+
# restricted to (^[a-z]([a-z0-9-]\\{0,61}[a-z0-9])?$) and must be a maximum of
|
|
458
|
+
# 63 characters in length. The value must start with a letter and end with a
|
|
459
|
+
# letter or a number.
|
|
460
|
+
# @!attribute [rw] autonomous_database
|
|
461
|
+
# @return [::Google::Cloud::OracleDatabase::V1::AutonomousDatabase]
|
|
462
|
+
# Required. The Autonomous Database being created.
|
|
463
|
+
# @!attribute [rw] request_id
|
|
464
|
+
# @return [::String]
|
|
465
|
+
# Optional. An optional ID to identify the request. This value is used to
|
|
466
|
+
# identify duplicate requests. If you make a request with the same request ID
|
|
467
|
+
# and the original request is still in progress or completed, the server
|
|
468
|
+
# ignores the second request. This prevents clients from
|
|
469
|
+
# accidentally creating duplicate commitments.
|
|
470
|
+
#
|
|
471
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
472
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
473
|
+
class CreateAutonomousDatabaseRequest
|
|
474
|
+
include ::Google::Protobuf::MessageExts
|
|
475
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
476
|
+
end
|
|
477
|
+
|
|
478
|
+
# The request for `AutonomousDatabase.Delete`.
|
|
479
|
+
# @!attribute [rw] name
|
|
480
|
+
# @return [::String]
|
|
481
|
+
# Required. The name of the resource in the following format:
|
|
482
|
+
# projects/\\{project}/locations/\\{location}/autonomousDatabases/\\{autonomous_database}.
|
|
483
|
+
# @!attribute [rw] request_id
|
|
484
|
+
# @return [::String]
|
|
485
|
+
# Optional. An optional ID to identify the request. This value is used to
|
|
486
|
+
# identify duplicate requests. If you make a request with the same request ID
|
|
487
|
+
# and the original request is still in progress or completed, the server
|
|
488
|
+
# ignores the second request. This prevents clients from
|
|
489
|
+
# accidentally creating duplicate commitments.
|
|
490
|
+
#
|
|
491
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
492
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
493
|
+
class DeleteAutonomousDatabaseRequest
|
|
494
|
+
include ::Google::Protobuf::MessageExts
|
|
495
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
# The request for `AutonomousDatabase.Restore`.
|
|
499
|
+
# @!attribute [rw] name
|
|
500
|
+
# @return [::String]
|
|
501
|
+
# Required. The name of the Autonomous Database in the following format:
|
|
502
|
+
# projects/\\{project}/locations/\\{location}/autonomousDatabases/\\{autonomous_database}.
|
|
503
|
+
# @!attribute [rw] restore_time
|
|
504
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
505
|
+
# Required. The time and date to restore the database to.
|
|
506
|
+
class RestoreAutonomousDatabaseRequest
|
|
507
|
+
include ::Google::Protobuf::MessageExts
|
|
508
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
# The request for `AutonomousDatabase.GenerateWallet`.
|
|
512
|
+
# @!attribute [rw] name
|
|
513
|
+
# @return [::String]
|
|
514
|
+
# Required. The name of the Autonomous Database in the following format:
|
|
515
|
+
# projects/\\{project}/locations/\\{location}/autonomousDatabases/\\{autonomous_database}.
|
|
516
|
+
# @!attribute [rw] type
|
|
517
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GenerateType]
|
|
518
|
+
# Optional. The type of wallet generation for the Autonomous Database. The
|
|
519
|
+
# default value is SINGLE.
|
|
520
|
+
# @!attribute [rw] is_regional
|
|
521
|
+
# @return [::Boolean]
|
|
522
|
+
# Optional. True when requesting regional connection strings in PDB connect
|
|
523
|
+
# info, applicable to cross-region Data Guard only.
|
|
524
|
+
# @!attribute [rw] password
|
|
525
|
+
# @return [::String]
|
|
526
|
+
# Required. The password used to encrypt the keys inside the wallet. The
|
|
527
|
+
# password must be a minimum of 8 characters.
|
|
528
|
+
class GenerateAutonomousDatabaseWalletRequest
|
|
529
|
+
include ::Google::Protobuf::MessageExts
|
|
530
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
531
|
+
end
|
|
532
|
+
|
|
533
|
+
# The response for `AutonomousDatabase.GenerateWallet`.
|
|
534
|
+
# @!attribute [r] archive_content
|
|
535
|
+
# @return [::String]
|
|
536
|
+
# Output only. The base64 encoded wallet files.
|
|
537
|
+
class GenerateAutonomousDatabaseWalletResponse
|
|
538
|
+
include ::Google::Protobuf::MessageExts
|
|
539
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
540
|
+
end
|
|
541
|
+
|
|
542
|
+
# The request for `AutonomousDbVersion.List`.
|
|
543
|
+
# @!attribute [rw] parent
|
|
544
|
+
# @return [::String]
|
|
545
|
+
# Required. The parent value for the Autonomous Database in the following
|
|
546
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
547
|
+
# @!attribute [rw] page_size
|
|
548
|
+
# @return [::Integer]
|
|
549
|
+
# Optional. The maximum number of items to return.
|
|
550
|
+
# If unspecified, at most 50 Autonomous DB Versions will be returned.
|
|
551
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
552
|
+
# @!attribute [rw] page_token
|
|
553
|
+
# @return [::String]
|
|
554
|
+
# Optional. A token identifying a page of results the server should return.
|
|
555
|
+
class ListAutonomousDbVersionsRequest
|
|
556
|
+
include ::Google::Protobuf::MessageExts
|
|
557
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
558
|
+
end
|
|
559
|
+
|
|
560
|
+
# The response for `AutonomousDbVersion.List`.
|
|
561
|
+
# @!attribute [rw] autonomous_db_versions
|
|
562
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::AutonomousDbVersion>]
|
|
563
|
+
# The list of Autonomous Database versions.
|
|
564
|
+
# @!attribute [rw] next_page_token
|
|
565
|
+
# @return [::String]
|
|
566
|
+
# A token identifying a page of results the server should return.
|
|
567
|
+
class ListAutonomousDbVersionsResponse
|
|
568
|
+
include ::Google::Protobuf::MessageExts
|
|
569
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
570
|
+
end
|
|
571
|
+
|
|
572
|
+
# The request for `AutonomousDatabaseCharacterSet.List`.
|
|
573
|
+
# @!attribute [rw] parent
|
|
574
|
+
# @return [::String]
|
|
575
|
+
# Required. The parent value for the Autonomous Database in the following
|
|
576
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
577
|
+
# @!attribute [rw] page_size
|
|
578
|
+
# @return [::Integer]
|
|
579
|
+
# Optional. The maximum number of items to return.
|
|
580
|
+
# If unspecified, at most 50 Autonomous DB Character Sets will be returned.
|
|
581
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
582
|
+
# @!attribute [rw] page_token
|
|
583
|
+
# @return [::String]
|
|
584
|
+
# Optional. A token identifying a page of results the server should return.
|
|
585
|
+
# @!attribute [rw] filter
|
|
586
|
+
# @return [::String]
|
|
587
|
+
# Optional. An expression for filtering the results of the request. Only the
|
|
588
|
+
# **character_set_type** field is supported in the following format:
|
|
589
|
+
# `character_set_type="{characterSetType}"`. Accepted values include
|
|
590
|
+
# `DATABASE` and `NATIONAL`.
|
|
591
|
+
class ListAutonomousDatabaseCharacterSetsRequest
|
|
592
|
+
include ::Google::Protobuf::MessageExts
|
|
593
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
594
|
+
end
|
|
595
|
+
|
|
596
|
+
# The response for `AutonomousDatabaseCharacterSet.List`.
|
|
597
|
+
# @!attribute [rw] autonomous_database_character_sets
|
|
598
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseCharacterSet>]
|
|
599
|
+
# The list of Autonomous Database Character Sets.
|
|
600
|
+
# @!attribute [rw] next_page_token
|
|
601
|
+
# @return [::String]
|
|
602
|
+
# A token identifying a page of results the server should return.
|
|
603
|
+
class ListAutonomousDatabaseCharacterSetsResponse
|
|
604
|
+
include ::Google::Protobuf::MessageExts
|
|
605
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
606
|
+
end
|
|
607
|
+
|
|
608
|
+
# The request for `AutonomousDatabaseBackup.List`.
|
|
609
|
+
# @!attribute [rw] parent
|
|
610
|
+
# @return [::String]
|
|
611
|
+
# Required. The parent value for ListAutonomousDatabaseBackups in the
|
|
612
|
+
# following format: projects/\\{project}/locations/\\{location}.
|
|
613
|
+
# @!attribute [rw] filter
|
|
614
|
+
# @return [::String]
|
|
615
|
+
# Optional. An expression for filtering the results of the request. Only the
|
|
616
|
+
# **autonomous_database_id** field is supported in the following format:
|
|
617
|
+
# `autonomous_database_id="{autonomous_database_id}"`. The accepted values
|
|
618
|
+
# must be a valid Autonomous Database ID, limited to the naming
|
|
619
|
+
# restrictions of the ID: ^[a-z]([a-z0-9-]\\{0,61}[a-z0-9])?$).
|
|
620
|
+
# The ID must start with a letter, end with a letter or a number, and be
|
|
621
|
+
# a maximum of 63 characters.
|
|
622
|
+
# @!attribute [rw] page_size
|
|
623
|
+
# @return [::Integer]
|
|
624
|
+
# Optional. The maximum number of items to return.
|
|
625
|
+
# If unspecified, at most 50 Autonomous DB Backups will be returned.
|
|
626
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
627
|
+
# @!attribute [rw] page_token
|
|
628
|
+
# @return [::String]
|
|
629
|
+
# Optional. A token identifying a page of results the server should return.
|
|
630
|
+
class ListAutonomousDatabaseBackupsRequest
|
|
631
|
+
include ::Google::Protobuf::MessageExts
|
|
632
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
633
|
+
end
|
|
634
|
+
|
|
635
|
+
# The response for `AutonomousDatabaseBackup.List`.
|
|
636
|
+
# @!attribute [rw] autonomous_database_backups
|
|
637
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseBackup>]
|
|
638
|
+
# The list of Autonomous Database Backups.
|
|
639
|
+
# @!attribute [rw] next_page_token
|
|
640
|
+
# @return [::String]
|
|
641
|
+
# A token identifying a page of results the server should return.
|
|
642
|
+
class ListAutonomousDatabaseBackupsResponse
|
|
643
|
+
include ::Google::Protobuf::MessageExts
|
|
644
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
645
|
+
end
|
|
646
|
+
end
|
|
647
|
+
end
|
|
648
|
+
end
|
|
649
|
+
end
|