aws-sdk-odb 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-odb/client.rb +2969 -0
- data/lib/aws-sdk-odb/client_api.rb +1909 -0
- data/lib/aws-sdk-odb/customizations.rb +0 -0
- data/lib/aws-sdk-odb/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-odb/endpoint_provider.rb +50 -0
- data/lib/aws-sdk-odb/endpoints.rb +20 -0
- data/lib/aws-sdk-odb/errors.rb +209 -0
- data/lib/aws-sdk-odb/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-odb/resource.rb +26 -0
- data/lib/aws-sdk-odb/types.rb +5157 -0
- data/lib/aws-sdk-odb/waiters.rb +15 -0
- data/lib/aws-sdk-odb.rb +62 -0
- data/sig/client.rbs +677 -0
- data/sig/errors.rbs +48 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +1223 -0
- data/sig/waiters.rbs +13 -0
- metadata +96 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,1223 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Odb
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AcceptMarketplaceRegistrationInput
|
12
|
+
attr_accessor marketplace_registration_token: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AcceptMarketplaceRegistrationOutput < Aws::EmptyStructure
|
17
|
+
end
|
18
|
+
|
19
|
+
class AccessDeniedException
|
20
|
+
attr_accessor message: ::String
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class AutonomousVirtualMachineSummary
|
25
|
+
attr_accessor autonomous_virtual_machine_id: ::String
|
26
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
27
|
+
attr_accessor status_reason: ::String
|
28
|
+
attr_accessor vm_name: ::String
|
29
|
+
attr_accessor db_server_id: ::String
|
30
|
+
attr_accessor db_server_display_name: ::String
|
31
|
+
attr_accessor cpu_core_count: ::Integer
|
32
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
33
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
34
|
+
attr_accessor client_ip_address: ::String
|
35
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
36
|
+
attr_accessor ocid: ::String
|
37
|
+
attr_accessor oci_resource_anchor_name: ::String
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class CloudAutonomousVmCluster
|
42
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
43
|
+
attr_accessor cloud_autonomous_vm_cluster_arn: ::String
|
44
|
+
attr_accessor odb_network_id: ::String
|
45
|
+
attr_accessor oci_resource_anchor_name: ::String
|
46
|
+
attr_accessor percent_progress: ::Float
|
47
|
+
attr_accessor display_name: ::String
|
48
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
49
|
+
attr_accessor status_reason: ::String
|
50
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
51
|
+
attr_accessor autonomous_data_storage_percentage: ::Float
|
52
|
+
attr_accessor autonomous_data_storage_size_in_t_bs: ::Float
|
53
|
+
attr_accessor available_autonomous_data_storage_size_in_t_bs: ::Float
|
54
|
+
attr_accessor available_container_databases: ::Integer
|
55
|
+
attr_accessor available_cpus: ::Float
|
56
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
57
|
+
attr_accessor cpu_core_count: ::Integer
|
58
|
+
attr_accessor cpu_core_count_per_node: ::Integer
|
59
|
+
attr_accessor cpu_percentage: ::Float
|
60
|
+
attr_accessor data_storage_size_in_g_bs: ::Float
|
61
|
+
attr_accessor data_storage_size_in_t_bs: ::Float
|
62
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
63
|
+
attr_accessor db_servers: ::Array[::String]
|
64
|
+
attr_accessor description: ::String
|
65
|
+
attr_accessor domain: ::String
|
66
|
+
attr_accessor exadata_storage_in_t_bs_lowest_scaled_value: ::Float
|
67
|
+
attr_accessor hostname: ::String
|
68
|
+
attr_accessor ocid: ::String
|
69
|
+
attr_accessor oci_url: ::String
|
70
|
+
attr_accessor is_mtls_enabled_vm_cluster: bool
|
71
|
+
attr_accessor license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED")
|
72
|
+
attr_accessor maintenance_window: Types::MaintenanceWindow
|
73
|
+
attr_accessor max_acds_lowest_scaled_value: ::Integer
|
74
|
+
attr_accessor memory_per_oracle_compute_unit_in_g_bs: ::Integer
|
75
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
76
|
+
attr_accessor node_count: ::Integer
|
77
|
+
attr_accessor non_provisionable_autonomous_container_databases: ::Integer
|
78
|
+
attr_accessor provisionable_autonomous_container_databases: ::Integer
|
79
|
+
attr_accessor provisioned_autonomous_container_databases: ::Integer
|
80
|
+
attr_accessor provisioned_cpus: ::Float
|
81
|
+
attr_accessor reclaimable_cpus: ::Float
|
82
|
+
attr_accessor reserved_cpus: ::Float
|
83
|
+
attr_accessor scan_listener_port_non_tls: ::Integer
|
84
|
+
attr_accessor scan_listener_port_tls: ::Integer
|
85
|
+
attr_accessor shape: ::String
|
86
|
+
attr_accessor created_at: ::Time
|
87
|
+
attr_accessor time_database_ssl_certificate_expires: ::Time
|
88
|
+
attr_accessor time_ords_certificate_expires: ::Time
|
89
|
+
attr_accessor time_zone: ::String
|
90
|
+
attr_accessor total_container_databases: ::Integer
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class CloudAutonomousVmClusterResourceDetails
|
95
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
96
|
+
attr_accessor unallocated_adb_storage_in_t_bs: ::Float
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class CloudAutonomousVmClusterSummary
|
101
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
102
|
+
attr_accessor cloud_autonomous_vm_cluster_arn: ::String
|
103
|
+
attr_accessor odb_network_id: ::String
|
104
|
+
attr_accessor oci_resource_anchor_name: ::String
|
105
|
+
attr_accessor percent_progress: ::Float
|
106
|
+
attr_accessor display_name: ::String
|
107
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
108
|
+
attr_accessor status_reason: ::String
|
109
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
110
|
+
attr_accessor autonomous_data_storage_percentage: ::Float
|
111
|
+
attr_accessor autonomous_data_storage_size_in_t_bs: ::Float
|
112
|
+
attr_accessor available_autonomous_data_storage_size_in_t_bs: ::Float
|
113
|
+
attr_accessor available_container_databases: ::Integer
|
114
|
+
attr_accessor available_cpus: ::Float
|
115
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
116
|
+
attr_accessor cpu_core_count: ::Integer
|
117
|
+
attr_accessor cpu_core_count_per_node: ::Integer
|
118
|
+
attr_accessor cpu_percentage: ::Float
|
119
|
+
attr_accessor data_storage_size_in_g_bs: ::Float
|
120
|
+
attr_accessor data_storage_size_in_t_bs: ::Float
|
121
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
122
|
+
attr_accessor db_servers: ::Array[::String]
|
123
|
+
attr_accessor description: ::String
|
124
|
+
attr_accessor domain: ::String
|
125
|
+
attr_accessor exadata_storage_in_t_bs_lowest_scaled_value: ::Float
|
126
|
+
attr_accessor hostname: ::String
|
127
|
+
attr_accessor ocid: ::String
|
128
|
+
attr_accessor oci_url: ::String
|
129
|
+
attr_accessor is_mtls_enabled_vm_cluster: bool
|
130
|
+
attr_accessor license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED")
|
131
|
+
attr_accessor maintenance_window: Types::MaintenanceWindow
|
132
|
+
attr_accessor max_acds_lowest_scaled_value: ::Integer
|
133
|
+
attr_accessor memory_per_oracle_compute_unit_in_g_bs: ::Integer
|
134
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
135
|
+
attr_accessor node_count: ::Integer
|
136
|
+
attr_accessor non_provisionable_autonomous_container_databases: ::Integer
|
137
|
+
attr_accessor provisionable_autonomous_container_databases: ::Integer
|
138
|
+
attr_accessor provisioned_autonomous_container_databases: ::Integer
|
139
|
+
attr_accessor provisioned_cpus: ::Float
|
140
|
+
attr_accessor reclaimable_cpus: ::Float
|
141
|
+
attr_accessor reserved_cpus: ::Float
|
142
|
+
attr_accessor scan_listener_port_non_tls: ::Integer
|
143
|
+
attr_accessor scan_listener_port_tls: ::Integer
|
144
|
+
attr_accessor shape: ::String
|
145
|
+
attr_accessor created_at: ::Time
|
146
|
+
attr_accessor time_database_ssl_certificate_expires: ::Time
|
147
|
+
attr_accessor time_ords_certificate_expires: ::Time
|
148
|
+
attr_accessor time_zone: ::String
|
149
|
+
attr_accessor total_container_databases: ::Integer
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class CloudExadataInfrastructure
|
154
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
155
|
+
attr_accessor display_name: ::String
|
156
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
157
|
+
attr_accessor status_reason: ::String
|
158
|
+
attr_accessor cloud_exadata_infrastructure_arn: ::String
|
159
|
+
attr_accessor activated_storage_count: ::Integer
|
160
|
+
attr_accessor additional_storage_count: ::Integer
|
161
|
+
attr_accessor available_storage_size_in_g_bs: ::Integer
|
162
|
+
attr_accessor availability_zone: ::String
|
163
|
+
attr_accessor availability_zone_id: ::String
|
164
|
+
attr_accessor compute_count: ::Integer
|
165
|
+
attr_accessor cpu_count: ::Integer
|
166
|
+
attr_accessor customer_contacts_to_send_to_oci: ::Array[Types::CustomerContact]
|
167
|
+
attr_accessor data_storage_size_in_t_bs: ::Float
|
168
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
169
|
+
attr_accessor db_server_version: ::String
|
170
|
+
attr_accessor last_maintenance_run_id: ::String
|
171
|
+
attr_accessor maintenance_window: Types::MaintenanceWindow
|
172
|
+
attr_accessor max_cpu_count: ::Integer
|
173
|
+
attr_accessor max_data_storage_in_t_bs: ::Float
|
174
|
+
attr_accessor max_db_node_storage_size_in_g_bs: ::Integer
|
175
|
+
attr_accessor max_memory_in_g_bs: ::Integer
|
176
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
177
|
+
attr_accessor monthly_db_server_version: ::String
|
178
|
+
attr_accessor monthly_storage_server_version: ::String
|
179
|
+
attr_accessor next_maintenance_run_id: ::String
|
180
|
+
attr_accessor oci_resource_anchor_name: ::String
|
181
|
+
attr_accessor oci_url: ::String
|
182
|
+
attr_accessor ocid: ::String
|
183
|
+
attr_accessor shape: ::String
|
184
|
+
attr_accessor storage_count: ::Integer
|
185
|
+
attr_accessor storage_server_version: ::String
|
186
|
+
attr_accessor created_at: ::Time
|
187
|
+
attr_accessor total_storage_size_in_g_bs: ::Integer
|
188
|
+
attr_accessor percent_progress: ::Float
|
189
|
+
attr_accessor database_server_type: ::String
|
190
|
+
attr_accessor storage_server_type: ::String
|
191
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class CloudExadataInfrastructureSummary
|
196
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
197
|
+
attr_accessor display_name: ::String
|
198
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
199
|
+
attr_accessor status_reason: ::String
|
200
|
+
attr_accessor cloud_exadata_infrastructure_arn: ::String
|
201
|
+
attr_accessor activated_storage_count: ::Integer
|
202
|
+
attr_accessor additional_storage_count: ::Integer
|
203
|
+
attr_accessor available_storage_size_in_g_bs: ::Integer
|
204
|
+
attr_accessor availability_zone: ::String
|
205
|
+
attr_accessor availability_zone_id: ::String
|
206
|
+
attr_accessor compute_count: ::Integer
|
207
|
+
attr_accessor cpu_count: ::Integer
|
208
|
+
attr_accessor customer_contacts_to_send_to_oci: ::Array[Types::CustomerContact]
|
209
|
+
attr_accessor data_storage_size_in_t_bs: ::Float
|
210
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
211
|
+
attr_accessor db_server_version: ::String
|
212
|
+
attr_accessor last_maintenance_run_id: ::String
|
213
|
+
attr_accessor maintenance_window: Types::MaintenanceWindow
|
214
|
+
attr_accessor max_cpu_count: ::Integer
|
215
|
+
attr_accessor max_data_storage_in_t_bs: ::Float
|
216
|
+
attr_accessor max_db_node_storage_size_in_g_bs: ::Integer
|
217
|
+
attr_accessor max_memory_in_g_bs: ::Integer
|
218
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
219
|
+
attr_accessor monthly_db_server_version: ::String
|
220
|
+
attr_accessor monthly_storage_server_version: ::String
|
221
|
+
attr_accessor next_maintenance_run_id: ::String
|
222
|
+
attr_accessor oci_resource_anchor_name: ::String
|
223
|
+
attr_accessor oci_url: ::String
|
224
|
+
attr_accessor ocid: ::String
|
225
|
+
attr_accessor shape: ::String
|
226
|
+
attr_accessor storage_count: ::Integer
|
227
|
+
attr_accessor storage_server_version: ::String
|
228
|
+
attr_accessor created_at: ::Time
|
229
|
+
attr_accessor total_storage_size_in_g_bs: ::Integer
|
230
|
+
attr_accessor percent_progress: ::Float
|
231
|
+
attr_accessor database_server_type: ::String
|
232
|
+
attr_accessor storage_server_type: ::String
|
233
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class CloudExadataInfrastructureUnallocatedResources
|
238
|
+
attr_accessor cloud_autonomous_vm_clusters: ::Array[Types::CloudAutonomousVmClusterResourceDetails]
|
239
|
+
attr_accessor cloud_exadata_infrastructure_display_name: ::String
|
240
|
+
attr_accessor exadata_storage_in_t_bs: ::Float
|
241
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
242
|
+
attr_accessor local_storage_in_g_bs: ::Integer
|
243
|
+
attr_accessor memory_in_g_bs: ::Integer
|
244
|
+
attr_accessor ocpus: ::Integer
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class CloudVmCluster
|
249
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
250
|
+
attr_accessor display_name: ::String
|
251
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
252
|
+
attr_accessor status_reason: ::String
|
253
|
+
attr_accessor cloud_vm_cluster_arn: ::String
|
254
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
255
|
+
attr_accessor cluster_name: ::String
|
256
|
+
attr_accessor cpu_core_count: ::Integer
|
257
|
+
attr_accessor data_collection_options: Types::DataCollectionOptions
|
258
|
+
attr_accessor data_storage_size_in_t_bs: ::Float
|
259
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
260
|
+
attr_accessor db_servers: ::Array[::String]
|
261
|
+
attr_accessor disk_redundancy: ("HIGH" | "NORMAL")
|
262
|
+
attr_accessor gi_version: ::String
|
263
|
+
attr_accessor hostname: ::String
|
264
|
+
attr_accessor iorm_config_cache: Types::ExadataIormConfig
|
265
|
+
attr_accessor is_local_backup_enabled: bool
|
266
|
+
attr_accessor is_sparse_diskgroup_enabled: bool
|
267
|
+
attr_accessor last_update_history_entry_id: ::String
|
268
|
+
attr_accessor license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED")
|
269
|
+
attr_accessor listener_port: ::Integer
|
270
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
271
|
+
attr_accessor node_count: ::Integer
|
272
|
+
attr_accessor ocid: ::String
|
273
|
+
attr_accessor oci_resource_anchor_name: ::String
|
274
|
+
attr_accessor oci_url: ::String
|
275
|
+
attr_accessor domain: ::String
|
276
|
+
attr_accessor scan_dns_name: ::String
|
277
|
+
attr_accessor scan_dns_record_id: ::String
|
278
|
+
attr_accessor scan_ip_ids: ::Array[::String]
|
279
|
+
attr_accessor shape: ::String
|
280
|
+
attr_accessor ssh_public_keys: ::Array[::String]
|
281
|
+
attr_accessor storage_size_in_g_bs: ::Integer
|
282
|
+
attr_accessor system_version: ::String
|
283
|
+
attr_accessor created_at: ::Time
|
284
|
+
attr_accessor time_zone: ::String
|
285
|
+
attr_accessor vip_ids: ::Array[::String]
|
286
|
+
attr_accessor odb_network_id: ::String
|
287
|
+
attr_accessor percent_progress: ::Float
|
288
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class CloudVmClusterSummary
|
293
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
294
|
+
attr_accessor display_name: ::String
|
295
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
296
|
+
attr_accessor status_reason: ::String
|
297
|
+
attr_accessor cloud_vm_cluster_arn: ::String
|
298
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
299
|
+
attr_accessor cluster_name: ::String
|
300
|
+
attr_accessor cpu_core_count: ::Integer
|
301
|
+
attr_accessor data_collection_options: Types::DataCollectionOptions
|
302
|
+
attr_accessor data_storage_size_in_t_bs: ::Float
|
303
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
304
|
+
attr_accessor db_servers: ::Array[::String]
|
305
|
+
attr_accessor disk_redundancy: ("HIGH" | "NORMAL")
|
306
|
+
attr_accessor gi_version: ::String
|
307
|
+
attr_accessor hostname: ::String
|
308
|
+
attr_accessor iorm_config_cache: Types::ExadataIormConfig
|
309
|
+
attr_accessor is_local_backup_enabled: bool
|
310
|
+
attr_accessor is_sparse_diskgroup_enabled: bool
|
311
|
+
attr_accessor last_update_history_entry_id: ::String
|
312
|
+
attr_accessor license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED")
|
313
|
+
attr_accessor listener_port: ::Integer
|
314
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
315
|
+
attr_accessor node_count: ::Integer
|
316
|
+
attr_accessor ocid: ::String
|
317
|
+
attr_accessor oci_resource_anchor_name: ::String
|
318
|
+
attr_accessor oci_url: ::String
|
319
|
+
attr_accessor domain: ::String
|
320
|
+
attr_accessor scan_dns_name: ::String
|
321
|
+
attr_accessor scan_dns_record_id: ::String
|
322
|
+
attr_accessor scan_ip_ids: ::Array[::String]
|
323
|
+
attr_accessor shape: ::String
|
324
|
+
attr_accessor ssh_public_keys: ::Array[::String]
|
325
|
+
attr_accessor storage_size_in_g_bs: ::Integer
|
326
|
+
attr_accessor system_version: ::String
|
327
|
+
attr_accessor created_at: ::Time
|
328
|
+
attr_accessor time_zone: ::String
|
329
|
+
attr_accessor vip_ids: ::Array[::String]
|
330
|
+
attr_accessor odb_network_id: ::String
|
331
|
+
attr_accessor percent_progress: ::Float
|
332
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class ConflictException
|
337
|
+
attr_accessor message: ::String
|
338
|
+
attr_accessor resource_id: ::String
|
339
|
+
attr_accessor resource_type: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class CreateCloudAutonomousVmClusterInput
|
344
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
345
|
+
attr_accessor odb_network_id: ::String
|
346
|
+
attr_accessor display_name: ::String
|
347
|
+
attr_accessor client_token: ::String
|
348
|
+
attr_accessor autonomous_data_storage_size_in_t_bs: ::Float
|
349
|
+
attr_accessor cpu_core_count_per_node: ::Integer
|
350
|
+
attr_accessor db_servers: ::Array[::String]
|
351
|
+
attr_accessor description: ::String
|
352
|
+
attr_accessor is_mtls_enabled_vm_cluster: bool
|
353
|
+
attr_accessor license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED")
|
354
|
+
attr_accessor maintenance_window: Types::MaintenanceWindow
|
355
|
+
attr_accessor memory_per_oracle_compute_unit_in_g_bs: ::Integer
|
356
|
+
attr_accessor scan_listener_port_non_tls: ::Integer
|
357
|
+
attr_accessor scan_listener_port_tls: ::Integer
|
358
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
359
|
+
attr_accessor time_zone: ::String
|
360
|
+
attr_accessor total_container_databases: ::Integer
|
361
|
+
SENSITIVE: []
|
362
|
+
end
|
363
|
+
|
364
|
+
class CreateCloudAutonomousVmClusterOutput
|
365
|
+
attr_accessor display_name: ::String
|
366
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
367
|
+
attr_accessor status_reason: ::String
|
368
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class CreateCloudExadataInfrastructureInput
|
373
|
+
attr_accessor display_name: ::String
|
374
|
+
attr_accessor shape: ::String
|
375
|
+
attr_accessor availability_zone: ::String
|
376
|
+
attr_accessor availability_zone_id: ::String
|
377
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
378
|
+
attr_accessor compute_count: ::Integer
|
379
|
+
attr_accessor customer_contacts_to_send_to_oci: ::Array[Types::CustomerContact]
|
380
|
+
attr_accessor maintenance_window: Types::MaintenanceWindow
|
381
|
+
attr_accessor storage_count: ::Integer
|
382
|
+
attr_accessor client_token: ::String
|
383
|
+
attr_accessor database_server_type: ::String
|
384
|
+
attr_accessor storage_server_type: ::String
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class CreateCloudExadataInfrastructureOutput
|
389
|
+
attr_accessor display_name: ::String
|
390
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
391
|
+
attr_accessor status_reason: ::String
|
392
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class CreateCloudVmClusterInput
|
397
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
398
|
+
attr_accessor cpu_core_count: ::Integer
|
399
|
+
attr_accessor display_name: ::String
|
400
|
+
attr_accessor gi_version: ::String
|
401
|
+
attr_accessor hostname: ::String
|
402
|
+
attr_accessor ssh_public_keys: ::Array[::String]
|
403
|
+
attr_accessor odb_network_id: ::String
|
404
|
+
attr_accessor cluster_name: ::String
|
405
|
+
attr_accessor data_collection_options: Types::DataCollectionOptions
|
406
|
+
attr_accessor data_storage_size_in_t_bs: ::Float
|
407
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
408
|
+
attr_accessor db_servers: ::Array[::String]
|
409
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
410
|
+
attr_accessor is_local_backup_enabled: bool
|
411
|
+
attr_accessor is_sparse_diskgroup_enabled: bool
|
412
|
+
attr_accessor license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED")
|
413
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
414
|
+
attr_accessor system_version: ::String
|
415
|
+
attr_accessor time_zone: ::String
|
416
|
+
attr_accessor client_token: ::String
|
417
|
+
attr_accessor scan_listener_port_tcp: ::Integer
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class CreateCloudVmClusterOutput
|
422
|
+
attr_accessor display_name: ::String
|
423
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
424
|
+
attr_accessor status_reason: ::String
|
425
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class CreateOdbNetworkInput
|
430
|
+
attr_accessor display_name: ::String
|
431
|
+
attr_accessor availability_zone: ::String
|
432
|
+
attr_accessor availability_zone_id: ::String
|
433
|
+
attr_accessor client_subnet_cidr: ::String
|
434
|
+
attr_accessor backup_subnet_cidr: ::String
|
435
|
+
attr_accessor custom_domain_name: ::String
|
436
|
+
attr_accessor default_dns_prefix: ::String
|
437
|
+
attr_accessor client_token: ::String
|
438
|
+
attr_accessor s3_access: ("ENABLED" | "DISABLED")
|
439
|
+
attr_accessor zero_etl_access: ("ENABLED" | "DISABLED")
|
440
|
+
attr_accessor s3_policy_document: ::String
|
441
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class CreateOdbNetworkOutput
|
446
|
+
attr_accessor display_name: ::String
|
447
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
448
|
+
attr_accessor status_reason: ::String
|
449
|
+
attr_accessor odb_network_id: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class CreateOdbPeeringConnectionInput
|
454
|
+
attr_accessor odb_network_id: ::String
|
455
|
+
attr_accessor peer_network_id: ::String
|
456
|
+
attr_accessor display_name: ::String
|
457
|
+
attr_accessor client_token: ::String
|
458
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class CreateOdbPeeringConnectionOutput
|
463
|
+
attr_accessor display_name: ::String
|
464
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
465
|
+
attr_accessor status_reason: ::String
|
466
|
+
attr_accessor odb_peering_connection_id: ::String
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class CustomerContact
|
471
|
+
attr_accessor email: ::String
|
472
|
+
SENSITIVE: [:email]
|
473
|
+
end
|
474
|
+
|
475
|
+
class DataCollectionOptions
|
476
|
+
attr_accessor is_diagnostics_events_enabled: bool
|
477
|
+
attr_accessor is_health_monitoring_enabled: bool
|
478
|
+
attr_accessor is_incident_logs_enabled: bool
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class DayOfWeek
|
483
|
+
attr_accessor name: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")
|
484
|
+
SENSITIVE: []
|
485
|
+
end
|
486
|
+
|
487
|
+
class DbIormConfig
|
488
|
+
attr_accessor db_name: ::String
|
489
|
+
attr_accessor flash_cache_limit: ::String
|
490
|
+
attr_accessor share: ::Integer
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class DbNode
|
495
|
+
attr_accessor db_node_id: ::String
|
496
|
+
attr_accessor db_node_arn: ::String
|
497
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
|
498
|
+
attr_accessor status_reason: ::String
|
499
|
+
attr_accessor additional_details: ::String
|
500
|
+
attr_accessor backup_ip_id: ::String
|
501
|
+
attr_accessor backup_vnic_2_id: ::String
|
502
|
+
attr_accessor backup_vnic_id: ::String
|
503
|
+
attr_accessor cpu_core_count: ::Integer
|
504
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
505
|
+
attr_accessor db_server_id: ::String
|
506
|
+
attr_accessor db_system_id: ::String
|
507
|
+
attr_accessor fault_domain: ::String
|
508
|
+
attr_accessor host_ip_id: ::String
|
509
|
+
attr_accessor hostname: ::String
|
510
|
+
attr_accessor ocid: ::String
|
511
|
+
attr_accessor oci_resource_anchor_name: ::String
|
512
|
+
attr_accessor maintenance_type: ("VMDB_REBOOT_MIGRATION")
|
513
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
514
|
+
attr_accessor software_storage_size_in_gb: ::Integer
|
515
|
+
attr_accessor created_at: ::Time
|
516
|
+
attr_accessor time_maintenance_window_end: ::String
|
517
|
+
attr_accessor time_maintenance_window_start: ::String
|
518
|
+
attr_accessor total_cpu_core_count: ::Integer
|
519
|
+
attr_accessor vnic2_id: ::String
|
520
|
+
attr_accessor vnic_id: ::String
|
521
|
+
attr_accessor private_ip_address: ::String
|
522
|
+
attr_accessor floating_ip_address: ::String
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class DbNodeSummary
|
527
|
+
attr_accessor db_node_id: ::String
|
528
|
+
attr_accessor db_node_arn: ::String
|
529
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
|
530
|
+
attr_accessor status_reason: ::String
|
531
|
+
attr_accessor additional_details: ::String
|
532
|
+
attr_accessor backup_ip_id: ::String
|
533
|
+
attr_accessor backup_vnic_2_id: ::String
|
534
|
+
attr_accessor backup_vnic_id: ::String
|
535
|
+
attr_accessor cpu_core_count: ::Integer
|
536
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
537
|
+
attr_accessor db_server_id: ::String
|
538
|
+
attr_accessor db_system_id: ::String
|
539
|
+
attr_accessor fault_domain: ::String
|
540
|
+
attr_accessor host_ip_id: ::String
|
541
|
+
attr_accessor hostname: ::String
|
542
|
+
attr_accessor ocid: ::String
|
543
|
+
attr_accessor oci_resource_anchor_name: ::String
|
544
|
+
attr_accessor maintenance_type: ("VMDB_REBOOT_MIGRATION")
|
545
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
546
|
+
attr_accessor software_storage_size_in_gb: ::Integer
|
547
|
+
attr_accessor created_at: ::Time
|
548
|
+
attr_accessor time_maintenance_window_end: ::String
|
549
|
+
attr_accessor time_maintenance_window_start: ::String
|
550
|
+
attr_accessor total_cpu_core_count: ::Integer
|
551
|
+
attr_accessor vnic2_id: ::String
|
552
|
+
attr_accessor vnic_id: ::String
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class DbServer
|
557
|
+
attr_accessor db_server_id: ::String
|
558
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
559
|
+
attr_accessor status_reason: ::String
|
560
|
+
attr_accessor cpu_core_count: ::Integer
|
561
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
562
|
+
attr_accessor db_server_patching_details: Types::DbServerPatchingDetails
|
563
|
+
attr_accessor display_name: ::String
|
564
|
+
attr_accessor exadata_infrastructure_id: ::String
|
565
|
+
attr_accessor ocid: ::String
|
566
|
+
attr_accessor oci_resource_anchor_name: ::String
|
567
|
+
attr_accessor max_cpu_count: ::Integer
|
568
|
+
attr_accessor max_db_node_storage_in_g_bs: ::Integer
|
569
|
+
attr_accessor max_memory_in_g_bs: ::Integer
|
570
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
571
|
+
attr_accessor shape: ::String
|
572
|
+
attr_accessor created_at: ::Time
|
573
|
+
attr_accessor vm_cluster_ids: ::Array[::String]
|
574
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
575
|
+
attr_accessor autonomous_vm_cluster_ids: ::Array[::String]
|
576
|
+
attr_accessor autonomous_virtual_machine_ids: ::Array[::String]
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class DbServerPatchingDetails
|
581
|
+
attr_accessor estimated_patch_duration: ::Integer
|
582
|
+
attr_accessor patching_status: ("COMPLETE" | "FAILED" | "MAINTENANCE_IN_PROGRESS" | "SCHEDULED")
|
583
|
+
attr_accessor time_patching_ended: ::String
|
584
|
+
attr_accessor time_patching_started: ::String
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class DbServerSummary
|
589
|
+
attr_accessor db_server_id: ::String
|
590
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
591
|
+
attr_accessor status_reason: ::String
|
592
|
+
attr_accessor cpu_core_count: ::Integer
|
593
|
+
attr_accessor db_node_storage_size_in_g_bs: ::Integer
|
594
|
+
attr_accessor db_server_patching_details: Types::DbServerPatchingDetails
|
595
|
+
attr_accessor display_name: ::String
|
596
|
+
attr_accessor exadata_infrastructure_id: ::String
|
597
|
+
attr_accessor ocid: ::String
|
598
|
+
attr_accessor oci_resource_anchor_name: ::String
|
599
|
+
attr_accessor max_cpu_count: ::Integer
|
600
|
+
attr_accessor max_db_node_storage_in_g_bs: ::Integer
|
601
|
+
attr_accessor max_memory_in_g_bs: ::Integer
|
602
|
+
attr_accessor memory_size_in_g_bs: ::Integer
|
603
|
+
attr_accessor shape: ::String
|
604
|
+
attr_accessor created_at: ::Time
|
605
|
+
attr_accessor vm_cluster_ids: ::Array[::String]
|
606
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
607
|
+
attr_accessor autonomous_vm_cluster_ids: ::Array[::String]
|
608
|
+
attr_accessor autonomous_virtual_machine_ids: ::Array[::String]
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class DbSystemShapeSummary
|
613
|
+
attr_accessor available_core_count: ::Integer
|
614
|
+
attr_accessor available_core_count_per_node: ::Integer
|
615
|
+
attr_accessor available_data_storage_in_t_bs: ::Integer
|
616
|
+
attr_accessor available_data_storage_per_server_in_t_bs: ::Integer
|
617
|
+
attr_accessor available_db_node_per_node_in_g_bs: ::Integer
|
618
|
+
attr_accessor available_db_node_storage_in_g_bs: ::Integer
|
619
|
+
attr_accessor available_memory_in_g_bs: ::Integer
|
620
|
+
attr_accessor available_memory_per_node_in_g_bs: ::Integer
|
621
|
+
attr_accessor core_count_increment: ::Integer
|
622
|
+
attr_accessor max_storage_count: ::Integer
|
623
|
+
attr_accessor maximum_node_count: ::Integer
|
624
|
+
attr_accessor min_core_count_per_node: ::Integer
|
625
|
+
attr_accessor min_data_storage_in_t_bs: ::Integer
|
626
|
+
attr_accessor min_db_node_storage_per_node_in_g_bs: ::Integer
|
627
|
+
attr_accessor min_memory_per_node_in_g_bs: ::Integer
|
628
|
+
attr_accessor min_storage_count: ::Integer
|
629
|
+
attr_accessor minimum_core_count: ::Integer
|
630
|
+
attr_accessor minimum_node_count: ::Integer
|
631
|
+
attr_accessor runtime_minimum_core_count: ::Integer
|
632
|
+
attr_accessor shape_family: ::String
|
633
|
+
attr_accessor shape_type: ("AMD" | "INTEL" | "INTEL_FLEX_X9" | "AMPERE_FLEX_A1")
|
634
|
+
attr_accessor name: ::String
|
635
|
+
attr_accessor compute_model: ("ECPU" | "OCPU")
|
636
|
+
attr_accessor are_server_types_supported: bool
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class DeleteCloudAutonomousVmClusterInput
|
641
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class DeleteCloudAutonomousVmClusterOutput < Aws::EmptyStructure
|
646
|
+
end
|
647
|
+
|
648
|
+
class DeleteCloudExadataInfrastructureInput
|
649
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class DeleteCloudExadataInfrastructureOutput < Aws::EmptyStructure
|
654
|
+
end
|
655
|
+
|
656
|
+
class DeleteCloudVmClusterInput
|
657
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class DeleteCloudVmClusterOutput < Aws::EmptyStructure
|
662
|
+
end
|
663
|
+
|
664
|
+
class DeleteOdbNetworkInput
|
665
|
+
attr_accessor odb_network_id: ::String
|
666
|
+
attr_accessor delete_associated_resources: bool
|
667
|
+
SENSITIVE: []
|
668
|
+
end
|
669
|
+
|
670
|
+
class DeleteOdbNetworkOutput < Aws::EmptyStructure
|
671
|
+
end
|
672
|
+
|
673
|
+
class DeleteOdbPeeringConnectionInput
|
674
|
+
attr_accessor odb_peering_connection_id: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class DeleteOdbPeeringConnectionOutput < Aws::EmptyStructure
|
679
|
+
end
|
680
|
+
|
681
|
+
class ExadataIormConfig
|
682
|
+
attr_accessor db_plans: ::Array[Types::DbIormConfig]
|
683
|
+
attr_accessor lifecycle_details: ::String
|
684
|
+
attr_accessor lifecycle_state: ("BOOTSTRAPPING" | "DISABLED" | "ENABLED" | "FAILED" | "UPDATING")
|
685
|
+
attr_accessor objective: ("AUTO" | "BALANCED" | "BASIC" | "HIGH_THROUGHPUT" | "LOW_LATENCY")
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
689
|
+
class GetCloudAutonomousVmClusterInput
|
690
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
691
|
+
SENSITIVE: []
|
692
|
+
end
|
693
|
+
|
694
|
+
class GetCloudAutonomousVmClusterOutput
|
695
|
+
attr_accessor cloud_autonomous_vm_cluster: Types::CloudAutonomousVmCluster
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class GetCloudExadataInfrastructureInput
|
700
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class GetCloudExadataInfrastructureOutput
|
705
|
+
attr_accessor cloud_exadata_infrastructure: Types::CloudExadataInfrastructure
|
706
|
+
SENSITIVE: []
|
707
|
+
end
|
708
|
+
|
709
|
+
class GetCloudExadataInfrastructureUnallocatedResourcesInput
|
710
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
711
|
+
attr_accessor db_servers: ::Array[::String]
|
712
|
+
SENSITIVE: []
|
713
|
+
end
|
714
|
+
|
715
|
+
class GetCloudExadataInfrastructureUnallocatedResourcesOutput
|
716
|
+
attr_accessor cloud_exadata_infrastructure_unallocated_resources: Types::CloudExadataInfrastructureUnallocatedResources
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class GetCloudVmClusterInput
|
721
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class GetCloudVmClusterOutput
|
726
|
+
attr_accessor cloud_vm_cluster: Types::CloudVmCluster
|
727
|
+
SENSITIVE: []
|
728
|
+
end
|
729
|
+
|
730
|
+
class GetDbNodeInput
|
731
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
732
|
+
attr_accessor db_node_id: ::String
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class GetDbNodeOutput
|
737
|
+
attr_accessor db_node: Types::DbNode
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class GetDbServerInput
|
742
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
743
|
+
attr_accessor db_server_id: ::String
|
744
|
+
SENSITIVE: []
|
745
|
+
end
|
746
|
+
|
747
|
+
class GetDbServerOutput
|
748
|
+
attr_accessor db_server: Types::DbServer
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
752
|
+
class GetOciOnboardingStatusInput < Aws::EmptyStructure
|
753
|
+
end
|
754
|
+
|
755
|
+
class GetOciOnboardingStatusOutput
|
756
|
+
attr_accessor status: ("NOT_STARTED" | "PENDING_LINK_GENERATION" | "PENDING_CUSTOMER_ACTION" | "PENDING_INITIALIZATION" | "ACTIVATING" | "ACTIVE_IN_HOME_REGION" | "ACTIVE" | "ACTIVE_LIMITED" | "FAILED" | "PUBLIC_OFFER_UNSUPPORTED" | "SUSPENDED" | "CANCELED")
|
757
|
+
attr_accessor existing_tenancy_activation_link: ::String
|
758
|
+
attr_accessor new_tenancy_activation_link: ::String
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class GetOdbNetworkInput
|
763
|
+
attr_accessor odb_network_id: ::String
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class GetOdbNetworkOutput
|
768
|
+
attr_accessor odb_network: Types::OdbNetwork
|
769
|
+
SENSITIVE: []
|
770
|
+
end
|
771
|
+
|
772
|
+
class GetOdbPeeringConnectionInput
|
773
|
+
attr_accessor odb_peering_connection_id: ::String
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class GetOdbPeeringConnectionOutput
|
778
|
+
attr_accessor odb_peering_connection: Types::OdbPeeringConnection
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
782
|
+
class GiVersionSummary
|
783
|
+
attr_accessor version: ::String
|
784
|
+
SENSITIVE: []
|
785
|
+
end
|
786
|
+
|
787
|
+
class InitializeServiceInput < Aws::EmptyStructure
|
788
|
+
end
|
789
|
+
|
790
|
+
class InitializeServiceOutput < Aws::EmptyStructure
|
791
|
+
end
|
792
|
+
|
793
|
+
class InternalServerException
|
794
|
+
attr_accessor message: ::String
|
795
|
+
attr_accessor retry_after_seconds: ::Integer
|
796
|
+
SENSITIVE: []
|
797
|
+
end
|
798
|
+
|
799
|
+
class ListAutonomousVirtualMachinesInput
|
800
|
+
attr_accessor max_results: ::Integer
|
801
|
+
attr_accessor next_token: ::String
|
802
|
+
attr_accessor cloud_autonomous_vm_cluster_id: ::String
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class ListAutonomousVirtualMachinesOutput
|
807
|
+
attr_accessor next_token: ::String
|
808
|
+
attr_accessor autonomous_virtual_machines: ::Array[Types::AutonomousVirtualMachineSummary]
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class ListCloudAutonomousVmClustersInput
|
813
|
+
attr_accessor max_results: ::Integer
|
814
|
+
attr_accessor next_token: ::String
|
815
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class ListCloudAutonomousVmClustersOutput
|
820
|
+
attr_accessor next_token: ::String
|
821
|
+
attr_accessor cloud_autonomous_vm_clusters: ::Array[Types::CloudAutonomousVmClusterSummary]
|
822
|
+
SENSITIVE: []
|
823
|
+
end
|
824
|
+
|
825
|
+
class ListCloudExadataInfrastructuresInput
|
826
|
+
attr_accessor max_results: ::Integer
|
827
|
+
attr_accessor next_token: ::String
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class ListCloudExadataInfrastructuresOutput
|
832
|
+
attr_accessor next_token: ::String
|
833
|
+
attr_accessor cloud_exadata_infrastructures: ::Array[Types::CloudExadataInfrastructureSummary]
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class ListCloudVmClustersInput
|
838
|
+
attr_accessor max_results: ::Integer
|
839
|
+
attr_accessor next_token: ::String
|
840
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class ListCloudVmClustersOutput
|
845
|
+
attr_accessor next_token: ::String
|
846
|
+
attr_accessor cloud_vm_clusters: ::Array[Types::CloudVmClusterSummary]
|
847
|
+
SENSITIVE: []
|
848
|
+
end
|
849
|
+
|
850
|
+
class ListDbNodesInput
|
851
|
+
attr_accessor max_results: ::Integer
|
852
|
+
attr_accessor next_token: ::String
|
853
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class ListDbNodesOutput
|
858
|
+
attr_accessor next_token: ::String
|
859
|
+
attr_accessor db_nodes: ::Array[Types::DbNodeSummary]
|
860
|
+
SENSITIVE: []
|
861
|
+
end
|
862
|
+
|
863
|
+
class ListDbServersInput
|
864
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
865
|
+
attr_accessor max_results: ::Integer
|
866
|
+
attr_accessor next_token: ::String
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class ListDbServersOutput
|
871
|
+
attr_accessor next_token: ::String
|
872
|
+
attr_accessor db_servers: ::Array[Types::DbServerSummary]
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class ListDbSystemShapesInput
|
877
|
+
attr_accessor max_results: ::Integer
|
878
|
+
attr_accessor next_token: ::String
|
879
|
+
attr_accessor availability_zone: ::String
|
880
|
+
attr_accessor availability_zone_id: ::String
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class ListDbSystemShapesOutput
|
885
|
+
attr_accessor next_token: ::String
|
886
|
+
attr_accessor db_system_shapes: ::Array[Types::DbSystemShapeSummary]
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class ListGiVersionsInput
|
891
|
+
attr_accessor max_results: ::Integer
|
892
|
+
attr_accessor next_token: ::String
|
893
|
+
attr_accessor shape: ::String
|
894
|
+
SENSITIVE: []
|
895
|
+
end
|
896
|
+
|
897
|
+
class ListGiVersionsOutput
|
898
|
+
attr_accessor next_token: ::String
|
899
|
+
attr_accessor gi_versions: ::Array[Types::GiVersionSummary]
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class ListOdbNetworksInput
|
904
|
+
attr_accessor max_results: ::Integer
|
905
|
+
attr_accessor next_token: ::String
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class ListOdbNetworksOutput
|
910
|
+
attr_accessor next_token: ::String
|
911
|
+
attr_accessor odb_networks: ::Array[Types::OdbNetworkSummary]
|
912
|
+
SENSITIVE: []
|
913
|
+
end
|
914
|
+
|
915
|
+
class ListOdbPeeringConnectionsInput
|
916
|
+
attr_accessor max_results: ::Integer
|
917
|
+
attr_accessor next_token: ::String
|
918
|
+
attr_accessor odb_network_id: ::String
|
919
|
+
SENSITIVE: []
|
920
|
+
end
|
921
|
+
|
922
|
+
class ListOdbPeeringConnectionsOutput
|
923
|
+
attr_accessor next_token: ::String
|
924
|
+
attr_accessor odb_peering_connections: ::Array[Types::OdbPeeringConnectionSummary]
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class ListSystemVersionsInput
|
929
|
+
attr_accessor max_results: ::Integer
|
930
|
+
attr_accessor next_token: ::String
|
931
|
+
attr_accessor gi_version: ::String
|
932
|
+
attr_accessor shape: ::String
|
933
|
+
SENSITIVE: []
|
934
|
+
end
|
935
|
+
|
936
|
+
class ListSystemVersionsOutput
|
937
|
+
attr_accessor next_token: ::String
|
938
|
+
attr_accessor system_versions: ::Array[Types::SystemVersionSummary]
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class ListTagsForResourceRequest
|
943
|
+
attr_accessor resource_arn: ::String
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class ListTagsForResourceResponse
|
948
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
952
|
+
class MaintenanceWindow
|
953
|
+
attr_accessor custom_action_timeout_in_mins: ::Integer
|
954
|
+
attr_accessor days_of_week: ::Array[Types::DayOfWeek]
|
955
|
+
attr_accessor hours_of_day: ::Array[::Integer]
|
956
|
+
attr_accessor is_custom_action_timeout_enabled: bool
|
957
|
+
attr_accessor lead_time_in_weeks: ::Integer
|
958
|
+
attr_accessor months: ::Array[Types::Month]
|
959
|
+
attr_accessor patching_mode: ("ROLLING" | "NONROLLING")
|
960
|
+
attr_accessor preference: ("NO_PREFERENCE" | "CUSTOM_PREFERENCE")
|
961
|
+
attr_accessor skip_ru: bool
|
962
|
+
attr_accessor weeks_of_month: ::Array[::Integer]
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class ManagedS3BackupAccess
|
967
|
+
attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
|
968
|
+
attr_accessor ipv4_addresses: ::Array[::String]
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class ManagedServices
|
973
|
+
attr_accessor service_network_arn: ::String
|
974
|
+
attr_accessor resource_gateway_arn: ::String
|
975
|
+
attr_accessor managed_services_ipv_4_cidrs: ::Array[::String]
|
976
|
+
attr_accessor service_network_endpoint: Types::ServiceNetworkEndpoint
|
977
|
+
attr_accessor managed_s3_backup_access: Types::ManagedS3BackupAccess
|
978
|
+
attr_accessor zero_etl_access: Types::ZeroEtlAccess
|
979
|
+
attr_accessor s3_access: Types::S3Access
|
980
|
+
SENSITIVE: []
|
981
|
+
end
|
982
|
+
|
983
|
+
class Month
|
984
|
+
attr_accessor name: ("JANUARY" | "FEBRUARY" | "MARCH" | "APRIL" | "MAY" | "JUNE" | "JULY" | "AUGUST" | "SEPTEMBER" | "OCTOBER" | "NOVEMBER" | "DECEMBER")
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class OciDnsForwardingConfig
|
989
|
+
attr_accessor domain_name: ::String
|
990
|
+
attr_accessor oci_dns_listener_ip: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class OdbNetwork
|
995
|
+
attr_accessor odb_network_id: ::String
|
996
|
+
attr_accessor display_name: ::String
|
997
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
998
|
+
attr_accessor status_reason: ::String
|
999
|
+
attr_accessor odb_network_arn: ::String
|
1000
|
+
attr_accessor availability_zone: ::String
|
1001
|
+
attr_accessor availability_zone_id: ::String
|
1002
|
+
attr_accessor client_subnet_cidr: ::String
|
1003
|
+
attr_accessor backup_subnet_cidr: ::String
|
1004
|
+
attr_accessor custom_domain_name: ::String
|
1005
|
+
attr_accessor default_dns_prefix: ::String
|
1006
|
+
attr_accessor peered_cidrs: ::Array[::String]
|
1007
|
+
attr_accessor oci_network_anchor_id: ::String
|
1008
|
+
attr_accessor oci_network_anchor_url: ::String
|
1009
|
+
attr_accessor oci_resource_anchor_name: ::String
|
1010
|
+
attr_accessor oci_vcn_id: ::String
|
1011
|
+
attr_accessor oci_vcn_url: ::String
|
1012
|
+
attr_accessor oci_dns_forwarding_configs: ::Array[Types::OciDnsForwardingConfig]
|
1013
|
+
attr_accessor created_at: ::Time
|
1014
|
+
attr_accessor percent_progress: ::Float
|
1015
|
+
attr_accessor managed_services: Types::ManagedServices
|
1016
|
+
SENSITIVE: []
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
class OdbNetworkSummary
|
1020
|
+
attr_accessor odb_network_id: ::String
|
1021
|
+
attr_accessor display_name: ::String
|
1022
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
1023
|
+
attr_accessor status_reason: ::String
|
1024
|
+
attr_accessor odb_network_arn: ::String
|
1025
|
+
attr_accessor availability_zone: ::String
|
1026
|
+
attr_accessor availability_zone_id: ::String
|
1027
|
+
attr_accessor client_subnet_cidr: ::String
|
1028
|
+
attr_accessor backup_subnet_cidr: ::String
|
1029
|
+
attr_accessor custom_domain_name: ::String
|
1030
|
+
attr_accessor default_dns_prefix: ::String
|
1031
|
+
attr_accessor peered_cidrs: ::Array[::String]
|
1032
|
+
attr_accessor oci_network_anchor_id: ::String
|
1033
|
+
attr_accessor oci_network_anchor_url: ::String
|
1034
|
+
attr_accessor oci_resource_anchor_name: ::String
|
1035
|
+
attr_accessor oci_vcn_id: ::String
|
1036
|
+
attr_accessor oci_vcn_url: ::String
|
1037
|
+
attr_accessor oci_dns_forwarding_configs: ::Array[Types::OciDnsForwardingConfig]
|
1038
|
+
attr_accessor created_at: ::Time
|
1039
|
+
attr_accessor percent_progress: ::Float
|
1040
|
+
attr_accessor managed_services: Types::ManagedServices
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class OdbPeeringConnection
|
1045
|
+
attr_accessor odb_peering_connection_id: ::String
|
1046
|
+
attr_accessor display_name: ::String
|
1047
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
1048
|
+
attr_accessor status_reason: ::String
|
1049
|
+
attr_accessor odb_peering_connection_arn: ::String
|
1050
|
+
attr_accessor odb_network_arn: ::String
|
1051
|
+
attr_accessor peer_network_arn: ::String
|
1052
|
+
attr_accessor odb_peering_connection_type: ::String
|
1053
|
+
attr_accessor created_at: ::Time
|
1054
|
+
attr_accessor percent_progress: ::Float
|
1055
|
+
SENSITIVE: []
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class OdbPeeringConnectionSummary
|
1059
|
+
attr_accessor odb_peering_connection_id: ::String
|
1060
|
+
attr_accessor display_name: ::String
|
1061
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
1062
|
+
attr_accessor status_reason: ::String
|
1063
|
+
attr_accessor odb_peering_connection_arn: ::String
|
1064
|
+
attr_accessor odb_network_arn: ::String
|
1065
|
+
attr_accessor peer_network_arn: ::String
|
1066
|
+
attr_accessor odb_peering_connection_type: ::String
|
1067
|
+
attr_accessor created_at: ::Time
|
1068
|
+
attr_accessor percent_progress: ::Float
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class RebootDbNodeInput
|
1073
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
1074
|
+
attr_accessor db_node_id: ::String
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class RebootDbNodeOutput
|
1079
|
+
attr_accessor db_node_id: ::String
|
1080
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
|
1081
|
+
attr_accessor status_reason: ::String
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class ResourceNotFoundException
|
1086
|
+
attr_accessor message: ::String
|
1087
|
+
attr_accessor resource_id: ::String
|
1088
|
+
attr_accessor resource_type: ::String
|
1089
|
+
SENSITIVE: []
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class S3Access
|
1093
|
+
attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
|
1094
|
+
attr_accessor ipv4_addresses: ::Array[::String]
|
1095
|
+
attr_accessor domain_name: ::String
|
1096
|
+
attr_accessor s3_policy_document: ::String
|
1097
|
+
SENSITIVE: []
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
class ServiceNetworkEndpoint
|
1101
|
+
attr_accessor vpc_endpoint_id: ::String
|
1102
|
+
attr_accessor vpc_endpoint_type: ("SERVICENETWORK")
|
1103
|
+
SENSITIVE: []
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class ServiceQuotaExceededException
|
1107
|
+
attr_accessor message: ::String
|
1108
|
+
attr_accessor resource_id: ::String
|
1109
|
+
attr_accessor resource_type: ::String
|
1110
|
+
attr_accessor quota_code: ::String
|
1111
|
+
SENSITIVE: []
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class StartDbNodeInput
|
1115
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
1116
|
+
attr_accessor db_node_id: ::String
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class StartDbNodeOutput
|
1121
|
+
attr_accessor db_node_id: ::String
|
1122
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
|
1123
|
+
attr_accessor status_reason: ::String
|
1124
|
+
SENSITIVE: []
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class StopDbNodeInput
|
1128
|
+
attr_accessor cloud_vm_cluster_id: ::String
|
1129
|
+
attr_accessor db_node_id: ::String
|
1130
|
+
SENSITIVE: []
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class StopDbNodeOutput
|
1134
|
+
attr_accessor db_node_id: ::String
|
1135
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
|
1136
|
+
attr_accessor status_reason: ::String
|
1137
|
+
SENSITIVE: []
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
class SystemVersionSummary
|
1141
|
+
attr_accessor gi_version: ::String
|
1142
|
+
attr_accessor shape: ::String
|
1143
|
+
attr_accessor system_versions: ::Array[::String]
|
1144
|
+
SENSITIVE: []
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class TagResourceRequest
|
1148
|
+
attr_accessor resource_arn: ::String
|
1149
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1150
|
+
SENSITIVE: []
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class ThrottlingException
|
1157
|
+
attr_accessor message: ::String
|
1158
|
+
attr_accessor retry_after_seconds: ::Integer
|
1159
|
+
SENSITIVE: []
|
1160
|
+
end
|
1161
|
+
|
1162
|
+
class UntagResourceRequest
|
1163
|
+
attr_accessor resource_arn: ::String
|
1164
|
+
attr_accessor tag_keys: ::Array[::String]
|
1165
|
+
SENSITIVE: []
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class UpdateCloudExadataInfrastructureInput
|
1172
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
1173
|
+
attr_accessor maintenance_window: Types::MaintenanceWindow
|
1174
|
+
SENSITIVE: []
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class UpdateCloudExadataInfrastructureOutput
|
1178
|
+
attr_accessor display_name: ::String
|
1179
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
1180
|
+
attr_accessor status_reason: ::String
|
1181
|
+
attr_accessor cloud_exadata_infrastructure_id: ::String
|
1182
|
+
SENSITIVE: []
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
class UpdateOdbNetworkInput
|
1186
|
+
attr_accessor odb_network_id: ::String
|
1187
|
+
attr_accessor display_name: ::String
|
1188
|
+
attr_accessor peered_cidrs_to_be_added: ::Array[::String]
|
1189
|
+
attr_accessor peered_cidrs_to_be_removed: ::Array[::String]
|
1190
|
+
attr_accessor s3_access: ("ENABLED" | "DISABLED")
|
1191
|
+
attr_accessor zero_etl_access: ("ENABLED" | "DISABLED")
|
1192
|
+
attr_accessor s3_policy_document: ::String
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class UpdateOdbNetworkOutput
|
1197
|
+
attr_accessor display_name: ::String
|
1198
|
+
attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
|
1199
|
+
attr_accessor status_reason: ::String
|
1200
|
+
attr_accessor odb_network_id: ::String
|
1201
|
+
SENSITIVE: []
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
class ValidationException
|
1205
|
+
attr_accessor message: ::String
|
1206
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
1207
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1208
|
+
SENSITIVE: []
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
class ValidationExceptionField
|
1212
|
+
attr_accessor name: ::String
|
1213
|
+
attr_accessor message: ::String
|
1214
|
+
SENSITIVE: []
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class ZeroEtlAccess
|
1218
|
+
attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
|
1219
|
+
attr_accessor cidr: ::String
|
1220
|
+
SENSITIVE: []
|
1221
|
+
end
|
1222
|
+
end
|
1223
|
+
end
|