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.
data/sig/client.rbs ADDED
@@ -0,0 +1,677 @@
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
9
+ module Odb
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?client_side_monitoring: bool,
22
+ ?client_side_monitoring_client_id: String,
23
+ ?client_side_monitoring_host: String,
24
+ ?client_side_monitoring_port: Integer,
25
+ ?client_side_monitoring_publisher: untyped,
26
+ ?convert_params: bool,
27
+ ?correct_clock_skew: bool,
28
+ ?defaults_mode: String,
29
+ ?disable_host_prefix_injection: bool,
30
+ ?disable_request_compression: bool,
31
+ ?endpoint: String,
32
+ ?endpoint_cache_max_entries: Integer,
33
+ ?endpoint_cache_max_threads: Integer,
34
+ ?endpoint_cache_poll_interval: Integer,
35
+ ?endpoint_discovery: bool,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?log_formatter: untyped,
38
+ ?log_level: Symbol,
39
+ ?logger: untyped,
40
+ ?max_attempts: Integer,
41
+ ?profile: String,
42
+ ?request_checksum_calculation: String,
43
+ ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
45
+ ?retry_backoff: Proc,
46
+ ?retry_base_delay: Float,
47
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
48
+ ?retry_limit: Integer,
49
+ ?retry_max_delay: Integer,
50
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
51
+ ?sdk_ua_app_id: String,
52
+ ?secret_access_key: String,
53
+ ?session_token: String,
54
+ ?sigv4a_signing_region_set: Array[String],
55
+ ?simple_json: bool,
56
+ ?stub_responses: untyped,
57
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
58
+ ?token_provider: untyped,
59
+ ?use_dualstack_endpoint: bool,
60
+ ?use_fips_endpoint: bool,
61
+ ?validate_params: bool,
62
+ ?endpoint_provider: untyped,
63
+ ?http_proxy: String,
64
+ ?http_open_timeout: (Float | Integer),
65
+ ?http_read_timeout: (Float | Integer),
66
+ ?http_idle_timeout: (Float | Integer),
67
+ ?http_continue_timeout: (Float | Integer),
68
+ ?ssl_timeout: (Float | Integer | nil),
69
+ ?http_wire_trace: bool,
70
+ ?ssl_verify_peer: bool,
71
+ ?ssl_ca_bundle: String,
72
+ ?ssl_ca_directory: String,
73
+ ?ssl_ca_store: String,
74
+ ?on_chunk_received: Proc,
75
+ ?on_chunk_sent: Proc,
76
+ ?raise_response_errors: bool
77
+ ) -> instance
78
+ | (?Hash[Symbol, untyped]) -> instance
79
+
80
+
81
+ interface _AcceptMarketplaceRegistrationResponseSuccess
82
+ include ::Seahorse::Client::_ResponseSuccess[Types::AcceptMarketplaceRegistrationOutput]
83
+ end
84
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#accept_marketplace_registration-instance_method
85
+ def accept_marketplace_registration: (
86
+ marketplace_registration_token: ::String
87
+ ) -> _AcceptMarketplaceRegistrationResponseSuccess
88
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptMarketplaceRegistrationResponseSuccess
89
+
90
+ interface _CreateCloudAutonomousVmClusterResponseSuccess
91
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudAutonomousVmClusterOutput]
92
+ def display_name: () -> ::String
93
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
94
+ def status_reason: () -> ::String
95
+ def cloud_autonomous_vm_cluster_id: () -> ::String
96
+ end
97
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#create_cloud_autonomous_vm_cluster-instance_method
98
+ def create_cloud_autonomous_vm_cluster: (
99
+ cloud_exadata_infrastructure_id: ::String,
100
+ odb_network_id: ::String,
101
+ display_name: ::String,
102
+ ?client_token: ::String,
103
+ autonomous_data_storage_size_in_t_bs: ::Float,
104
+ cpu_core_count_per_node: ::Integer,
105
+ ?db_servers: Array[::String],
106
+ ?description: ::String,
107
+ ?is_mtls_enabled_vm_cluster: bool,
108
+ ?license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED"),
109
+ ?maintenance_window: {
110
+ custom_action_timeout_in_mins: ::Integer?,
111
+ days_of_week: Array[
112
+ {
113
+ name: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")?
114
+ },
115
+ ]?,
116
+ hours_of_day: Array[::Integer]?,
117
+ is_custom_action_timeout_enabled: bool?,
118
+ lead_time_in_weeks: ::Integer?,
119
+ months: Array[
120
+ {
121
+ name: ("JANUARY" | "FEBRUARY" | "MARCH" | "APRIL" | "MAY" | "JUNE" | "JULY" | "AUGUST" | "SEPTEMBER" | "OCTOBER" | "NOVEMBER" | "DECEMBER")?
122
+ },
123
+ ]?,
124
+ patching_mode: ("ROLLING" | "NONROLLING")?,
125
+ preference: ("NO_PREFERENCE" | "CUSTOM_PREFERENCE")?,
126
+ skip_ru: bool?,
127
+ weeks_of_month: Array[::Integer]?
128
+ },
129
+ memory_per_oracle_compute_unit_in_g_bs: ::Integer,
130
+ ?scan_listener_port_non_tls: ::Integer,
131
+ ?scan_listener_port_tls: ::Integer,
132
+ ?tags: Hash[::String, ::String],
133
+ ?time_zone: ::String,
134
+ total_container_databases: ::Integer
135
+ ) -> _CreateCloudAutonomousVmClusterResponseSuccess
136
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudAutonomousVmClusterResponseSuccess
137
+
138
+ interface _CreateCloudExadataInfrastructureResponseSuccess
139
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudExadataInfrastructureOutput]
140
+ def display_name: () -> ::String
141
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
142
+ def status_reason: () -> ::String
143
+ def cloud_exadata_infrastructure_id: () -> ::String
144
+ end
145
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#create_cloud_exadata_infrastructure-instance_method
146
+ def create_cloud_exadata_infrastructure: (
147
+ display_name: ::String,
148
+ shape: ::String,
149
+ ?availability_zone: ::String,
150
+ ?availability_zone_id: ::String,
151
+ ?tags: Hash[::String, ::String],
152
+ compute_count: ::Integer,
153
+ ?customer_contacts_to_send_to_oci: Array[
154
+ {
155
+ email: ::String?
156
+ },
157
+ ],
158
+ ?maintenance_window: {
159
+ custom_action_timeout_in_mins: ::Integer?,
160
+ days_of_week: Array[
161
+ {
162
+ name: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")?
163
+ },
164
+ ]?,
165
+ hours_of_day: Array[::Integer]?,
166
+ is_custom_action_timeout_enabled: bool?,
167
+ lead_time_in_weeks: ::Integer?,
168
+ months: Array[
169
+ {
170
+ name: ("JANUARY" | "FEBRUARY" | "MARCH" | "APRIL" | "MAY" | "JUNE" | "JULY" | "AUGUST" | "SEPTEMBER" | "OCTOBER" | "NOVEMBER" | "DECEMBER")?
171
+ },
172
+ ]?,
173
+ patching_mode: ("ROLLING" | "NONROLLING")?,
174
+ preference: ("NO_PREFERENCE" | "CUSTOM_PREFERENCE")?,
175
+ skip_ru: bool?,
176
+ weeks_of_month: Array[::Integer]?
177
+ },
178
+ storage_count: ::Integer,
179
+ ?client_token: ::String,
180
+ ?database_server_type: ::String,
181
+ ?storage_server_type: ::String
182
+ ) -> _CreateCloudExadataInfrastructureResponseSuccess
183
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudExadataInfrastructureResponseSuccess
184
+
185
+ interface _CreateCloudVmClusterResponseSuccess
186
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudVmClusterOutput]
187
+ def display_name: () -> ::String
188
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
189
+ def status_reason: () -> ::String
190
+ def cloud_vm_cluster_id: () -> ::String
191
+ end
192
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#create_cloud_vm_cluster-instance_method
193
+ def create_cloud_vm_cluster: (
194
+ cloud_exadata_infrastructure_id: ::String,
195
+ cpu_core_count: ::Integer,
196
+ display_name: ::String,
197
+ gi_version: ::String,
198
+ hostname: ::String,
199
+ ssh_public_keys: Array[::String],
200
+ odb_network_id: ::String,
201
+ ?cluster_name: ::String,
202
+ ?data_collection_options: {
203
+ is_diagnostics_events_enabled: bool?,
204
+ is_health_monitoring_enabled: bool?,
205
+ is_incident_logs_enabled: bool?
206
+ },
207
+ ?data_storage_size_in_t_bs: ::Float,
208
+ ?db_node_storage_size_in_g_bs: ::Integer,
209
+ ?db_servers: Array[::String],
210
+ ?tags: Hash[::String, ::String],
211
+ ?is_local_backup_enabled: bool,
212
+ ?is_sparse_diskgroup_enabled: bool,
213
+ ?license_model: ("BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED"),
214
+ ?memory_size_in_g_bs: ::Integer,
215
+ ?system_version: ::String,
216
+ ?time_zone: ::String,
217
+ ?client_token: ::String,
218
+ ?scan_listener_port_tcp: ::Integer
219
+ ) -> _CreateCloudVmClusterResponseSuccess
220
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudVmClusterResponseSuccess
221
+
222
+ interface _CreateOdbNetworkResponseSuccess
223
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateOdbNetworkOutput]
224
+ def display_name: () -> ::String
225
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
226
+ def status_reason: () -> ::String
227
+ def odb_network_id: () -> ::String
228
+ end
229
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#create_odb_network-instance_method
230
+ def create_odb_network: (
231
+ display_name: ::String,
232
+ ?availability_zone: ::String,
233
+ ?availability_zone_id: ::String,
234
+ client_subnet_cidr: ::String,
235
+ ?backup_subnet_cidr: ::String,
236
+ ?custom_domain_name: ::String,
237
+ ?default_dns_prefix: ::String,
238
+ ?client_token: ::String,
239
+ ?s3_access: ("ENABLED" | "DISABLED"),
240
+ ?zero_etl_access: ("ENABLED" | "DISABLED"),
241
+ ?s3_policy_document: ::String,
242
+ ?tags: Hash[::String, ::String]
243
+ ) -> _CreateOdbNetworkResponseSuccess
244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOdbNetworkResponseSuccess
245
+
246
+ interface _CreateOdbPeeringConnectionResponseSuccess
247
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateOdbPeeringConnectionOutput]
248
+ def display_name: () -> ::String
249
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
250
+ def status_reason: () -> ::String
251
+ def odb_peering_connection_id: () -> ::String
252
+ end
253
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#create_odb_peering_connection-instance_method
254
+ def create_odb_peering_connection: (
255
+ odb_network_id: ::String,
256
+ peer_network_id: ::String,
257
+ ?display_name: ::String,
258
+ ?client_token: ::String,
259
+ ?tags: Hash[::String, ::String]
260
+ ) -> _CreateOdbPeeringConnectionResponseSuccess
261
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOdbPeeringConnectionResponseSuccess
262
+
263
+ interface _DeleteCloudAutonomousVmClusterResponseSuccess
264
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCloudAutonomousVmClusterOutput]
265
+ end
266
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#delete_cloud_autonomous_vm_cluster-instance_method
267
+ def delete_cloud_autonomous_vm_cluster: (
268
+ cloud_autonomous_vm_cluster_id: ::String
269
+ ) -> _DeleteCloudAutonomousVmClusterResponseSuccess
270
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCloudAutonomousVmClusterResponseSuccess
271
+
272
+ interface _DeleteCloudExadataInfrastructureResponseSuccess
273
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCloudExadataInfrastructureOutput]
274
+ end
275
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#delete_cloud_exadata_infrastructure-instance_method
276
+ def delete_cloud_exadata_infrastructure: (
277
+ cloud_exadata_infrastructure_id: ::String
278
+ ) -> _DeleteCloudExadataInfrastructureResponseSuccess
279
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCloudExadataInfrastructureResponseSuccess
280
+
281
+ interface _DeleteCloudVmClusterResponseSuccess
282
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCloudVmClusterOutput]
283
+ end
284
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#delete_cloud_vm_cluster-instance_method
285
+ def delete_cloud_vm_cluster: (
286
+ cloud_vm_cluster_id: ::String
287
+ ) -> _DeleteCloudVmClusterResponseSuccess
288
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCloudVmClusterResponseSuccess
289
+
290
+ interface _DeleteOdbNetworkResponseSuccess
291
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteOdbNetworkOutput]
292
+ end
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#delete_odb_network-instance_method
294
+ def delete_odb_network: (
295
+ odb_network_id: ::String,
296
+ delete_associated_resources: bool
297
+ ) -> _DeleteOdbNetworkResponseSuccess
298
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOdbNetworkResponseSuccess
299
+
300
+ interface _DeleteOdbPeeringConnectionResponseSuccess
301
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteOdbPeeringConnectionOutput]
302
+ end
303
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#delete_odb_peering_connection-instance_method
304
+ def delete_odb_peering_connection: (
305
+ odb_peering_connection_id: ::String
306
+ ) -> _DeleteOdbPeeringConnectionResponseSuccess
307
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOdbPeeringConnectionResponseSuccess
308
+
309
+ interface _GetCloudAutonomousVmClusterResponseSuccess
310
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudAutonomousVmClusterOutput]
311
+ def cloud_autonomous_vm_cluster: () -> Types::CloudAutonomousVmCluster
312
+ end
313
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_cloud_autonomous_vm_cluster-instance_method
314
+ def get_cloud_autonomous_vm_cluster: (
315
+ cloud_autonomous_vm_cluster_id: ::String
316
+ ) -> _GetCloudAutonomousVmClusterResponseSuccess
317
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudAutonomousVmClusterResponseSuccess
318
+
319
+ interface _GetCloudExadataInfrastructureResponseSuccess
320
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudExadataInfrastructureOutput]
321
+ def cloud_exadata_infrastructure: () -> Types::CloudExadataInfrastructure
322
+ end
323
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_cloud_exadata_infrastructure-instance_method
324
+ def get_cloud_exadata_infrastructure: (
325
+ cloud_exadata_infrastructure_id: ::String
326
+ ) -> _GetCloudExadataInfrastructureResponseSuccess
327
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudExadataInfrastructureResponseSuccess
328
+
329
+ interface _GetCloudExadataInfrastructureUnallocatedResourcesResponseSuccess
330
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudExadataInfrastructureUnallocatedResourcesOutput]
331
+ def cloud_exadata_infrastructure_unallocated_resources: () -> Types::CloudExadataInfrastructureUnallocatedResources
332
+ end
333
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_cloud_exadata_infrastructure_unallocated_resources-instance_method
334
+ def get_cloud_exadata_infrastructure_unallocated_resources: (
335
+ cloud_exadata_infrastructure_id: ::String,
336
+ ?db_servers: Array[::String]
337
+ ) -> _GetCloudExadataInfrastructureUnallocatedResourcesResponseSuccess
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudExadataInfrastructureUnallocatedResourcesResponseSuccess
339
+
340
+ interface _GetCloudVmClusterResponseSuccess
341
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudVmClusterOutput]
342
+ def cloud_vm_cluster: () -> Types::CloudVmCluster
343
+ end
344
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_cloud_vm_cluster-instance_method
345
+ def get_cloud_vm_cluster: (
346
+ cloud_vm_cluster_id: ::String
347
+ ) -> _GetCloudVmClusterResponseSuccess
348
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudVmClusterResponseSuccess
349
+
350
+ interface _GetDbNodeResponseSuccess
351
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDbNodeOutput]
352
+ def db_node: () -> Types::DbNode
353
+ end
354
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_db_node-instance_method
355
+ def get_db_node: (
356
+ cloud_vm_cluster_id: ::String,
357
+ db_node_id: ::String
358
+ ) -> _GetDbNodeResponseSuccess
359
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDbNodeResponseSuccess
360
+
361
+ interface _GetDbServerResponseSuccess
362
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDbServerOutput]
363
+ def db_server: () -> Types::DbServer
364
+ end
365
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_db_server-instance_method
366
+ def get_db_server: (
367
+ cloud_exadata_infrastructure_id: ::String,
368
+ db_server_id: ::String
369
+ ) -> _GetDbServerResponseSuccess
370
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDbServerResponseSuccess
371
+
372
+ interface _GetOciOnboardingStatusResponseSuccess
373
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOciOnboardingStatusOutput]
374
+ def 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")
375
+ def existing_tenancy_activation_link: () -> ::String
376
+ def new_tenancy_activation_link: () -> ::String
377
+ end
378
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_oci_onboarding_status-instance_method
379
+ def get_oci_onboarding_status: (
380
+ ) -> _GetOciOnboardingStatusResponseSuccess
381
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOciOnboardingStatusResponseSuccess
382
+
383
+ interface _GetOdbNetworkResponseSuccess
384
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOdbNetworkOutput]
385
+ def odb_network: () -> Types::OdbNetwork
386
+ end
387
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_odb_network-instance_method
388
+ def get_odb_network: (
389
+ odb_network_id: ::String
390
+ ) -> _GetOdbNetworkResponseSuccess
391
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOdbNetworkResponseSuccess
392
+
393
+ interface _GetOdbPeeringConnectionResponseSuccess
394
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOdbPeeringConnectionOutput]
395
+ def odb_peering_connection: () -> Types::OdbPeeringConnection
396
+ end
397
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_odb_peering_connection-instance_method
398
+ def get_odb_peering_connection: (
399
+ odb_peering_connection_id: ::String
400
+ ) -> _GetOdbPeeringConnectionResponseSuccess
401
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOdbPeeringConnectionResponseSuccess
402
+
403
+ interface _InitializeServiceResponseSuccess
404
+ include ::Seahorse::Client::_ResponseSuccess[Types::InitializeServiceOutput]
405
+ end
406
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#initialize_service-instance_method
407
+ def initialize_service: (
408
+ ) -> _InitializeServiceResponseSuccess
409
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InitializeServiceResponseSuccess
410
+
411
+ interface _ListAutonomousVirtualMachinesResponseSuccess
412
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAutonomousVirtualMachinesOutput]
413
+ def next_token: () -> ::String
414
+ def autonomous_virtual_machines: () -> ::Array[Types::AutonomousVirtualMachineSummary]
415
+ end
416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_autonomous_virtual_machines-instance_method
417
+ def list_autonomous_virtual_machines: (
418
+ ?max_results: ::Integer,
419
+ ?next_token: ::String,
420
+ cloud_autonomous_vm_cluster_id: ::String
421
+ ) -> _ListAutonomousVirtualMachinesResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAutonomousVirtualMachinesResponseSuccess
423
+
424
+ interface _ListCloudAutonomousVmClustersResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCloudAutonomousVmClustersOutput]
426
+ def next_token: () -> ::String
427
+ def cloud_autonomous_vm_clusters: () -> ::Array[Types::CloudAutonomousVmClusterSummary]
428
+ end
429
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_cloud_autonomous_vm_clusters-instance_method
430
+ def list_cloud_autonomous_vm_clusters: (
431
+ ?max_results: ::Integer,
432
+ ?next_token: ::String,
433
+ ?cloud_exadata_infrastructure_id: ::String
434
+ ) -> _ListCloudAutonomousVmClustersResponseSuccess
435
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCloudAutonomousVmClustersResponseSuccess
436
+
437
+ interface _ListCloudExadataInfrastructuresResponseSuccess
438
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCloudExadataInfrastructuresOutput]
439
+ def next_token: () -> ::String
440
+ def cloud_exadata_infrastructures: () -> ::Array[Types::CloudExadataInfrastructureSummary]
441
+ end
442
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_cloud_exadata_infrastructures-instance_method
443
+ def list_cloud_exadata_infrastructures: (
444
+ ?max_results: ::Integer,
445
+ ?next_token: ::String
446
+ ) -> _ListCloudExadataInfrastructuresResponseSuccess
447
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCloudExadataInfrastructuresResponseSuccess
448
+
449
+ interface _ListCloudVmClustersResponseSuccess
450
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCloudVmClustersOutput]
451
+ def next_token: () -> ::String
452
+ def cloud_vm_clusters: () -> ::Array[Types::CloudVmClusterSummary]
453
+ end
454
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_cloud_vm_clusters-instance_method
455
+ def list_cloud_vm_clusters: (
456
+ ?max_results: ::Integer,
457
+ ?next_token: ::String,
458
+ ?cloud_exadata_infrastructure_id: ::String
459
+ ) -> _ListCloudVmClustersResponseSuccess
460
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCloudVmClustersResponseSuccess
461
+
462
+ interface _ListDbNodesResponseSuccess
463
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDbNodesOutput]
464
+ def next_token: () -> ::String
465
+ def db_nodes: () -> ::Array[Types::DbNodeSummary]
466
+ end
467
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_db_nodes-instance_method
468
+ def list_db_nodes: (
469
+ ?max_results: ::Integer,
470
+ ?next_token: ::String,
471
+ cloud_vm_cluster_id: ::String
472
+ ) -> _ListDbNodesResponseSuccess
473
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbNodesResponseSuccess
474
+
475
+ interface _ListDbServersResponseSuccess
476
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDbServersOutput]
477
+ def next_token: () -> ::String
478
+ def db_servers: () -> ::Array[Types::DbServerSummary]
479
+ end
480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_db_servers-instance_method
481
+ def list_db_servers: (
482
+ cloud_exadata_infrastructure_id: ::String,
483
+ ?max_results: ::Integer,
484
+ ?next_token: ::String
485
+ ) -> _ListDbServersResponseSuccess
486
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbServersResponseSuccess
487
+
488
+ interface _ListDbSystemShapesResponseSuccess
489
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDbSystemShapesOutput]
490
+ def next_token: () -> ::String
491
+ def db_system_shapes: () -> ::Array[Types::DbSystemShapeSummary]
492
+ end
493
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_db_system_shapes-instance_method
494
+ def list_db_system_shapes: (
495
+ ?max_results: ::Integer,
496
+ ?next_token: ::String,
497
+ ?availability_zone: ::String,
498
+ ?availability_zone_id: ::String
499
+ ) -> _ListDbSystemShapesResponseSuccess
500
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbSystemShapesResponseSuccess
501
+
502
+ interface _ListGiVersionsResponseSuccess
503
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGiVersionsOutput]
504
+ def next_token: () -> ::String
505
+ def gi_versions: () -> ::Array[Types::GiVersionSummary]
506
+ end
507
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_gi_versions-instance_method
508
+ def list_gi_versions: (
509
+ ?max_results: ::Integer,
510
+ ?next_token: ::String,
511
+ ?shape: ::String
512
+ ) -> _ListGiVersionsResponseSuccess
513
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGiVersionsResponseSuccess
514
+
515
+ interface _ListOdbNetworksResponseSuccess
516
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOdbNetworksOutput]
517
+ def next_token: () -> ::String
518
+ def odb_networks: () -> ::Array[Types::OdbNetworkSummary]
519
+ end
520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_odb_networks-instance_method
521
+ def list_odb_networks: (
522
+ ?max_results: ::Integer,
523
+ ?next_token: ::String
524
+ ) -> _ListOdbNetworksResponseSuccess
525
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOdbNetworksResponseSuccess
526
+
527
+ interface _ListOdbPeeringConnectionsResponseSuccess
528
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOdbPeeringConnectionsOutput]
529
+ def next_token: () -> ::String
530
+ def odb_peering_connections: () -> ::Array[Types::OdbPeeringConnectionSummary]
531
+ end
532
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_odb_peering_connections-instance_method
533
+ def list_odb_peering_connections: (
534
+ ?max_results: ::Integer,
535
+ ?next_token: ::String,
536
+ ?odb_network_id: ::String
537
+ ) -> _ListOdbPeeringConnectionsResponseSuccess
538
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOdbPeeringConnectionsResponseSuccess
539
+
540
+ interface _ListSystemVersionsResponseSuccess
541
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSystemVersionsOutput]
542
+ def next_token: () -> ::String
543
+ def system_versions: () -> ::Array[Types::SystemVersionSummary]
544
+ end
545
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_system_versions-instance_method
546
+ def list_system_versions: (
547
+ ?max_results: ::Integer,
548
+ ?next_token: ::String,
549
+ gi_version: ::String,
550
+ shape: ::String
551
+ ) -> _ListSystemVersionsResponseSuccess
552
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSystemVersionsResponseSuccess
553
+
554
+ interface _ListTagsForResourceResponseSuccess
555
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
556
+ def tags: () -> ::Hash[::String, ::String]
557
+ end
558
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#list_tags_for_resource-instance_method
559
+ def list_tags_for_resource: (
560
+ resource_arn: ::String
561
+ ) -> _ListTagsForResourceResponseSuccess
562
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
563
+
564
+ interface _RebootDbNodeResponseSuccess
565
+ include ::Seahorse::Client::_ResponseSuccess[Types::RebootDbNodeOutput]
566
+ def db_node_id: () -> ::String
567
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
568
+ def status_reason: () -> ::String
569
+ end
570
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#reboot_db_node-instance_method
571
+ def reboot_db_node: (
572
+ cloud_vm_cluster_id: ::String,
573
+ db_node_id: ::String
574
+ ) -> _RebootDbNodeResponseSuccess
575
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RebootDbNodeResponseSuccess
576
+
577
+ interface _StartDbNodeResponseSuccess
578
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDbNodeOutput]
579
+ def db_node_id: () -> ::String
580
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
581
+ def status_reason: () -> ::String
582
+ end
583
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#start_db_node-instance_method
584
+ def start_db_node: (
585
+ cloud_vm_cluster_id: ::String,
586
+ db_node_id: ::String
587
+ ) -> _StartDbNodeResponseSuccess
588
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDbNodeResponseSuccess
589
+
590
+ interface _StopDbNodeResponseSuccess
591
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopDbNodeOutput]
592
+ def db_node_id: () -> ::String
593
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING")
594
+ def status_reason: () -> ::String
595
+ end
596
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#stop_db_node-instance_method
597
+ def stop_db_node: (
598
+ cloud_vm_cluster_id: ::String,
599
+ db_node_id: ::String
600
+ ) -> _StopDbNodeResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDbNodeResponseSuccess
602
+
603
+ interface _TagResourceResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
605
+ end
606
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#tag_resource-instance_method
607
+ def tag_resource: (
608
+ resource_arn: ::String,
609
+ tags: Hash[::String, ::String]
610
+ ) -> _TagResourceResponseSuccess
611
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
612
+
613
+ interface _UntagResourceResponseSuccess
614
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
615
+ end
616
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#untag_resource-instance_method
617
+ def untag_resource: (
618
+ resource_arn: ::String,
619
+ tag_keys: Array[::String]
620
+ ) -> _UntagResourceResponseSuccess
621
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
622
+
623
+ interface _UpdateCloudExadataInfrastructureResponseSuccess
624
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCloudExadataInfrastructureOutput]
625
+ def display_name: () -> ::String
626
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
627
+ def status_reason: () -> ::String
628
+ def cloud_exadata_infrastructure_id: () -> ::String
629
+ end
630
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#update_cloud_exadata_infrastructure-instance_method
631
+ def update_cloud_exadata_infrastructure: (
632
+ cloud_exadata_infrastructure_id: ::String,
633
+ ?maintenance_window: {
634
+ custom_action_timeout_in_mins: ::Integer?,
635
+ days_of_week: Array[
636
+ {
637
+ name: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")?
638
+ },
639
+ ]?,
640
+ hours_of_day: Array[::Integer]?,
641
+ is_custom_action_timeout_enabled: bool?,
642
+ lead_time_in_weeks: ::Integer?,
643
+ months: Array[
644
+ {
645
+ name: ("JANUARY" | "FEBRUARY" | "MARCH" | "APRIL" | "MAY" | "JUNE" | "JULY" | "AUGUST" | "SEPTEMBER" | "OCTOBER" | "NOVEMBER" | "DECEMBER")?
646
+ },
647
+ ]?,
648
+ patching_mode: ("ROLLING" | "NONROLLING")?,
649
+ preference: ("NO_PREFERENCE" | "CUSTOM_PREFERENCE")?,
650
+ skip_ru: bool?,
651
+ weeks_of_month: Array[::Integer]?
652
+ }
653
+ ) -> _UpdateCloudExadataInfrastructureResponseSuccess
654
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCloudExadataInfrastructureResponseSuccess
655
+
656
+ interface _UpdateOdbNetworkResponseSuccess
657
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOdbNetworkOutput]
658
+ def display_name: () -> ::String
659
+ def status: () -> ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
660
+ def status_reason: () -> ::String
661
+ def odb_network_id: () -> ::String
662
+ end
663
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#update_odb_network-instance_method
664
+ def update_odb_network: (
665
+ odb_network_id: ::String,
666
+ ?display_name: ::String,
667
+ ?peered_cidrs_to_be_added: Array[::String],
668
+ ?peered_cidrs_to_be_removed: Array[::String],
669
+ ?s3_access: ("ENABLED" | "DISABLED"),
670
+ ?zero_etl_access: ("ENABLED" | "DISABLED"),
671
+ ?s3_policy_document: ::String
672
+ ) -> _UpdateOdbNetworkResponseSuccess
673
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOdbNetworkResponseSuccess
674
+ end
675
+ end
676
+ end
677
+