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.
@@ -0,0 +1,2969 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ require 'seahorse/client/plugins/content_length'
11
+ require 'aws-sdk-core/plugins/credentials_configuration'
12
+ require 'aws-sdk-core/plugins/logging'
13
+ require 'aws-sdk-core/plugins/param_converter'
14
+ require 'aws-sdk-core/plugins/param_validator'
15
+ require 'aws-sdk-core/plugins/user_agent'
16
+ require 'aws-sdk-core/plugins/helpful_socket_errors'
17
+ require 'aws-sdk-core/plugins/retry_errors'
18
+ require 'aws-sdk-core/plugins/global_configuration'
19
+ require 'aws-sdk-core/plugins/regional_endpoint'
20
+ require 'aws-sdk-core/plugins/endpoint_discovery'
21
+ require 'aws-sdk-core/plugins/endpoint_pattern'
22
+ require 'aws-sdk-core/plugins/response_paging'
23
+ require 'aws-sdk-core/plugins/stub_responses'
24
+ require 'aws-sdk-core/plugins/idempotency_token'
25
+ require 'aws-sdk-core/plugins/invocation_id'
26
+ require 'aws-sdk-core/plugins/jsonvalue_converter'
27
+ require 'aws-sdk-core/plugins/client_metrics_plugin'
28
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin'
29
+ require 'aws-sdk-core/plugins/transfer_encoding'
30
+ require 'aws-sdk-core/plugins/http_checksum'
31
+ require 'aws-sdk-core/plugins/checksum_algorithm'
32
+ require 'aws-sdk-core/plugins/request_compression'
33
+ require 'aws-sdk-core/plugins/defaults_mode'
34
+ require 'aws-sdk-core/plugins/recursion_detection'
35
+ require 'aws-sdk-core/plugins/telemetry'
36
+ require 'aws-sdk-core/plugins/sign'
37
+ require 'aws-sdk-core/plugins/protocols/json_rpc'
38
+
39
+ module Aws::Odb
40
+ # An API client for Odb. To construct a client, you need to configure a `:region` and `:credentials`.
41
+ #
42
+ # client = Aws::Odb::Client.new(
43
+ # region: region_name,
44
+ # credentials: credentials,
45
+ # # ...
46
+ # )
47
+ #
48
+ # For details on configuring region and credentials see
49
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
50
+ #
51
+ # See {#initialize} for a full list of supported configuration options.
52
+ class Client < Seahorse::Client::Base
53
+
54
+ include Aws::ClientStubs
55
+
56
+ @identifier = :odb
57
+
58
+ set_api(ClientApi::API)
59
+
60
+ add_plugin(Seahorse::Client::Plugins::ContentLength)
61
+ add_plugin(Aws::Plugins::CredentialsConfiguration)
62
+ add_plugin(Aws::Plugins::Logging)
63
+ add_plugin(Aws::Plugins::ParamConverter)
64
+ add_plugin(Aws::Plugins::ParamValidator)
65
+ add_plugin(Aws::Plugins::UserAgent)
66
+ add_plugin(Aws::Plugins::HelpfulSocketErrors)
67
+ add_plugin(Aws::Plugins::RetryErrors)
68
+ add_plugin(Aws::Plugins::GlobalConfiguration)
69
+ add_plugin(Aws::Plugins::RegionalEndpoint)
70
+ add_plugin(Aws::Plugins::EndpointDiscovery)
71
+ add_plugin(Aws::Plugins::EndpointPattern)
72
+ add_plugin(Aws::Plugins::ResponsePaging)
73
+ add_plugin(Aws::Plugins::StubResponses)
74
+ add_plugin(Aws::Plugins::IdempotencyToken)
75
+ add_plugin(Aws::Plugins::InvocationId)
76
+ add_plugin(Aws::Plugins::JsonvalueConverter)
77
+ add_plugin(Aws::Plugins::ClientMetricsPlugin)
78
+ add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
79
+ add_plugin(Aws::Plugins::TransferEncoding)
80
+ add_plugin(Aws::Plugins::HttpChecksum)
81
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
82
+ add_plugin(Aws::Plugins::RequestCompression)
83
+ add_plugin(Aws::Plugins::DefaultsMode)
84
+ add_plugin(Aws::Plugins::RecursionDetection)
85
+ add_plugin(Aws::Plugins::Telemetry)
86
+ add_plugin(Aws::Plugins::Sign)
87
+ add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
+ add_plugin(Aws::Odb::Plugins::Endpoints)
89
+
90
+ # @overload initialize(options)
91
+ # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
97
+ # @option options [required, Aws::CredentialProvider] :credentials
98
+ # Your AWS credentials. This can be an instance of any one of the
99
+ # following classes:
100
+ #
101
+ # * `Aws::Credentials` - Used for configuring static, non-refreshing
102
+ # credentials.
103
+ #
104
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
105
+ # shared file, such as `~/.aws/config`.
106
+ #
107
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ #
109
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
110
+ # assume a role after providing credentials via the web.
111
+ #
112
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
113
+ # access token generated from `aws login`.
114
+ #
115
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
116
+ # process that outputs to stdout.
117
+ #
118
+ # * `Aws::InstanceProfileCredentials` - Used for loading credentials
119
+ # from an EC2 IMDS on an EC2 instance.
120
+ #
121
+ # * `Aws::ECSCredentials` - Used for loading credentials from
122
+ # instances running in ECS.
123
+ #
124
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
125
+ # from the Cognito Identity service.
126
+ #
127
+ # When `:credentials` are not configured directly, the following
128
+ # locations will be searched for credentials:
129
+ #
130
+ # * `Aws.config[:credentials]`
131
+ # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
+ # `:account_id` options.
133
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
+ # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
135
+ # * `~/.aws/credentials`
136
+ # * `~/.aws/config`
137
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
+ # are very aggressive. Construct and pass an instance of
139
+ # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
+ # enable retries and extended timeouts. Instance profile credential
141
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
+ # to true.
143
+ #
144
+ # @option options [required, String] :region
145
+ # The AWS region to connect to. The configured `:region` is
146
+ # used to determine the service `:endpoint`. When not passed,
147
+ # a default `:region` is searched for in the following locations:
148
+ #
149
+ # * `Aws.config[:region]`
150
+ # * `ENV['AWS_REGION']`
151
+ # * `ENV['AMAZON_REGION']`
152
+ # * `ENV['AWS_DEFAULT_REGION']`
153
+ # * `~/.aws/credentials`
154
+ # * `~/.aws/config`
155
+ #
156
+ # @option options [String] :access_key_id
157
+ #
158
+ # @option options [String] :account_id
159
+ #
160
+ # @option options [Boolean] :active_endpoint_cache (false)
161
+ # When set to `true`, a thread polling for endpoints will be running in
162
+ # the background every 60 secs (default). Defaults to `false`.
163
+ #
164
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
165
+ # Used only in `adaptive` retry mode. When true, the request will sleep
166
+ # until there is sufficent client side capacity to retry the request.
167
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
+ # not retry instead of sleeping.
169
+ #
170
+ # @option options [Boolean] :client_side_monitoring (false)
171
+ # When `true`, client-side metrics will be collected for all API requests from
172
+ # this client.
173
+ #
174
+ # @option options [String] :client_side_monitoring_client_id ("")
175
+ # Allows you to provide an identifier for this client which will be attached to
176
+ # all generated client side metrics. Defaults to an empty string.
177
+ #
178
+ # @option options [String] :client_side_monitoring_host ("127.0.0.1")
179
+ # Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client
180
+ # side monitoring agent is running on, where client metrics will be published via UDP.
181
+ #
182
+ # @option options [Integer] :client_side_monitoring_port (31000)
183
+ # Required for publishing client metrics. The port that the client side monitoring
184
+ # agent is running on, where client metrics will be published via UDP.
185
+ #
186
+ # @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
187
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
188
+ # will use the Client Side Monitoring Agent Publisher.
189
+ #
190
+ # @option options [Boolean] :convert_params (true)
191
+ # When `true`, an attempt is made to coerce request parameters into
192
+ # the required types.
193
+ #
194
+ # @option options [Boolean] :correct_clock_skew (true)
195
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
196
+ # a clock skew correction and retry requests with skewed client clocks.
197
+ #
198
+ # @option options [String] :defaults_mode ("legacy")
199
+ # See {Aws::DefaultsModeConfiguration} for a list of the
200
+ # accepted modes and the configuration defaults that are included.
201
+ #
202
+ # @option options [Boolean] :disable_host_prefix_injection (false)
203
+ # When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
204
+ #
205
+ # @option options [Boolean] :disable_request_compression (false)
206
+ # When set to 'true' the request body will not be compressed
207
+ # for supported operations.
208
+ #
209
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
210
+ # Normally you should not configure the `:endpoint` option
211
+ # directly. This is normally constructed from the `:region`
212
+ # option. Configuring `:endpoint` is normally reserved for
213
+ # connecting to test or custom endpoints. The endpoint should
214
+ # be a URI formatted like:
215
+ #
216
+ # 'http://example.com'
217
+ # 'https://example.com'
218
+ # 'http://example.com:123'
219
+ #
220
+ # @option options [Integer] :endpoint_cache_max_entries (1000)
221
+ # Used for the maximum size limit of the LRU cache storing endpoints data
222
+ # for endpoint discovery enabled operations. Defaults to 1000.
223
+ #
224
+ # @option options [Integer] :endpoint_cache_max_threads (10)
225
+ # Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
226
+ #
227
+ # @option options [Integer] :endpoint_cache_poll_interval (60)
228
+ # When :endpoint_discovery and :active_endpoint_cache is enabled,
229
+ # Use this option to config the time interval in seconds for making
230
+ # requests fetching endpoints information. Defaults to 60 sec.
231
+ #
232
+ # @option options [Boolean] :endpoint_discovery (false)
233
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
234
+ #
235
+ # @option options [Boolean] :ignore_configured_endpoint_urls
236
+ # Setting to true disables use of endpoint URLs provided via environment
237
+ # variables and the shared configuration file.
238
+ #
239
+ # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
240
+ # The log formatter.
241
+ #
242
+ # @option options [Symbol] :log_level (:info)
243
+ # The log level to send messages to the `:logger` at.
244
+ #
245
+ # @option options [Logger] :logger
246
+ # The Logger instance to send log messages to. If this option
247
+ # is not set, logging will be disabled.
248
+ #
249
+ # @option options [Integer] :max_attempts (3)
250
+ # An integer representing the maximum number attempts that will be made for
251
+ # a single request, including the initial attempt. For example,
252
+ # setting this value to 5 will result in a request being retried up to
253
+ # 4 times. Used in `standard` and `adaptive` retry modes.
254
+ #
255
+ # @option options [String] :profile ("default")
256
+ # Used when loading credentials from the shared credentials file
257
+ # at HOME/.aws/credentials. When not specified, 'default' is used.
258
+ #
259
+ # @option options [String] :request_checksum_calculation ("when_supported")
260
+ # Determines when a checksum will be calculated for request payloads. Values are:
261
+ #
262
+ # * `when_supported` - (default) When set, a checksum will be
263
+ # calculated for all request payloads of operations modeled with the
264
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
265
+ # `requestAlgorithmMember` is modeled.
266
+ # * `when_required` - When set, a checksum will only be calculated for
267
+ # request payloads of operations modeled with the `httpChecksum` trait where
268
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
269
+ # is modeled and supplied.
270
+ #
271
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
272
+ # The minimum size in bytes that triggers compression for request
273
+ # bodies. The value must be non-negative integer value between 0
274
+ # and 10485780 bytes inclusive.
275
+ #
276
+ # @option options [String] :response_checksum_validation ("when_supported")
277
+ # Determines when checksum validation will be performed on response payloads. Values are:
278
+ #
279
+ # * `when_supported` - (default) When set, checksum validation is performed on all
280
+ # response payloads of operations modeled with the `httpChecksum` trait where
281
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
282
+ # are supported.
283
+ # * `when_required` - When set, checksum validation is not performed on
284
+ # response payloads of operations unless the checksum algorithm is supported and
285
+ # the `requestValidationModeMember` member is set to `ENABLED`.
286
+ #
287
+ # @option options [Proc] :retry_backoff
288
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
289
+ # This option is only used in the `legacy` retry mode.
290
+ #
291
+ # @option options [Float] :retry_base_delay (0.3)
292
+ # The base delay in seconds used by the default backoff function. This option
293
+ # is only used in the `legacy` retry mode.
294
+ #
295
+ # @option options [Symbol] :retry_jitter (:none)
296
+ # A delay randomiser function used by the default backoff function.
297
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
298
+ # otherwise a Proc that takes and returns a number. This option is only used
299
+ # in the `legacy` retry mode.
300
+ #
301
+ # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
302
+ #
303
+ # @option options [Integer] :retry_limit (3)
304
+ # The maximum number of times to retry failed requests. Only
305
+ # ~ 500 level server errors and certain ~ 400 level client errors
306
+ # are retried. Generally, these are throttling errors, data
307
+ # checksum errors, networking errors, timeout errors, auth errors,
308
+ # endpoint discovery, and errors from expired credentials.
309
+ # This option is only used in the `legacy` retry mode.
310
+ #
311
+ # @option options [Integer] :retry_max_delay (0)
312
+ # The maximum number of seconds to delay between retries (0 for no limit)
313
+ # used by the default backoff function. This option is only used in the
314
+ # `legacy` retry mode.
315
+ #
316
+ # @option options [String] :retry_mode ("legacy")
317
+ # Specifies which retry algorithm to use. Values are:
318
+ #
319
+ # * `legacy` - The pre-existing retry behavior. This is default value if
320
+ # no retry mode is provided.
321
+ #
322
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
323
+ # This includes support for retry quotas, which limit the number of
324
+ # unsuccessful retries a client can make.
325
+ #
326
+ # * `adaptive` - An experimental retry mode that includes all the
327
+ # functionality of `standard` mode along with automatic client side
328
+ # throttling. This is a provisional mode that may change behavior
329
+ # in the future.
330
+ #
331
+ # @option options [String] :sdk_ua_app_id
332
+ # A unique and opaque application ID that is appended to the
333
+ # User-Agent header as app/sdk_ua_app_id. It should have a
334
+ # maximum length of 50. This variable is sourced from environment
335
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
336
+ #
337
+ # @option options [String] :secret_access_key
338
+ #
339
+ # @option options [String] :session_token
340
+ #
341
+ # @option options [Array] :sigv4a_signing_region_set
342
+ # A list of regions that should be signed with SigV4a signing. When
343
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
344
+ # in the following locations:
345
+ #
346
+ # * `Aws.config[:sigv4a_signing_region_set]`
347
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
348
+ # * `~/.aws/config`
349
+ #
350
+ # @option options [Boolean] :simple_json (false)
351
+ # Disables request parameter conversion, validation, and formatting.
352
+ # Also disables response data type conversions. The request parameters
353
+ # hash must be formatted exactly as the API expects.This option is useful
354
+ # when you want to ensure the highest level of performance by avoiding
355
+ # overhead of walking request parameters and response data structures.
356
+ #
357
+ # @option options [Boolean] :stub_responses (false)
358
+ # Causes the client to return stubbed responses. By default
359
+ # fake responses are generated and returned. You can specify
360
+ # the response data to return or errors to raise by calling
361
+ # {ClientStubs#stub_responses}. See {ClientStubs} for more information.
362
+ #
363
+ # ** Please note ** When response stubbing is enabled, no HTTP
364
+ # requests are made, and retries are disabled.
365
+ #
366
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
367
+ # Allows you to provide a telemetry provider, which is used to
368
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
369
+ # will not record or emit any telemetry data. The SDK supports the
370
+ # following telemetry providers:
371
+ #
372
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
373
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
374
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
+ #
376
+ # @option options [Aws::TokenProvider] :token_provider
377
+ # A Bearer Token Provider. This can be an instance of any one of the
378
+ # following classes:
379
+ #
380
+ # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
381
+ # tokens.
382
+ #
383
+ # * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
384
+ # access token generated from `aws login`.
385
+ #
386
+ # When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
387
+ # will be used to search for tokens configured for your profile in shared configuration files.
388
+ #
389
+ # @option options [Boolean] :use_dualstack_endpoint
390
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
391
+ # will be used if available.
392
+ #
393
+ # @option options [Boolean] :use_fips_endpoint
394
+ # When set to `true`, fips compatible endpoints will be used if available.
395
+ # When a `fips` region is used, the region is normalized and this config
396
+ # is set to `true`.
397
+ #
398
+ # @option options [Boolean] :validate_params (true)
399
+ # When `true`, request parameters are validated before
400
+ # sending the request.
401
+ #
402
+ # @option options [Aws::Odb::EndpointProvider] :endpoint_provider
403
+ # The endpoint provider used to resolve endpoints. Any object that responds to
404
+ # `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
405
+ # `Aws::Odb::EndpointParameters`.
406
+ #
407
+ # @option options [Float] :http_continue_timeout (1)
408
+ # The number of seconds to wait for a 100-continue response before sending the
409
+ # request body. This option has no effect unless the request has "Expect"
410
+ # header set to "100-continue". Defaults to `nil` which disables this
411
+ # behaviour. This value can safely be set per request on the session.
412
+ #
413
+ # @option options [Float] :http_idle_timeout (5)
414
+ # The number of seconds a connection is allowed to sit idle before it
415
+ # is considered stale. Stale connections are closed and removed from the
416
+ # pool before making a request.
417
+ #
418
+ # @option options [Float] :http_open_timeout (15)
419
+ # The default number of seconds to wait for response data.
420
+ # This value can safely be set per-request on the session.
421
+ #
422
+ # @option options [URI::HTTP,String] :http_proxy
423
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
424
+ #
425
+ # @option options [Float] :http_read_timeout (60)
426
+ # The default number of seconds to wait for response data.
427
+ # This value can safely be set per-request on the session.
428
+ #
429
+ # @option options [Boolean] :http_wire_trace (false)
430
+ # When `true`, HTTP debug output will be sent to the `:logger`.
431
+ #
432
+ # @option options [Proc] :on_chunk_received
433
+ # When a Proc object is provided, it will be used as callback when each chunk
434
+ # of the response body is received. It provides three arguments: the chunk,
435
+ # the number of bytes received, and the total number of
436
+ # bytes in the response (or nil if the server did not send a `content-length`).
437
+ #
438
+ # @option options [Proc] :on_chunk_sent
439
+ # When a Proc object is provided, it will be used as callback when each chunk
440
+ # of the request body is sent. It provides three arguments: the chunk,
441
+ # the number of bytes read from the body, and the total number of
442
+ # bytes in the body.
443
+ #
444
+ # @option options [Boolean] :raise_response_errors (true)
445
+ # When `true`, response errors are raised.
446
+ #
447
+ # @option options [String] :ssl_ca_bundle
448
+ # Full path to the SSL certificate authority bundle file that should be used when
449
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
450
+ # `:ssl_ca_directory` the the system default will be used if available.
451
+ #
452
+ # @option options [String] :ssl_ca_directory
453
+ # Full path of the directory that contains the unbundled SSL certificate
454
+ # authority files for verifying peer certificates. If you do
455
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
456
+ # default will be used if available.
457
+ #
458
+ # @option options [String] :ssl_ca_store
459
+ # Sets the X509::Store to verify peer certificate.
460
+ #
461
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
462
+ # Sets a client certificate when creating http connections.
463
+ #
464
+ # @option options [OpenSSL::PKey] :ssl_key
465
+ # Sets a client key when creating http connections.
466
+ #
467
+ # @option options [Float] :ssl_timeout
468
+ # Sets the SSL timeout in seconds
469
+ #
470
+ # @option options [Boolean] :ssl_verify_peer (true)
471
+ # When `true`, SSL peer certificates are verified when establishing a connection.
472
+ #
473
+ def initialize(*args)
474
+ super
475
+ end
476
+
477
+ # @!group API Operations
478
+
479
+ # Registers the Amazon Web Services Marketplace token for your Amazon
480
+ # Web Services account to activate your Oracle Database@Amazon Web
481
+ # Services subscription.
482
+ #
483
+ # @option params [required, String] :marketplace_registration_token
484
+ # The registration token that's generated by Amazon Web Services
485
+ # Marketplace and sent to Oracle Database@Amazon Web Services.
486
+ #
487
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
488
+ #
489
+ # @example Request syntax with placeholder values
490
+ #
491
+ # resp = client.accept_marketplace_registration({
492
+ # marketplace_registration_token: "String", # required
493
+ # })
494
+ #
495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AcceptMarketplaceRegistration AWS API Documentation
496
+ #
497
+ # @overload accept_marketplace_registration(params = {})
498
+ # @param [Hash] params ({})
499
+ def accept_marketplace_registration(params = {}, options = {})
500
+ req = build_request(:accept_marketplace_registration, params)
501
+ req.send_request(options)
502
+ end
503
+
504
+ # Creates a new Autonomous VM cluster in the specified Exadata
505
+ # infrastructure.
506
+ #
507
+ # @option params [required, String] :cloud_exadata_infrastructure_id
508
+ # The unique identifier of the Exadata infrastructure where the VM
509
+ # cluster will be created.
510
+ #
511
+ # @option params [required, String] :odb_network_id
512
+ # The unique identifier of the ODB network to be used for the VM
513
+ # cluster.
514
+ #
515
+ # @option params [required, String] :display_name
516
+ # The display name for the Autonomous VM cluster. The name does not need
517
+ # to be unique.
518
+ #
519
+ # @option params [String] :client_token
520
+ # A client-provided token to ensure idempotency of the request.
521
+ #
522
+ # **A suitable default value is auto-generated.** You should normally
523
+ # not need to pass this option.**
524
+ #
525
+ # @option params [required, Float] :autonomous_data_storage_size_in_t_bs
526
+ # The data disk group size to be allocated for Autonomous Databases, in
527
+ # terabytes (TB).
528
+ #
529
+ # @option params [required, Integer] :cpu_core_count_per_node
530
+ # The number of CPU cores to be enabled per VM cluster node.
531
+ #
532
+ # @option params [Array<String>] :db_servers
533
+ # The list of database servers to be used for the Autonomous VM cluster.
534
+ #
535
+ # @option params [String] :description
536
+ # A user-provided description of the Autonomous VM cluster.
537
+ #
538
+ # @option params [Boolean] :is_mtls_enabled_vm_cluster
539
+ # Specifies whether to enable mutual TLS (mTLS) authentication for the
540
+ # Autonomous VM cluster.
541
+ #
542
+ # @option params [String] :license_model
543
+ # The Oracle license model to apply to the Autonomous VM cluster.
544
+ #
545
+ # @option params [Types::MaintenanceWindow] :maintenance_window
546
+ # The scheduling details for the maintenance window. Patching and system
547
+ # updates take place during the maintenance window.
548
+ #
549
+ # @option params [required, Integer] :memory_per_oracle_compute_unit_in_g_bs
550
+ # The amount of memory to be allocated per OCPU, in GB.
551
+ #
552
+ # @option params [Integer] :scan_listener_port_non_tls
553
+ # The SCAN listener port for non-TLS (TCP) protocol.
554
+ #
555
+ # @option params [Integer] :scan_listener_port_tls
556
+ # The SCAN listener port for TLS (TCP) protocol.
557
+ #
558
+ # @option params [Hash<String,String>] :tags
559
+ # Free-form tags for this resource. Each tag is a key-value pair with no
560
+ # predefined name, type, or namespace.
561
+ #
562
+ # @option params [String] :time_zone
563
+ # The time zone to use for the Autonomous VM cluster.
564
+ #
565
+ # @option params [required, Integer] :total_container_databases
566
+ # The total number of Autonomous CDBs that you can create in the
567
+ # Autonomous VM cluster.
568
+ #
569
+ # @return [Types::CreateCloudAutonomousVmClusterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
570
+ #
571
+ # * {Types::CreateCloudAutonomousVmClusterOutput#display_name #display_name} => String
572
+ # * {Types::CreateCloudAutonomousVmClusterOutput#status #status} => String
573
+ # * {Types::CreateCloudAutonomousVmClusterOutput#status_reason #status_reason} => String
574
+ # * {Types::CreateCloudAutonomousVmClusterOutput#cloud_autonomous_vm_cluster_id #cloud_autonomous_vm_cluster_id} => String
575
+ #
576
+ # @example Request syntax with placeholder values
577
+ #
578
+ # resp = client.create_cloud_autonomous_vm_cluster({
579
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
580
+ # odb_network_id: "ResourceIdOrArn", # required
581
+ # display_name: "ResourceDisplayName", # required
582
+ # client_token: "CreateCloudAutonomousVmClusterInputClientTokenString",
583
+ # autonomous_data_storage_size_in_t_bs: 1.0, # required
584
+ # cpu_core_count_per_node: 1, # required
585
+ # db_servers: ["String"],
586
+ # description: "CreateCloudAutonomousVmClusterInputDescriptionString",
587
+ # is_mtls_enabled_vm_cluster: false,
588
+ # license_model: "BRING_YOUR_OWN_LICENSE", # accepts BRING_YOUR_OWN_LICENSE, LICENSE_INCLUDED
589
+ # maintenance_window: {
590
+ # custom_action_timeout_in_mins: 1,
591
+ # days_of_week: [
592
+ # {
593
+ # name: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
594
+ # },
595
+ # ],
596
+ # hours_of_day: [1],
597
+ # is_custom_action_timeout_enabled: false,
598
+ # lead_time_in_weeks: 1,
599
+ # months: [
600
+ # {
601
+ # name: "JANUARY", # accepts JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER
602
+ # },
603
+ # ],
604
+ # patching_mode: "ROLLING", # accepts ROLLING, NONROLLING
605
+ # preference: "NO_PREFERENCE", # accepts NO_PREFERENCE, CUSTOM_PREFERENCE
606
+ # skip_ru: false,
607
+ # weeks_of_month: [1],
608
+ # },
609
+ # memory_per_oracle_compute_unit_in_g_bs: 1, # required
610
+ # scan_listener_port_non_tls: 1,
611
+ # scan_listener_port_tls: 1,
612
+ # tags: {
613
+ # "TagKey" => "TagValue",
614
+ # },
615
+ # time_zone: "CreateCloudAutonomousVmClusterInputTimeZoneString",
616
+ # total_container_databases: 1, # required
617
+ # })
618
+ #
619
+ # @example Response structure
620
+ #
621
+ # resp.display_name #=> String
622
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
623
+ # resp.status_reason #=> String
624
+ # resp.cloud_autonomous_vm_cluster_id #=> String
625
+ #
626
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CreateCloudAutonomousVmCluster AWS API Documentation
627
+ #
628
+ # @overload create_cloud_autonomous_vm_cluster(params = {})
629
+ # @param [Hash] params ({})
630
+ def create_cloud_autonomous_vm_cluster(params = {}, options = {})
631
+ req = build_request(:create_cloud_autonomous_vm_cluster, params)
632
+ req.send_request(options)
633
+ end
634
+
635
+ # Creates an Exadata infrastructure.
636
+ #
637
+ # @option params [required, String] :display_name
638
+ # A user-friendly name for the Exadata infrastructure.
639
+ #
640
+ # @option params [required, String] :shape
641
+ # The model name of the Exadata infrastructure. For the list of valid
642
+ # model names, use the `ListDbSystemShapes` operation.
643
+ #
644
+ # @option params [String] :availability_zone
645
+ # The name of the Availability Zone (AZ) where the Exadata
646
+ # infrastructure is located.
647
+ #
648
+ # This operation requires that you specify a value for either
649
+ # `availabilityZone` or `availabilityZoneId`.
650
+ #
651
+ # Example: `us-east-1a`
652
+ #
653
+ # @option params [String] :availability_zone_id
654
+ # The AZ ID of the AZ where the Exadata infrastructure is located.
655
+ #
656
+ # This operation requires that you specify a value for either
657
+ # `availabilityZone` or `availabilityZoneId`.
658
+ #
659
+ # Example: `use1-az1`
660
+ #
661
+ # @option params [Hash<String,String>] :tags
662
+ # The list of resource tags to apply to the Exadata infrastructure.
663
+ #
664
+ # @option params [required, Integer] :compute_count
665
+ # The number of database servers for the Exadata infrastructure. Valid
666
+ # values for this parameter depend on the shape. To get information
667
+ # about the minimum and maximum values, use the `ListDbSystemShapes`
668
+ # operation.
669
+ #
670
+ # @option params [Array<Types::CustomerContact>] :customer_contacts_to_send_to_oci
671
+ # The email addresses of contacts to receive notification from Oracle
672
+ # about maintenance updates for the Exadata infrastructure.
673
+ #
674
+ # @option params [Types::MaintenanceWindow] :maintenance_window
675
+ # The maintenance window configuration for the Exadata Cloud
676
+ # infrastructure.
677
+ #
678
+ # This allows you to define when maintenance operations such as patching
679
+ # and updates can be performed on the infrastructure.
680
+ #
681
+ # @option params [required, Integer] :storage_count
682
+ # The number of storage servers to activate for this Exadata
683
+ # infrastructure. Valid values for this parameter depend on the shape.
684
+ # To get information about the minimum and maximum values, use the
685
+ # `ListDbSystemShapes` operation.
686
+ #
687
+ # @option params [String] :client_token
688
+ # A unique, case-sensitive identifier that you provide to ensure the
689
+ # idempotency of the request. If you don't specify a client token, the
690
+ # Amazon Web Services SDK automatically generates a client token and
691
+ # uses it for the request to ensure idempotency. The client token is
692
+ # valid for up to 24 hours after it's first used.
693
+ #
694
+ # **A suitable default value is auto-generated.** You should normally
695
+ # not need to pass this option.**
696
+ #
697
+ # @option params [String] :database_server_type
698
+ # The database server model type of the Exadata infrastructure. For the
699
+ # list of valid model names, use the `ListDbSystemShapes` operation.
700
+ #
701
+ # @option params [String] :storage_server_type
702
+ # The storage server model type of the Exadata infrastructure. For the
703
+ # list of valid model names, use the `ListDbSystemShapes` operation.
704
+ #
705
+ # @return [Types::CreateCloudExadataInfrastructureOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
706
+ #
707
+ # * {Types::CreateCloudExadataInfrastructureOutput#display_name #display_name} => String
708
+ # * {Types::CreateCloudExadataInfrastructureOutput#status #status} => String
709
+ # * {Types::CreateCloudExadataInfrastructureOutput#status_reason #status_reason} => String
710
+ # * {Types::CreateCloudExadataInfrastructureOutput#cloud_exadata_infrastructure_id #cloud_exadata_infrastructure_id} => String
711
+ #
712
+ # @example Request syntax with placeholder values
713
+ #
714
+ # resp = client.create_cloud_exadata_infrastructure({
715
+ # display_name: "ResourceDisplayName", # required
716
+ # shape: "CreateCloudExadataInfrastructureInputShapeString", # required
717
+ # availability_zone: "CreateCloudExadataInfrastructureInputAvailabilityZoneString",
718
+ # availability_zone_id: "CreateCloudExadataInfrastructureInputAvailabilityZoneIdString",
719
+ # tags: {
720
+ # "TagKey" => "TagValue",
721
+ # },
722
+ # compute_count: 1, # required
723
+ # customer_contacts_to_send_to_oci: [
724
+ # {
725
+ # email: "CustomerContactEmailString",
726
+ # },
727
+ # ],
728
+ # maintenance_window: {
729
+ # custom_action_timeout_in_mins: 1,
730
+ # days_of_week: [
731
+ # {
732
+ # name: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
733
+ # },
734
+ # ],
735
+ # hours_of_day: [1],
736
+ # is_custom_action_timeout_enabled: false,
737
+ # lead_time_in_weeks: 1,
738
+ # months: [
739
+ # {
740
+ # name: "JANUARY", # accepts JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER
741
+ # },
742
+ # ],
743
+ # patching_mode: "ROLLING", # accepts ROLLING, NONROLLING
744
+ # preference: "NO_PREFERENCE", # accepts NO_PREFERENCE, CUSTOM_PREFERENCE
745
+ # skip_ru: false,
746
+ # weeks_of_month: [1],
747
+ # },
748
+ # storage_count: 1, # required
749
+ # client_token: "CreateCloudExadataInfrastructureInputClientTokenString",
750
+ # database_server_type: "CreateCloudExadataInfrastructureInputDatabaseServerTypeString",
751
+ # storage_server_type: "CreateCloudExadataInfrastructureInputStorageServerTypeString",
752
+ # })
753
+ #
754
+ # @example Response structure
755
+ #
756
+ # resp.display_name #=> String
757
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
758
+ # resp.status_reason #=> String
759
+ # resp.cloud_exadata_infrastructure_id #=> String
760
+ #
761
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CreateCloudExadataInfrastructure AWS API Documentation
762
+ #
763
+ # @overload create_cloud_exadata_infrastructure(params = {})
764
+ # @param [Hash] params ({})
765
+ def create_cloud_exadata_infrastructure(params = {}, options = {})
766
+ req = build_request(:create_cloud_exadata_infrastructure, params)
767
+ req.send_request(options)
768
+ end
769
+
770
+ # Creates a VM cluster on the specified Exadata infrastructure.
771
+ #
772
+ # @option params [required, String] :cloud_exadata_infrastructure_id
773
+ # The unique identifier of the Exadata infrastructure for this VM
774
+ # cluster.
775
+ #
776
+ # @option params [required, Integer] :cpu_core_count
777
+ # The number of CPU cores to enable on the VM cluster.
778
+ #
779
+ # @option params [required, String] :display_name
780
+ # A user-friendly name for the VM cluster.
781
+ #
782
+ # @option params [required, String] :gi_version
783
+ # A valid software version of Oracle Grid Infrastructure (GI). To get
784
+ # the list of valid values, use the `ListGiVersions` operation and
785
+ # specify the shape of the Exadata infrastructure.
786
+ #
787
+ # Example: `19.0.0.0`
788
+ #
789
+ # @option params [required, String] :hostname
790
+ # The host name for the VM cluster.
791
+ #
792
+ # Constraints:
793
+ #
794
+ # * Can't be "localhost" or "hostname".
795
+ #
796
+ # * Can't contain "-version".
797
+ #
798
+ # * The maximum length of the combined hostname and domain is 63
799
+ # characters.
800
+ #
801
+ # * The hostname must be unique within the subnet.
802
+ #
803
+ # @option params [required, Array<String>] :ssh_public_keys
804
+ # The public key portion of one or more key pairs used for SSH access to
805
+ # the VM cluster.
806
+ #
807
+ # @option params [required, String] :odb_network_id
808
+ # The unique identifier of the ODB network for the VM cluster.
809
+ #
810
+ # @option params [String] :cluster_name
811
+ # A name for the Grid Infrastructure cluster. The name isn't case
812
+ # sensitive.
813
+ #
814
+ # @option params [Types::DataCollectionOptions] :data_collection_options
815
+ # The set of preferences for the various diagnostic collection options
816
+ # for the VM cluster.
817
+ #
818
+ # @option params [Float] :data_storage_size_in_t_bs
819
+ # The size of the data disk group, in terabytes (TBs), to allocate for
820
+ # the VM cluster.
821
+ #
822
+ # @option params [Integer] :db_node_storage_size_in_g_bs
823
+ # The amount of local node storage, in gigabytes (GBs), to allocate for
824
+ # the VM cluster.
825
+ #
826
+ # @option params [Array<String>] :db_servers
827
+ # The list of database servers for the VM cluster.
828
+ #
829
+ # @option params [Hash<String,String>] :tags
830
+ # The list of resource tags to apply to the VM cluster.
831
+ #
832
+ # @option params [Boolean] :is_local_backup_enabled
833
+ # Specifies whether to enable database backups to local Exadata storage
834
+ # for the VM cluster.
835
+ #
836
+ # @option params [Boolean] :is_sparse_diskgroup_enabled
837
+ # Specifies whether to create a sparse disk group for the VM cluster.
838
+ #
839
+ # @option params [String] :license_model
840
+ # The Oracle license model to apply to the VM cluster.
841
+ #
842
+ # Default: `LICENSE_INCLUDED`
843
+ #
844
+ # @option params [Integer] :memory_size_in_g_bs
845
+ # The amount of memory, in gigabytes (GBs), to allocate for the VM
846
+ # cluster.
847
+ #
848
+ # @option params [String] :system_version
849
+ # The version of the operating system of the image for the VM cluster.
850
+ #
851
+ # @option params [String] :time_zone
852
+ # The time zone for the VM cluster. For a list of valid values for time
853
+ # zone, you can check the options in the console.
854
+ #
855
+ # Default: UTC
856
+ #
857
+ # @option params [String] :client_token
858
+ # A unique, case-sensitive identifier that you provide to ensure the
859
+ # idempotency of the request. If you don't specify a client token, the
860
+ # Amazon Web Services SDK automatically generates a client token and
861
+ # uses it for the request to ensure idempotency. The client token is
862
+ # valid for up to 24 hours after it's first used.
863
+ #
864
+ # **A suitable default value is auto-generated.** You should normally
865
+ # not need to pass this option.**
866
+ #
867
+ # @option params [Integer] :scan_listener_port_tcp
868
+ # The port number for TCP connections to the single client access name
869
+ # (SCAN) listener.
870
+ #
871
+ # Valid values: `1024–8999` with the following exceptions: `2484`,
872
+ # `6100`, `6200`, `7060`, `7070`, `7085`, and `7879`
873
+ #
874
+ # Default: `1521`
875
+ #
876
+ # @return [Types::CreateCloudVmClusterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
877
+ #
878
+ # * {Types::CreateCloudVmClusterOutput#display_name #display_name} => String
879
+ # * {Types::CreateCloudVmClusterOutput#status #status} => String
880
+ # * {Types::CreateCloudVmClusterOutput#status_reason #status_reason} => String
881
+ # * {Types::CreateCloudVmClusterOutput#cloud_vm_cluster_id #cloud_vm_cluster_id} => String
882
+ #
883
+ # @example Request syntax with placeholder values
884
+ #
885
+ # resp = client.create_cloud_vm_cluster({
886
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
887
+ # cpu_core_count: 1, # required
888
+ # display_name: "ResourceDisplayName", # required
889
+ # gi_version: "CreateCloudVmClusterInputGiVersionString", # required
890
+ # hostname: "CreateCloudVmClusterInputHostnameString", # required
891
+ # ssh_public_keys: ["String"], # required
892
+ # odb_network_id: "ResourceIdOrArn", # required
893
+ # cluster_name: "CreateCloudVmClusterInputClusterNameString",
894
+ # data_collection_options: {
895
+ # is_diagnostics_events_enabled: false,
896
+ # is_health_monitoring_enabled: false,
897
+ # is_incident_logs_enabled: false,
898
+ # },
899
+ # data_storage_size_in_t_bs: 1.0,
900
+ # db_node_storage_size_in_g_bs: 1,
901
+ # db_servers: ["String"],
902
+ # tags: {
903
+ # "TagKey" => "TagValue",
904
+ # },
905
+ # is_local_backup_enabled: false,
906
+ # is_sparse_diskgroup_enabled: false,
907
+ # license_model: "BRING_YOUR_OWN_LICENSE", # accepts BRING_YOUR_OWN_LICENSE, LICENSE_INCLUDED
908
+ # memory_size_in_g_bs: 1,
909
+ # system_version: "CreateCloudVmClusterInputSystemVersionString",
910
+ # time_zone: "CreateCloudVmClusterInputTimeZoneString",
911
+ # client_token: "CreateCloudVmClusterInputClientTokenString",
912
+ # scan_listener_port_tcp: 1,
913
+ # })
914
+ #
915
+ # @example Response structure
916
+ #
917
+ # resp.display_name #=> String
918
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
919
+ # resp.status_reason #=> String
920
+ # resp.cloud_vm_cluster_id #=> String
921
+ #
922
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CreateCloudVmCluster AWS API Documentation
923
+ #
924
+ # @overload create_cloud_vm_cluster(params = {})
925
+ # @param [Hash] params ({})
926
+ def create_cloud_vm_cluster(params = {}, options = {})
927
+ req = build_request(:create_cloud_vm_cluster, params)
928
+ req.send_request(options)
929
+ end
930
+
931
+ # Creates an ODB network.
932
+ #
933
+ # @option params [required, String] :display_name
934
+ # A user-friendly name for the ODB network.
935
+ #
936
+ # @option params [String] :availability_zone
937
+ # The Amazon Web Services Availability Zone (AZ) where the ODB network
938
+ # is located.
939
+ #
940
+ # This operation requires that you specify a value for either
941
+ # `availabilityZone` or `availabilityZoneId`.
942
+ #
943
+ # @option params [String] :availability_zone_id
944
+ # The AZ ID of the AZ where the ODB network is located.
945
+ #
946
+ # This operation requires that you specify a value for either
947
+ # `availabilityZone` or `availabilityZoneId`.
948
+ #
949
+ # @option params [required, String] :client_subnet_cidr
950
+ # The CIDR range of the client subnet for the ODB network.
951
+ #
952
+ # Constraints:
953
+ #
954
+ # * Must not overlap with the CIDR range of the backup subnet.
955
+ #
956
+ # * Must not overlap with the CIDR ranges of the VPCs that are connected
957
+ # to the ODB network.
958
+ #
959
+ # * Must not use the following CIDR ranges that are reserved by OCI:
960
+ #
961
+ # * `100.106.0.0/16` and `100.107.0.0/16`
962
+ #
963
+ # * `169.254.0.0/16`
964
+ #
965
+ # * `224.0.0.0 - 239.255.255.255`
966
+ #
967
+ # * `240.0.0.0 - 255.255.255.255`
968
+ #
969
+ # @option params [String] :backup_subnet_cidr
970
+ # The CIDR range of the backup subnet for the ODB network.
971
+ #
972
+ # Constraints:
973
+ #
974
+ # * Must not overlap with the CIDR range of the client subnet.
975
+ #
976
+ # * Must not overlap with the CIDR ranges of the VPCs that are connected
977
+ # to the ODB network.
978
+ #
979
+ # * Must not use the following CIDR ranges that are reserved by OCI:
980
+ #
981
+ # * `100.106.0.0/16` and `100.107.0.0/16`
982
+ #
983
+ # * `169.254.0.0/16`
984
+ #
985
+ # * `224.0.0.0 - 239.255.255.255`
986
+ #
987
+ # * `240.0.0.0 - 255.255.255.255`
988
+ #
989
+ # @option params [String] :custom_domain_name
990
+ # The domain name to use for the resources in the ODB network.
991
+ #
992
+ # @option params [String] :default_dns_prefix
993
+ # The DNS prefix to the default DNS domain name. The default DNS domain
994
+ # name is oraclevcn.com.
995
+ #
996
+ # @option params [String] :client_token
997
+ # A unique, case-sensitive identifier that you provide to ensure the
998
+ # idempotency of the request. If you don't specify a client token, the
999
+ # Amazon Web Services SDK automatically generates a client token and
1000
+ # uses it for the request to ensure idempotency. The client token is
1001
+ # valid for up to 24 hours after it's first used.
1002
+ #
1003
+ # **A suitable default value is auto-generated.** You should normally
1004
+ # not need to pass this option.**
1005
+ #
1006
+ # @option params [String] :s3_access
1007
+ # Specifies the configuration for Amazon S3 access from the ODB network.
1008
+ #
1009
+ # @option params [String] :zero_etl_access
1010
+ # Specifies the configuration for Zero-ETL access from the ODB network.
1011
+ #
1012
+ # @option params [String] :s3_policy_document
1013
+ # Specifies the endpoint policy for Amazon S3 access from the ODB
1014
+ # network.
1015
+ #
1016
+ # @option params [Hash<String,String>] :tags
1017
+ # The list of resource tags to apply to the ODB network.
1018
+ #
1019
+ # @return [Types::CreateOdbNetworkOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1020
+ #
1021
+ # * {Types::CreateOdbNetworkOutput#display_name #display_name} => String
1022
+ # * {Types::CreateOdbNetworkOutput#status #status} => String
1023
+ # * {Types::CreateOdbNetworkOutput#status_reason #status_reason} => String
1024
+ # * {Types::CreateOdbNetworkOutput#odb_network_id #odb_network_id} => String
1025
+ #
1026
+ # @example Request syntax with placeholder values
1027
+ #
1028
+ # resp = client.create_odb_network({
1029
+ # display_name: "ResourceDisplayName", # required
1030
+ # availability_zone: "CreateOdbNetworkInputAvailabilityZoneString",
1031
+ # availability_zone_id: "CreateOdbNetworkInputAvailabilityZoneIdString",
1032
+ # client_subnet_cidr: "CreateOdbNetworkInputClientSubnetCidrString", # required
1033
+ # backup_subnet_cidr: "CreateOdbNetworkInputBackupSubnetCidrString",
1034
+ # custom_domain_name: "CreateOdbNetworkInputCustomDomainNameString",
1035
+ # default_dns_prefix: "CreateOdbNetworkInputDefaultDnsPrefixString",
1036
+ # client_token: "CreateOdbNetworkInputClientTokenString",
1037
+ # s3_access: "ENABLED", # accepts ENABLED, DISABLED
1038
+ # zero_etl_access: "ENABLED", # accepts ENABLED, DISABLED
1039
+ # s3_policy_document: "PolicyDocument",
1040
+ # tags: {
1041
+ # "TagKey" => "TagValue",
1042
+ # },
1043
+ # })
1044
+ #
1045
+ # @example Response structure
1046
+ #
1047
+ # resp.display_name #=> String
1048
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1049
+ # resp.status_reason #=> String
1050
+ # resp.odb_network_id #=> String
1051
+ #
1052
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CreateOdbNetwork AWS API Documentation
1053
+ #
1054
+ # @overload create_odb_network(params = {})
1055
+ # @param [Hash] params ({})
1056
+ def create_odb_network(params = {}, options = {})
1057
+ req = build_request(:create_odb_network, params)
1058
+ req.send_request(options)
1059
+ end
1060
+
1061
+ # Creates a peering connection between an ODB network and either another
1062
+ # ODB network or a customer-owned VPC.
1063
+ #
1064
+ # A peering connection enables private connectivity between the networks
1065
+ # for application-tier communication.
1066
+ #
1067
+ # @option params [required, String] :odb_network_id
1068
+ # The unique identifier of the ODB network that initiates the peering
1069
+ # connection.
1070
+ #
1071
+ # @option params [required, String] :peer_network_id
1072
+ # The unique identifier of the peer network. This can be either a VPC ID
1073
+ # or another ODB network ID.
1074
+ #
1075
+ # @option params [String] :display_name
1076
+ # The display name for the ODB peering connection.
1077
+ #
1078
+ # @option params [String] :client_token
1079
+ # The client token for the ODB peering connection request.
1080
+ #
1081
+ # Constraints:
1082
+ #
1083
+ # * Must be unique for each request.
1084
+ #
1085
+ # ^
1086
+ #
1087
+ # **A suitable default value is auto-generated.** You should normally
1088
+ # not need to pass this option.**
1089
+ #
1090
+ # @option params [Hash<String,String>] :tags
1091
+ # The tags to assign to the ODB peering connection.
1092
+ #
1093
+ # @return [Types::CreateOdbPeeringConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1094
+ #
1095
+ # * {Types::CreateOdbPeeringConnectionOutput#display_name #display_name} => String
1096
+ # * {Types::CreateOdbPeeringConnectionOutput#status #status} => String
1097
+ # * {Types::CreateOdbPeeringConnectionOutput#status_reason #status_reason} => String
1098
+ # * {Types::CreateOdbPeeringConnectionOutput#odb_peering_connection_id #odb_peering_connection_id} => String
1099
+ #
1100
+ # @example Request syntax with placeholder values
1101
+ #
1102
+ # resp = client.create_odb_peering_connection({
1103
+ # odb_network_id: "ResourceIdOrArn", # required
1104
+ # peer_network_id: "ResourceIdOrArn", # required
1105
+ # display_name: "ResourceDisplayName",
1106
+ # client_token: "CreateOdbPeeringConnectionInputClientTokenString",
1107
+ # tags: {
1108
+ # "TagKey" => "TagValue",
1109
+ # },
1110
+ # })
1111
+ #
1112
+ # @example Response structure
1113
+ #
1114
+ # resp.display_name #=> String
1115
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1116
+ # resp.status_reason #=> String
1117
+ # resp.odb_peering_connection_id #=> String
1118
+ #
1119
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CreateOdbPeeringConnection AWS API Documentation
1120
+ #
1121
+ # @overload create_odb_peering_connection(params = {})
1122
+ # @param [Hash] params ({})
1123
+ def create_odb_peering_connection(params = {}, options = {})
1124
+ req = build_request(:create_odb_peering_connection, params)
1125
+ req.send_request(options)
1126
+ end
1127
+
1128
+ # Deletes an Autonomous VM cluster.
1129
+ #
1130
+ # @option params [required, String] :cloud_autonomous_vm_cluster_id
1131
+ # The unique identifier of the Autonomous VM cluster to delete.
1132
+ #
1133
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1134
+ #
1135
+ # @example Request syntax with placeholder values
1136
+ #
1137
+ # resp = client.delete_cloud_autonomous_vm_cluster({
1138
+ # cloud_autonomous_vm_cluster_id: "ResourceId", # required
1139
+ # })
1140
+ #
1141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DeleteCloudAutonomousVmCluster AWS API Documentation
1142
+ #
1143
+ # @overload delete_cloud_autonomous_vm_cluster(params = {})
1144
+ # @param [Hash] params ({})
1145
+ def delete_cloud_autonomous_vm_cluster(params = {}, options = {})
1146
+ req = build_request(:delete_cloud_autonomous_vm_cluster, params)
1147
+ req.send_request(options)
1148
+ end
1149
+
1150
+ # Deletes the specified Exadata infrastructure. Before you use this
1151
+ # operation, make sure to delete all of the VM clusters that are hosted
1152
+ # on this Exadata infrastructure.
1153
+ #
1154
+ # @option params [required, String] :cloud_exadata_infrastructure_id
1155
+ # The unique identifier of the Exadata infrastructure to delete.
1156
+ #
1157
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1158
+ #
1159
+ # @example Request syntax with placeholder values
1160
+ #
1161
+ # resp = client.delete_cloud_exadata_infrastructure({
1162
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
1163
+ # })
1164
+ #
1165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DeleteCloudExadataInfrastructure AWS API Documentation
1166
+ #
1167
+ # @overload delete_cloud_exadata_infrastructure(params = {})
1168
+ # @param [Hash] params ({})
1169
+ def delete_cloud_exadata_infrastructure(params = {}, options = {})
1170
+ req = build_request(:delete_cloud_exadata_infrastructure, params)
1171
+ req.send_request(options)
1172
+ end
1173
+
1174
+ # Deletes the specified VM cluster.
1175
+ #
1176
+ # @option params [required, String] :cloud_vm_cluster_id
1177
+ # The unique identifier of the VM cluster to delete.
1178
+ #
1179
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1180
+ #
1181
+ # @example Request syntax with placeholder values
1182
+ #
1183
+ # resp = client.delete_cloud_vm_cluster({
1184
+ # cloud_vm_cluster_id: "ResourceId", # required
1185
+ # })
1186
+ #
1187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DeleteCloudVmCluster AWS API Documentation
1188
+ #
1189
+ # @overload delete_cloud_vm_cluster(params = {})
1190
+ # @param [Hash] params ({})
1191
+ def delete_cloud_vm_cluster(params = {}, options = {})
1192
+ req = build_request(:delete_cloud_vm_cluster, params)
1193
+ req.send_request(options)
1194
+ end
1195
+
1196
+ # Deletes the specified ODB network.
1197
+ #
1198
+ # @option params [required, String] :odb_network_id
1199
+ # The unique identifier of the ODB network to delete.
1200
+ #
1201
+ # @option params [required, Boolean] :delete_associated_resources
1202
+ # Specifies whether to delete associated OCI networking resources along
1203
+ # with the ODB network.
1204
+ #
1205
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1206
+ #
1207
+ # @example Request syntax with placeholder values
1208
+ #
1209
+ # resp = client.delete_odb_network({
1210
+ # odb_network_id: "ResourceIdOrArn", # required
1211
+ # delete_associated_resources: false, # required
1212
+ # })
1213
+ #
1214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DeleteOdbNetwork AWS API Documentation
1215
+ #
1216
+ # @overload delete_odb_network(params = {})
1217
+ # @param [Hash] params ({})
1218
+ def delete_odb_network(params = {}, options = {})
1219
+ req = build_request(:delete_odb_network, params)
1220
+ req.send_request(options)
1221
+ end
1222
+
1223
+ # Deletes an ODB peering connection.
1224
+ #
1225
+ # When you delete an ODB peering connection, the underlying VPC peering
1226
+ # connection is also deleted.
1227
+ #
1228
+ # @option params [required, String] :odb_peering_connection_id
1229
+ # The unique identifier of the ODB peering connection to delete.
1230
+ #
1231
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1232
+ #
1233
+ # @example Request syntax with placeholder values
1234
+ #
1235
+ # resp = client.delete_odb_peering_connection({
1236
+ # odb_peering_connection_id: "ResourceIdOrArn", # required
1237
+ # })
1238
+ #
1239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DeleteOdbPeeringConnection AWS API Documentation
1240
+ #
1241
+ # @overload delete_odb_peering_connection(params = {})
1242
+ # @param [Hash] params ({})
1243
+ def delete_odb_peering_connection(params = {}, options = {})
1244
+ req = build_request(:delete_odb_peering_connection, params)
1245
+ req.send_request(options)
1246
+ end
1247
+
1248
+ # Gets information about a specific Autonomous VM cluster.
1249
+ #
1250
+ # @option params [required, String] :cloud_autonomous_vm_cluster_id
1251
+ # The unique identifier of the Autonomous VM cluster to retrieve
1252
+ # information about.
1253
+ #
1254
+ # @return [Types::GetCloudAutonomousVmClusterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1255
+ #
1256
+ # * {Types::GetCloudAutonomousVmClusterOutput#cloud_autonomous_vm_cluster #cloud_autonomous_vm_cluster} => Types::CloudAutonomousVmCluster
1257
+ #
1258
+ # @example Request syntax with placeholder values
1259
+ #
1260
+ # resp = client.get_cloud_autonomous_vm_cluster({
1261
+ # cloud_autonomous_vm_cluster_id: "ResourceId", # required
1262
+ # })
1263
+ #
1264
+ # @example Response structure
1265
+ #
1266
+ # resp.cloud_autonomous_vm_cluster.cloud_autonomous_vm_cluster_id #=> String
1267
+ # resp.cloud_autonomous_vm_cluster.cloud_autonomous_vm_cluster_arn #=> String
1268
+ # resp.cloud_autonomous_vm_cluster.odb_network_id #=> String
1269
+ # resp.cloud_autonomous_vm_cluster.oci_resource_anchor_name #=> String
1270
+ # resp.cloud_autonomous_vm_cluster.percent_progress #=> Float
1271
+ # resp.cloud_autonomous_vm_cluster.display_name #=> String
1272
+ # resp.cloud_autonomous_vm_cluster.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1273
+ # resp.cloud_autonomous_vm_cluster.status_reason #=> String
1274
+ # resp.cloud_autonomous_vm_cluster.cloud_exadata_infrastructure_id #=> String
1275
+ # resp.cloud_autonomous_vm_cluster.autonomous_data_storage_percentage #=> Float
1276
+ # resp.cloud_autonomous_vm_cluster.autonomous_data_storage_size_in_t_bs #=> Float
1277
+ # resp.cloud_autonomous_vm_cluster.available_autonomous_data_storage_size_in_t_bs #=> Float
1278
+ # resp.cloud_autonomous_vm_cluster.available_container_databases #=> Integer
1279
+ # resp.cloud_autonomous_vm_cluster.available_cpus #=> Float
1280
+ # resp.cloud_autonomous_vm_cluster.compute_model #=> String, one of "ECPU", "OCPU"
1281
+ # resp.cloud_autonomous_vm_cluster.cpu_core_count #=> Integer
1282
+ # resp.cloud_autonomous_vm_cluster.cpu_core_count_per_node #=> Integer
1283
+ # resp.cloud_autonomous_vm_cluster.cpu_percentage #=> Float
1284
+ # resp.cloud_autonomous_vm_cluster.data_storage_size_in_g_bs #=> Float
1285
+ # resp.cloud_autonomous_vm_cluster.data_storage_size_in_t_bs #=> Float
1286
+ # resp.cloud_autonomous_vm_cluster.db_node_storage_size_in_g_bs #=> Integer
1287
+ # resp.cloud_autonomous_vm_cluster.db_servers #=> Array
1288
+ # resp.cloud_autonomous_vm_cluster.db_servers[0] #=> String
1289
+ # resp.cloud_autonomous_vm_cluster.description #=> String
1290
+ # resp.cloud_autonomous_vm_cluster.domain #=> String
1291
+ # resp.cloud_autonomous_vm_cluster.exadata_storage_in_t_bs_lowest_scaled_value #=> Float
1292
+ # resp.cloud_autonomous_vm_cluster.hostname #=> String
1293
+ # resp.cloud_autonomous_vm_cluster.ocid #=> String
1294
+ # resp.cloud_autonomous_vm_cluster.oci_url #=> String
1295
+ # resp.cloud_autonomous_vm_cluster.is_mtls_enabled_vm_cluster #=> Boolean
1296
+ # resp.cloud_autonomous_vm_cluster.license_model #=> String, one of "BRING_YOUR_OWN_LICENSE", "LICENSE_INCLUDED"
1297
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.custom_action_timeout_in_mins #=> Integer
1298
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.days_of_week #=> Array
1299
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.days_of_week[0].name #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
1300
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.hours_of_day #=> Array
1301
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.hours_of_day[0] #=> Integer
1302
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.is_custom_action_timeout_enabled #=> Boolean
1303
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.lead_time_in_weeks #=> Integer
1304
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.months #=> Array
1305
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.months[0].name #=> String, one of "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"
1306
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.patching_mode #=> String, one of "ROLLING", "NONROLLING"
1307
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.preference #=> String, one of "NO_PREFERENCE", "CUSTOM_PREFERENCE"
1308
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.skip_ru #=> Boolean
1309
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.weeks_of_month #=> Array
1310
+ # resp.cloud_autonomous_vm_cluster.maintenance_window.weeks_of_month[0] #=> Integer
1311
+ # resp.cloud_autonomous_vm_cluster.max_acds_lowest_scaled_value #=> Integer
1312
+ # resp.cloud_autonomous_vm_cluster.memory_per_oracle_compute_unit_in_g_bs #=> Integer
1313
+ # resp.cloud_autonomous_vm_cluster.memory_size_in_g_bs #=> Integer
1314
+ # resp.cloud_autonomous_vm_cluster.node_count #=> Integer
1315
+ # resp.cloud_autonomous_vm_cluster.non_provisionable_autonomous_container_databases #=> Integer
1316
+ # resp.cloud_autonomous_vm_cluster.provisionable_autonomous_container_databases #=> Integer
1317
+ # resp.cloud_autonomous_vm_cluster.provisioned_autonomous_container_databases #=> Integer
1318
+ # resp.cloud_autonomous_vm_cluster.provisioned_cpus #=> Float
1319
+ # resp.cloud_autonomous_vm_cluster.reclaimable_cpus #=> Float
1320
+ # resp.cloud_autonomous_vm_cluster.reserved_cpus #=> Float
1321
+ # resp.cloud_autonomous_vm_cluster.scan_listener_port_non_tls #=> Integer
1322
+ # resp.cloud_autonomous_vm_cluster.scan_listener_port_tls #=> Integer
1323
+ # resp.cloud_autonomous_vm_cluster.shape #=> String
1324
+ # resp.cloud_autonomous_vm_cluster.created_at #=> Time
1325
+ # resp.cloud_autonomous_vm_cluster.time_database_ssl_certificate_expires #=> Time
1326
+ # resp.cloud_autonomous_vm_cluster.time_ords_certificate_expires #=> Time
1327
+ # resp.cloud_autonomous_vm_cluster.time_zone #=> String
1328
+ # resp.cloud_autonomous_vm_cluster.total_container_databases #=> Integer
1329
+ #
1330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetCloudAutonomousVmCluster AWS API Documentation
1331
+ #
1332
+ # @overload get_cloud_autonomous_vm_cluster(params = {})
1333
+ # @param [Hash] params ({})
1334
+ def get_cloud_autonomous_vm_cluster(params = {}, options = {})
1335
+ req = build_request(:get_cloud_autonomous_vm_cluster, params)
1336
+ req.send_request(options)
1337
+ end
1338
+
1339
+ # Returns information about the specified Exadata infrastructure.
1340
+ #
1341
+ # @option params [required, String] :cloud_exadata_infrastructure_id
1342
+ # The unique identifier of the Exadata infrastructure.
1343
+ #
1344
+ # @return [Types::GetCloudExadataInfrastructureOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1345
+ #
1346
+ # * {Types::GetCloudExadataInfrastructureOutput#cloud_exadata_infrastructure #cloud_exadata_infrastructure} => Types::CloudExadataInfrastructure
1347
+ #
1348
+ # @example Request syntax with placeholder values
1349
+ #
1350
+ # resp = client.get_cloud_exadata_infrastructure({
1351
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
1352
+ # })
1353
+ #
1354
+ # @example Response structure
1355
+ #
1356
+ # resp.cloud_exadata_infrastructure.cloud_exadata_infrastructure_id #=> String
1357
+ # resp.cloud_exadata_infrastructure.display_name #=> String
1358
+ # resp.cloud_exadata_infrastructure.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1359
+ # resp.cloud_exadata_infrastructure.status_reason #=> String
1360
+ # resp.cloud_exadata_infrastructure.cloud_exadata_infrastructure_arn #=> String
1361
+ # resp.cloud_exadata_infrastructure.activated_storage_count #=> Integer
1362
+ # resp.cloud_exadata_infrastructure.additional_storage_count #=> Integer
1363
+ # resp.cloud_exadata_infrastructure.available_storage_size_in_g_bs #=> Integer
1364
+ # resp.cloud_exadata_infrastructure.availability_zone #=> String
1365
+ # resp.cloud_exadata_infrastructure.availability_zone_id #=> String
1366
+ # resp.cloud_exadata_infrastructure.compute_count #=> Integer
1367
+ # resp.cloud_exadata_infrastructure.cpu_count #=> Integer
1368
+ # resp.cloud_exadata_infrastructure.customer_contacts_to_send_to_oci #=> Array
1369
+ # resp.cloud_exadata_infrastructure.customer_contacts_to_send_to_oci[0].email #=> String
1370
+ # resp.cloud_exadata_infrastructure.data_storage_size_in_t_bs #=> Float
1371
+ # resp.cloud_exadata_infrastructure.db_node_storage_size_in_g_bs #=> Integer
1372
+ # resp.cloud_exadata_infrastructure.db_server_version #=> String
1373
+ # resp.cloud_exadata_infrastructure.last_maintenance_run_id #=> String
1374
+ # resp.cloud_exadata_infrastructure.maintenance_window.custom_action_timeout_in_mins #=> Integer
1375
+ # resp.cloud_exadata_infrastructure.maintenance_window.days_of_week #=> Array
1376
+ # resp.cloud_exadata_infrastructure.maintenance_window.days_of_week[0].name #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
1377
+ # resp.cloud_exadata_infrastructure.maintenance_window.hours_of_day #=> Array
1378
+ # resp.cloud_exadata_infrastructure.maintenance_window.hours_of_day[0] #=> Integer
1379
+ # resp.cloud_exadata_infrastructure.maintenance_window.is_custom_action_timeout_enabled #=> Boolean
1380
+ # resp.cloud_exadata_infrastructure.maintenance_window.lead_time_in_weeks #=> Integer
1381
+ # resp.cloud_exadata_infrastructure.maintenance_window.months #=> Array
1382
+ # resp.cloud_exadata_infrastructure.maintenance_window.months[0].name #=> String, one of "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"
1383
+ # resp.cloud_exadata_infrastructure.maintenance_window.patching_mode #=> String, one of "ROLLING", "NONROLLING"
1384
+ # resp.cloud_exadata_infrastructure.maintenance_window.preference #=> String, one of "NO_PREFERENCE", "CUSTOM_PREFERENCE"
1385
+ # resp.cloud_exadata_infrastructure.maintenance_window.skip_ru #=> Boolean
1386
+ # resp.cloud_exadata_infrastructure.maintenance_window.weeks_of_month #=> Array
1387
+ # resp.cloud_exadata_infrastructure.maintenance_window.weeks_of_month[0] #=> Integer
1388
+ # resp.cloud_exadata_infrastructure.max_cpu_count #=> Integer
1389
+ # resp.cloud_exadata_infrastructure.max_data_storage_in_t_bs #=> Float
1390
+ # resp.cloud_exadata_infrastructure.max_db_node_storage_size_in_g_bs #=> Integer
1391
+ # resp.cloud_exadata_infrastructure.max_memory_in_g_bs #=> Integer
1392
+ # resp.cloud_exadata_infrastructure.memory_size_in_g_bs #=> Integer
1393
+ # resp.cloud_exadata_infrastructure.monthly_db_server_version #=> String
1394
+ # resp.cloud_exadata_infrastructure.monthly_storage_server_version #=> String
1395
+ # resp.cloud_exadata_infrastructure.next_maintenance_run_id #=> String
1396
+ # resp.cloud_exadata_infrastructure.oci_resource_anchor_name #=> String
1397
+ # resp.cloud_exadata_infrastructure.oci_url #=> String
1398
+ # resp.cloud_exadata_infrastructure.ocid #=> String
1399
+ # resp.cloud_exadata_infrastructure.shape #=> String
1400
+ # resp.cloud_exadata_infrastructure.storage_count #=> Integer
1401
+ # resp.cloud_exadata_infrastructure.storage_server_version #=> String
1402
+ # resp.cloud_exadata_infrastructure.created_at #=> Time
1403
+ # resp.cloud_exadata_infrastructure.total_storage_size_in_g_bs #=> Integer
1404
+ # resp.cloud_exadata_infrastructure.percent_progress #=> Float
1405
+ # resp.cloud_exadata_infrastructure.database_server_type #=> String
1406
+ # resp.cloud_exadata_infrastructure.storage_server_type #=> String
1407
+ # resp.cloud_exadata_infrastructure.compute_model #=> String, one of "ECPU", "OCPU"
1408
+ #
1409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetCloudExadataInfrastructure AWS API Documentation
1410
+ #
1411
+ # @overload get_cloud_exadata_infrastructure(params = {})
1412
+ # @param [Hash] params ({})
1413
+ def get_cloud_exadata_infrastructure(params = {}, options = {})
1414
+ req = build_request(:get_cloud_exadata_infrastructure, params)
1415
+ req.send_request(options)
1416
+ end
1417
+
1418
+ # Retrieves information about unallocated resources in a specified Cloud
1419
+ # Exadata Infrastructure.
1420
+ #
1421
+ # @option params [required, String] :cloud_exadata_infrastructure_id
1422
+ # The unique identifier of the Cloud Exadata infrastructure for which to
1423
+ # retrieve unallocated resources.
1424
+ #
1425
+ # @option params [Array<String>] :db_servers
1426
+ # The database servers to include in the unallocated resources query.
1427
+ #
1428
+ # @return [Types::GetCloudExadataInfrastructureUnallocatedResourcesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1429
+ #
1430
+ # * {Types::GetCloudExadataInfrastructureUnallocatedResourcesOutput#cloud_exadata_infrastructure_unallocated_resources #cloud_exadata_infrastructure_unallocated_resources} => Types::CloudExadataInfrastructureUnallocatedResources
1431
+ #
1432
+ # @example Request syntax with placeholder values
1433
+ #
1434
+ # resp = client.get_cloud_exadata_infrastructure_unallocated_resources({
1435
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
1436
+ # db_servers: ["String"],
1437
+ # })
1438
+ #
1439
+ # @example Response structure
1440
+ #
1441
+ # resp.cloud_exadata_infrastructure_unallocated_resources.cloud_autonomous_vm_clusters #=> Array
1442
+ # resp.cloud_exadata_infrastructure_unallocated_resources.cloud_autonomous_vm_clusters[0].cloud_autonomous_vm_cluster_id #=> String
1443
+ # resp.cloud_exadata_infrastructure_unallocated_resources.cloud_autonomous_vm_clusters[0].unallocated_adb_storage_in_t_bs #=> Float
1444
+ # resp.cloud_exadata_infrastructure_unallocated_resources.cloud_exadata_infrastructure_display_name #=> String
1445
+ # resp.cloud_exadata_infrastructure_unallocated_resources.exadata_storage_in_t_bs #=> Float
1446
+ # resp.cloud_exadata_infrastructure_unallocated_resources.cloud_exadata_infrastructure_id #=> String
1447
+ # resp.cloud_exadata_infrastructure_unallocated_resources.local_storage_in_g_bs #=> Integer
1448
+ # resp.cloud_exadata_infrastructure_unallocated_resources.memory_in_g_bs #=> Integer
1449
+ # resp.cloud_exadata_infrastructure_unallocated_resources.ocpus #=> Integer
1450
+ #
1451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetCloudExadataInfrastructureUnallocatedResources AWS API Documentation
1452
+ #
1453
+ # @overload get_cloud_exadata_infrastructure_unallocated_resources(params = {})
1454
+ # @param [Hash] params ({})
1455
+ def get_cloud_exadata_infrastructure_unallocated_resources(params = {}, options = {})
1456
+ req = build_request(:get_cloud_exadata_infrastructure_unallocated_resources, params)
1457
+ req.send_request(options)
1458
+ end
1459
+
1460
+ # Returns information about the specified VM cluster.
1461
+ #
1462
+ # @option params [required, String] :cloud_vm_cluster_id
1463
+ # The unique identifier of the VM cluster.
1464
+ #
1465
+ # @return [Types::GetCloudVmClusterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1466
+ #
1467
+ # * {Types::GetCloudVmClusterOutput#cloud_vm_cluster #cloud_vm_cluster} => Types::CloudVmCluster
1468
+ #
1469
+ # @example Request syntax with placeholder values
1470
+ #
1471
+ # resp = client.get_cloud_vm_cluster({
1472
+ # cloud_vm_cluster_id: "ResourceId", # required
1473
+ # })
1474
+ #
1475
+ # @example Response structure
1476
+ #
1477
+ # resp.cloud_vm_cluster.cloud_vm_cluster_id #=> String
1478
+ # resp.cloud_vm_cluster.display_name #=> String
1479
+ # resp.cloud_vm_cluster.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1480
+ # resp.cloud_vm_cluster.status_reason #=> String
1481
+ # resp.cloud_vm_cluster.cloud_vm_cluster_arn #=> String
1482
+ # resp.cloud_vm_cluster.cloud_exadata_infrastructure_id #=> String
1483
+ # resp.cloud_vm_cluster.cluster_name #=> String
1484
+ # resp.cloud_vm_cluster.cpu_core_count #=> Integer
1485
+ # resp.cloud_vm_cluster.data_collection_options.is_diagnostics_events_enabled #=> Boolean
1486
+ # resp.cloud_vm_cluster.data_collection_options.is_health_monitoring_enabled #=> Boolean
1487
+ # resp.cloud_vm_cluster.data_collection_options.is_incident_logs_enabled #=> Boolean
1488
+ # resp.cloud_vm_cluster.data_storage_size_in_t_bs #=> Float
1489
+ # resp.cloud_vm_cluster.db_node_storage_size_in_g_bs #=> Integer
1490
+ # resp.cloud_vm_cluster.db_servers #=> Array
1491
+ # resp.cloud_vm_cluster.db_servers[0] #=> String
1492
+ # resp.cloud_vm_cluster.disk_redundancy #=> String, one of "HIGH", "NORMAL"
1493
+ # resp.cloud_vm_cluster.gi_version #=> String
1494
+ # resp.cloud_vm_cluster.hostname #=> String
1495
+ # resp.cloud_vm_cluster.iorm_config_cache.db_plans #=> Array
1496
+ # resp.cloud_vm_cluster.iorm_config_cache.db_plans[0].db_name #=> String
1497
+ # resp.cloud_vm_cluster.iorm_config_cache.db_plans[0].flash_cache_limit #=> String
1498
+ # resp.cloud_vm_cluster.iorm_config_cache.db_plans[0].share #=> Integer
1499
+ # resp.cloud_vm_cluster.iorm_config_cache.lifecycle_details #=> String
1500
+ # resp.cloud_vm_cluster.iorm_config_cache.lifecycle_state #=> String, one of "BOOTSTRAPPING", "DISABLED", "ENABLED", "FAILED", "UPDATING"
1501
+ # resp.cloud_vm_cluster.iorm_config_cache.objective #=> String, one of "AUTO", "BALANCED", "BASIC", "HIGH_THROUGHPUT", "LOW_LATENCY"
1502
+ # resp.cloud_vm_cluster.is_local_backup_enabled #=> Boolean
1503
+ # resp.cloud_vm_cluster.is_sparse_diskgroup_enabled #=> Boolean
1504
+ # resp.cloud_vm_cluster.last_update_history_entry_id #=> String
1505
+ # resp.cloud_vm_cluster.license_model #=> String, one of "BRING_YOUR_OWN_LICENSE", "LICENSE_INCLUDED"
1506
+ # resp.cloud_vm_cluster.listener_port #=> Integer
1507
+ # resp.cloud_vm_cluster.memory_size_in_g_bs #=> Integer
1508
+ # resp.cloud_vm_cluster.node_count #=> Integer
1509
+ # resp.cloud_vm_cluster.ocid #=> String
1510
+ # resp.cloud_vm_cluster.oci_resource_anchor_name #=> String
1511
+ # resp.cloud_vm_cluster.oci_url #=> String
1512
+ # resp.cloud_vm_cluster.domain #=> String
1513
+ # resp.cloud_vm_cluster.scan_dns_name #=> String
1514
+ # resp.cloud_vm_cluster.scan_dns_record_id #=> String
1515
+ # resp.cloud_vm_cluster.scan_ip_ids #=> Array
1516
+ # resp.cloud_vm_cluster.scan_ip_ids[0] #=> String
1517
+ # resp.cloud_vm_cluster.shape #=> String
1518
+ # resp.cloud_vm_cluster.ssh_public_keys #=> Array
1519
+ # resp.cloud_vm_cluster.ssh_public_keys[0] #=> String
1520
+ # resp.cloud_vm_cluster.storage_size_in_g_bs #=> Integer
1521
+ # resp.cloud_vm_cluster.system_version #=> String
1522
+ # resp.cloud_vm_cluster.created_at #=> Time
1523
+ # resp.cloud_vm_cluster.time_zone #=> String
1524
+ # resp.cloud_vm_cluster.vip_ids #=> Array
1525
+ # resp.cloud_vm_cluster.vip_ids[0] #=> String
1526
+ # resp.cloud_vm_cluster.odb_network_id #=> String
1527
+ # resp.cloud_vm_cluster.percent_progress #=> Float
1528
+ # resp.cloud_vm_cluster.compute_model #=> String, one of "ECPU", "OCPU"
1529
+ #
1530
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetCloudVmCluster AWS API Documentation
1531
+ #
1532
+ # @overload get_cloud_vm_cluster(params = {})
1533
+ # @param [Hash] params ({})
1534
+ def get_cloud_vm_cluster(params = {}, options = {})
1535
+ req = build_request(:get_cloud_vm_cluster, params)
1536
+ req.send_request(options)
1537
+ end
1538
+
1539
+ # Returns information about the specified DB node.
1540
+ #
1541
+ # @option params [required, String] :cloud_vm_cluster_id
1542
+ # The unique identifier of the VM cluster that contains the DB node.
1543
+ #
1544
+ # @option params [required, String] :db_node_id
1545
+ # The unique identifier of the DB node to retrieve information about.
1546
+ #
1547
+ # @return [Types::GetDbNodeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1548
+ #
1549
+ # * {Types::GetDbNodeOutput#db_node #db_node} => Types::DbNode
1550
+ #
1551
+ # @example Request syntax with placeholder values
1552
+ #
1553
+ # resp = client.get_db_node({
1554
+ # cloud_vm_cluster_id: "ResourceId", # required
1555
+ # db_node_id: "ResourceId", # required
1556
+ # })
1557
+ #
1558
+ # @example Response structure
1559
+ #
1560
+ # resp.db_node.db_node_id #=> String
1561
+ # resp.db_node.db_node_arn #=> String
1562
+ # resp.db_node.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "STOPPING", "STOPPED", "STARTING"
1563
+ # resp.db_node.status_reason #=> String
1564
+ # resp.db_node.additional_details #=> String
1565
+ # resp.db_node.backup_ip_id #=> String
1566
+ # resp.db_node.backup_vnic_2_id #=> String
1567
+ # resp.db_node.backup_vnic_id #=> String
1568
+ # resp.db_node.cpu_core_count #=> Integer
1569
+ # resp.db_node.db_node_storage_size_in_g_bs #=> Integer
1570
+ # resp.db_node.db_server_id #=> String
1571
+ # resp.db_node.db_system_id #=> String
1572
+ # resp.db_node.fault_domain #=> String
1573
+ # resp.db_node.host_ip_id #=> String
1574
+ # resp.db_node.hostname #=> String
1575
+ # resp.db_node.ocid #=> String
1576
+ # resp.db_node.oci_resource_anchor_name #=> String
1577
+ # resp.db_node.maintenance_type #=> String, one of "VMDB_REBOOT_MIGRATION"
1578
+ # resp.db_node.memory_size_in_g_bs #=> Integer
1579
+ # resp.db_node.software_storage_size_in_gb #=> Integer
1580
+ # resp.db_node.created_at #=> Time
1581
+ # resp.db_node.time_maintenance_window_end #=> String
1582
+ # resp.db_node.time_maintenance_window_start #=> String
1583
+ # resp.db_node.total_cpu_core_count #=> Integer
1584
+ # resp.db_node.vnic2_id #=> String
1585
+ # resp.db_node.vnic_id #=> String
1586
+ # resp.db_node.private_ip_address #=> String
1587
+ # resp.db_node.floating_ip_address #=> String
1588
+ #
1589
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetDbNode AWS API Documentation
1590
+ #
1591
+ # @overload get_db_node(params = {})
1592
+ # @param [Hash] params ({})
1593
+ def get_db_node(params = {}, options = {})
1594
+ req = build_request(:get_db_node, params)
1595
+ req.send_request(options)
1596
+ end
1597
+
1598
+ # Returns information about the specified database server.
1599
+ #
1600
+ # @option params [required, String] :cloud_exadata_infrastructure_id
1601
+ # The unique identifier of the Oracle Exadata infrastructure that
1602
+ # contains the database server.
1603
+ #
1604
+ # @option params [required, String] :db_server_id
1605
+ # The unique identifier of the database server to retrieve information
1606
+ # about.
1607
+ #
1608
+ # @return [Types::GetDbServerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1609
+ #
1610
+ # * {Types::GetDbServerOutput#db_server #db_server} => Types::DbServer
1611
+ #
1612
+ # @example Request syntax with placeholder values
1613
+ #
1614
+ # resp = client.get_db_server({
1615
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
1616
+ # db_server_id: "ResourceId", # required
1617
+ # })
1618
+ #
1619
+ # @example Response structure
1620
+ #
1621
+ # resp.db_server.db_server_id #=> String
1622
+ # resp.db_server.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1623
+ # resp.db_server.status_reason #=> String
1624
+ # resp.db_server.cpu_core_count #=> Integer
1625
+ # resp.db_server.db_node_storage_size_in_g_bs #=> Integer
1626
+ # resp.db_server.db_server_patching_details.estimated_patch_duration #=> Integer
1627
+ # resp.db_server.db_server_patching_details.patching_status #=> String, one of "COMPLETE", "FAILED", "MAINTENANCE_IN_PROGRESS", "SCHEDULED"
1628
+ # resp.db_server.db_server_patching_details.time_patching_ended #=> String
1629
+ # resp.db_server.db_server_patching_details.time_patching_started #=> String
1630
+ # resp.db_server.display_name #=> String
1631
+ # resp.db_server.exadata_infrastructure_id #=> String
1632
+ # resp.db_server.ocid #=> String
1633
+ # resp.db_server.oci_resource_anchor_name #=> String
1634
+ # resp.db_server.max_cpu_count #=> Integer
1635
+ # resp.db_server.max_db_node_storage_in_g_bs #=> Integer
1636
+ # resp.db_server.max_memory_in_g_bs #=> Integer
1637
+ # resp.db_server.memory_size_in_g_bs #=> Integer
1638
+ # resp.db_server.shape #=> String
1639
+ # resp.db_server.created_at #=> Time
1640
+ # resp.db_server.vm_cluster_ids #=> Array
1641
+ # resp.db_server.vm_cluster_ids[0] #=> String
1642
+ # resp.db_server.compute_model #=> String, one of "ECPU", "OCPU"
1643
+ # resp.db_server.autonomous_vm_cluster_ids #=> Array
1644
+ # resp.db_server.autonomous_vm_cluster_ids[0] #=> String
1645
+ # resp.db_server.autonomous_virtual_machine_ids #=> Array
1646
+ # resp.db_server.autonomous_virtual_machine_ids[0] #=> String
1647
+ #
1648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetDbServer AWS API Documentation
1649
+ #
1650
+ # @overload get_db_server(params = {})
1651
+ # @param [Hash] params ({})
1652
+ def get_db_server(params = {}, options = {})
1653
+ req = build_request(:get_db_server, params)
1654
+ req.send_request(options)
1655
+ end
1656
+
1657
+ # Returns the tenancy activation link and onboarding status for your
1658
+ # Amazon Web Services account.
1659
+ #
1660
+ # @return [Types::GetOciOnboardingStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1661
+ #
1662
+ # * {Types::GetOciOnboardingStatusOutput#status #status} => String
1663
+ # * {Types::GetOciOnboardingStatusOutput#existing_tenancy_activation_link #existing_tenancy_activation_link} => String
1664
+ # * {Types::GetOciOnboardingStatusOutput#new_tenancy_activation_link #new_tenancy_activation_link} => String
1665
+ #
1666
+ # @example Response structure
1667
+ #
1668
+ # resp.status #=> String, one of "NOT_STARTED", "PENDING_LINK_GENERATION", "PENDING_CUSTOMER_ACTION", "PENDING_INITIALIZATION", "ACTIVATING", "ACTIVE_IN_HOME_REGION", "ACTIVE", "ACTIVE_LIMITED", "FAILED", "PUBLIC_OFFER_UNSUPPORTED", "SUSPENDED", "CANCELED"
1669
+ # resp.existing_tenancy_activation_link #=> String
1670
+ # resp.new_tenancy_activation_link #=> String
1671
+ #
1672
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOciOnboardingStatus AWS API Documentation
1673
+ #
1674
+ # @overload get_oci_onboarding_status(params = {})
1675
+ # @param [Hash] params ({})
1676
+ def get_oci_onboarding_status(params = {}, options = {})
1677
+ req = build_request(:get_oci_onboarding_status, params)
1678
+ req.send_request(options)
1679
+ end
1680
+
1681
+ # Returns information about the specified ODB network.
1682
+ #
1683
+ # @option params [required, String] :odb_network_id
1684
+ # The unique identifier of the ODB network.
1685
+ #
1686
+ # @return [Types::GetOdbNetworkOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1687
+ #
1688
+ # * {Types::GetOdbNetworkOutput#odb_network #odb_network} => Types::OdbNetwork
1689
+ #
1690
+ # @example Request syntax with placeholder values
1691
+ #
1692
+ # resp = client.get_odb_network({
1693
+ # odb_network_id: "ResourceIdOrArn", # required
1694
+ # })
1695
+ #
1696
+ # @example Response structure
1697
+ #
1698
+ # resp.odb_network.odb_network_id #=> String
1699
+ # resp.odb_network.display_name #=> String
1700
+ # resp.odb_network.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1701
+ # resp.odb_network.status_reason #=> String
1702
+ # resp.odb_network.odb_network_arn #=> String
1703
+ # resp.odb_network.availability_zone #=> String
1704
+ # resp.odb_network.availability_zone_id #=> String
1705
+ # resp.odb_network.client_subnet_cidr #=> String
1706
+ # resp.odb_network.backup_subnet_cidr #=> String
1707
+ # resp.odb_network.custom_domain_name #=> String
1708
+ # resp.odb_network.default_dns_prefix #=> String
1709
+ # resp.odb_network.peered_cidrs #=> Array
1710
+ # resp.odb_network.peered_cidrs[0] #=> String
1711
+ # resp.odb_network.oci_network_anchor_id #=> String
1712
+ # resp.odb_network.oci_network_anchor_url #=> String
1713
+ # resp.odb_network.oci_resource_anchor_name #=> String
1714
+ # resp.odb_network.oci_vcn_id #=> String
1715
+ # resp.odb_network.oci_vcn_url #=> String
1716
+ # resp.odb_network.oci_dns_forwarding_configs #=> Array
1717
+ # resp.odb_network.oci_dns_forwarding_configs[0].domain_name #=> String
1718
+ # resp.odb_network.oci_dns_forwarding_configs[0].oci_dns_listener_ip #=> String
1719
+ # resp.odb_network.created_at #=> Time
1720
+ # resp.odb_network.percent_progress #=> Float
1721
+ # resp.odb_network.managed_services.service_network_arn #=> String
1722
+ # resp.odb_network.managed_services.resource_gateway_arn #=> String
1723
+ # resp.odb_network.managed_services.managed_services_ipv_4_cidrs #=> Array
1724
+ # resp.odb_network.managed_services.managed_services_ipv_4_cidrs[0] #=> String
1725
+ # resp.odb_network.managed_services.service_network_endpoint.vpc_endpoint_id #=> String
1726
+ # resp.odb_network.managed_services.service_network_endpoint.vpc_endpoint_type #=> String, one of "SERVICENETWORK"
1727
+ # resp.odb_network.managed_services.managed_s3_backup_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
1728
+ # resp.odb_network.managed_services.managed_s3_backup_access.ipv4_addresses #=> Array
1729
+ # resp.odb_network.managed_services.managed_s3_backup_access.ipv4_addresses[0] #=> String
1730
+ # resp.odb_network.managed_services.zero_etl_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
1731
+ # resp.odb_network.managed_services.zero_etl_access.cidr #=> String
1732
+ # resp.odb_network.managed_services.s3_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
1733
+ # resp.odb_network.managed_services.s3_access.ipv4_addresses #=> Array
1734
+ # resp.odb_network.managed_services.s3_access.ipv4_addresses[0] #=> String
1735
+ # resp.odb_network.managed_services.s3_access.domain_name #=> String
1736
+ # resp.odb_network.managed_services.s3_access.s3_policy_document #=> String
1737
+ #
1738
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOdbNetwork AWS API Documentation
1739
+ #
1740
+ # @overload get_odb_network(params = {})
1741
+ # @param [Hash] params ({})
1742
+ def get_odb_network(params = {}, options = {})
1743
+ req = build_request(:get_odb_network, params)
1744
+ req.send_request(options)
1745
+ end
1746
+
1747
+ # Retrieves information about an ODB peering connection.
1748
+ #
1749
+ # @option params [required, String] :odb_peering_connection_id
1750
+ # The unique identifier of the ODB peering connection to retrieve
1751
+ # information about.
1752
+ #
1753
+ # @return [Types::GetOdbPeeringConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1754
+ #
1755
+ # * {Types::GetOdbPeeringConnectionOutput#odb_peering_connection #odb_peering_connection} => Types::OdbPeeringConnection
1756
+ #
1757
+ # @example Request syntax with placeholder values
1758
+ #
1759
+ # resp = client.get_odb_peering_connection({
1760
+ # odb_peering_connection_id: "ResourceIdOrArn", # required
1761
+ # })
1762
+ #
1763
+ # @example Response structure
1764
+ #
1765
+ # resp.odb_peering_connection.odb_peering_connection_id #=> String
1766
+ # resp.odb_peering_connection.display_name #=> String
1767
+ # resp.odb_peering_connection.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1768
+ # resp.odb_peering_connection.status_reason #=> String
1769
+ # resp.odb_peering_connection.odb_peering_connection_arn #=> String
1770
+ # resp.odb_peering_connection.odb_network_arn #=> String
1771
+ # resp.odb_peering_connection.peer_network_arn #=> String
1772
+ # resp.odb_peering_connection.odb_peering_connection_type #=> String
1773
+ # resp.odb_peering_connection.created_at #=> Time
1774
+ # resp.odb_peering_connection.percent_progress #=> Float
1775
+ #
1776
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOdbPeeringConnection AWS API Documentation
1777
+ #
1778
+ # @overload get_odb_peering_connection(params = {})
1779
+ # @param [Hash] params ({})
1780
+ def get_odb_peering_connection(params = {}, options = {})
1781
+ req = build_request(:get_odb_peering_connection, params)
1782
+ req.send_request(options)
1783
+ end
1784
+
1785
+ # Initializes the ODB service for the first time in an account.
1786
+ #
1787
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1788
+ #
1789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeService AWS API Documentation
1790
+ #
1791
+ # @overload initialize_service(params = {})
1792
+ # @param [Hash] params ({})
1793
+ def initialize_service(params = {}, options = {})
1794
+ req = build_request(:initialize_service, params)
1795
+ req.send_request(options)
1796
+ end
1797
+
1798
+ # Lists all Autonomous VMs in an Autonomous VM cluster.
1799
+ #
1800
+ # @option params [Integer] :max_results
1801
+ # The maximum number of items to return per page.
1802
+ #
1803
+ # @option params [String] :next_token
1804
+ # The pagination token to continue listing from.
1805
+ #
1806
+ # @option params [required, String] :cloud_autonomous_vm_cluster_id
1807
+ # The unique identifier of the Autonomous VM cluster whose virtual
1808
+ # machines you're listing.
1809
+ #
1810
+ # @return [Types::ListAutonomousVirtualMachinesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1811
+ #
1812
+ # * {Types::ListAutonomousVirtualMachinesOutput#next_token #next_token} => String
1813
+ # * {Types::ListAutonomousVirtualMachinesOutput#autonomous_virtual_machines #autonomous_virtual_machines} => Array&lt;Types::AutonomousVirtualMachineSummary&gt;
1814
+ #
1815
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1816
+ #
1817
+ # @example Request syntax with placeholder values
1818
+ #
1819
+ # resp = client.list_autonomous_virtual_machines({
1820
+ # max_results: 1,
1821
+ # next_token: "ListAutonomousVirtualMachinesInputNextTokenString",
1822
+ # cloud_autonomous_vm_cluster_id: "ResourceId", # required
1823
+ # })
1824
+ #
1825
+ # @example Response structure
1826
+ #
1827
+ # resp.next_token #=> String
1828
+ # resp.autonomous_virtual_machines #=> Array
1829
+ # resp.autonomous_virtual_machines[0].autonomous_virtual_machine_id #=> String
1830
+ # resp.autonomous_virtual_machines[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1831
+ # resp.autonomous_virtual_machines[0].status_reason #=> String
1832
+ # resp.autonomous_virtual_machines[0].vm_name #=> String
1833
+ # resp.autonomous_virtual_machines[0].db_server_id #=> String
1834
+ # resp.autonomous_virtual_machines[0].db_server_display_name #=> String
1835
+ # resp.autonomous_virtual_machines[0].cpu_core_count #=> Integer
1836
+ # resp.autonomous_virtual_machines[0].memory_size_in_g_bs #=> Integer
1837
+ # resp.autonomous_virtual_machines[0].db_node_storage_size_in_g_bs #=> Integer
1838
+ # resp.autonomous_virtual_machines[0].client_ip_address #=> String
1839
+ # resp.autonomous_virtual_machines[0].cloud_autonomous_vm_cluster_id #=> String
1840
+ # resp.autonomous_virtual_machines[0].ocid #=> String
1841
+ # resp.autonomous_virtual_machines[0].oci_resource_anchor_name #=> String
1842
+ #
1843
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListAutonomousVirtualMachines AWS API Documentation
1844
+ #
1845
+ # @overload list_autonomous_virtual_machines(params = {})
1846
+ # @param [Hash] params ({})
1847
+ def list_autonomous_virtual_machines(params = {}, options = {})
1848
+ req = build_request(:list_autonomous_virtual_machines, params)
1849
+ req.send_request(options)
1850
+ end
1851
+
1852
+ # Lists all Autonomous VM clusters in a specified Cloud Exadata
1853
+ # infrastructure.
1854
+ #
1855
+ # @option params [Integer] :max_results
1856
+ # The maximum number of items to return per page.
1857
+ #
1858
+ # @option params [String] :next_token
1859
+ # The pagination token to continue listing from.
1860
+ #
1861
+ # @option params [String] :cloud_exadata_infrastructure_id
1862
+ # The unique identifier of the Cloud Exadata Infrastructure that hosts
1863
+ # the Autonomous VM clusters to be listed.
1864
+ #
1865
+ # @return [Types::ListCloudAutonomousVmClustersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1866
+ #
1867
+ # * {Types::ListCloudAutonomousVmClustersOutput#next_token #next_token} => String
1868
+ # * {Types::ListCloudAutonomousVmClustersOutput#cloud_autonomous_vm_clusters #cloud_autonomous_vm_clusters} => Array&lt;Types::CloudAutonomousVmClusterSummary&gt;
1869
+ #
1870
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1871
+ #
1872
+ # @example Request syntax with placeholder values
1873
+ #
1874
+ # resp = client.list_cloud_autonomous_vm_clusters({
1875
+ # max_results: 1,
1876
+ # next_token: "ListCloudAutonomousVmClustersInputNextTokenString",
1877
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn",
1878
+ # })
1879
+ #
1880
+ # @example Response structure
1881
+ #
1882
+ # resp.next_token #=> String
1883
+ # resp.cloud_autonomous_vm_clusters #=> Array
1884
+ # resp.cloud_autonomous_vm_clusters[0].cloud_autonomous_vm_cluster_id #=> String
1885
+ # resp.cloud_autonomous_vm_clusters[0].cloud_autonomous_vm_cluster_arn #=> String
1886
+ # resp.cloud_autonomous_vm_clusters[0].odb_network_id #=> String
1887
+ # resp.cloud_autonomous_vm_clusters[0].oci_resource_anchor_name #=> String
1888
+ # resp.cloud_autonomous_vm_clusters[0].percent_progress #=> Float
1889
+ # resp.cloud_autonomous_vm_clusters[0].display_name #=> String
1890
+ # resp.cloud_autonomous_vm_clusters[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1891
+ # resp.cloud_autonomous_vm_clusters[0].status_reason #=> String
1892
+ # resp.cloud_autonomous_vm_clusters[0].cloud_exadata_infrastructure_id #=> String
1893
+ # resp.cloud_autonomous_vm_clusters[0].autonomous_data_storage_percentage #=> Float
1894
+ # resp.cloud_autonomous_vm_clusters[0].autonomous_data_storage_size_in_t_bs #=> Float
1895
+ # resp.cloud_autonomous_vm_clusters[0].available_autonomous_data_storage_size_in_t_bs #=> Float
1896
+ # resp.cloud_autonomous_vm_clusters[0].available_container_databases #=> Integer
1897
+ # resp.cloud_autonomous_vm_clusters[0].available_cpus #=> Float
1898
+ # resp.cloud_autonomous_vm_clusters[0].compute_model #=> String, one of "ECPU", "OCPU"
1899
+ # resp.cloud_autonomous_vm_clusters[0].cpu_core_count #=> Integer
1900
+ # resp.cloud_autonomous_vm_clusters[0].cpu_core_count_per_node #=> Integer
1901
+ # resp.cloud_autonomous_vm_clusters[0].cpu_percentage #=> Float
1902
+ # resp.cloud_autonomous_vm_clusters[0].data_storage_size_in_g_bs #=> Float
1903
+ # resp.cloud_autonomous_vm_clusters[0].data_storage_size_in_t_bs #=> Float
1904
+ # resp.cloud_autonomous_vm_clusters[0].db_node_storage_size_in_g_bs #=> Integer
1905
+ # resp.cloud_autonomous_vm_clusters[0].db_servers #=> Array
1906
+ # resp.cloud_autonomous_vm_clusters[0].db_servers[0] #=> String
1907
+ # resp.cloud_autonomous_vm_clusters[0].description #=> String
1908
+ # resp.cloud_autonomous_vm_clusters[0].domain #=> String
1909
+ # resp.cloud_autonomous_vm_clusters[0].exadata_storage_in_t_bs_lowest_scaled_value #=> Float
1910
+ # resp.cloud_autonomous_vm_clusters[0].hostname #=> String
1911
+ # resp.cloud_autonomous_vm_clusters[0].ocid #=> String
1912
+ # resp.cloud_autonomous_vm_clusters[0].oci_url #=> String
1913
+ # resp.cloud_autonomous_vm_clusters[0].is_mtls_enabled_vm_cluster #=> Boolean
1914
+ # resp.cloud_autonomous_vm_clusters[0].license_model #=> String, one of "BRING_YOUR_OWN_LICENSE", "LICENSE_INCLUDED"
1915
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.custom_action_timeout_in_mins #=> Integer
1916
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.days_of_week #=> Array
1917
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.days_of_week[0].name #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
1918
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.hours_of_day #=> Array
1919
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.hours_of_day[0] #=> Integer
1920
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.is_custom_action_timeout_enabled #=> Boolean
1921
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.lead_time_in_weeks #=> Integer
1922
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.months #=> Array
1923
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.months[0].name #=> String, one of "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"
1924
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.patching_mode #=> String, one of "ROLLING", "NONROLLING"
1925
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.preference #=> String, one of "NO_PREFERENCE", "CUSTOM_PREFERENCE"
1926
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.skip_ru #=> Boolean
1927
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.weeks_of_month #=> Array
1928
+ # resp.cloud_autonomous_vm_clusters[0].maintenance_window.weeks_of_month[0] #=> Integer
1929
+ # resp.cloud_autonomous_vm_clusters[0].max_acds_lowest_scaled_value #=> Integer
1930
+ # resp.cloud_autonomous_vm_clusters[0].memory_per_oracle_compute_unit_in_g_bs #=> Integer
1931
+ # resp.cloud_autonomous_vm_clusters[0].memory_size_in_g_bs #=> Integer
1932
+ # resp.cloud_autonomous_vm_clusters[0].node_count #=> Integer
1933
+ # resp.cloud_autonomous_vm_clusters[0].non_provisionable_autonomous_container_databases #=> Integer
1934
+ # resp.cloud_autonomous_vm_clusters[0].provisionable_autonomous_container_databases #=> Integer
1935
+ # resp.cloud_autonomous_vm_clusters[0].provisioned_autonomous_container_databases #=> Integer
1936
+ # resp.cloud_autonomous_vm_clusters[0].provisioned_cpus #=> Float
1937
+ # resp.cloud_autonomous_vm_clusters[0].reclaimable_cpus #=> Float
1938
+ # resp.cloud_autonomous_vm_clusters[0].reserved_cpus #=> Float
1939
+ # resp.cloud_autonomous_vm_clusters[0].scan_listener_port_non_tls #=> Integer
1940
+ # resp.cloud_autonomous_vm_clusters[0].scan_listener_port_tls #=> Integer
1941
+ # resp.cloud_autonomous_vm_clusters[0].shape #=> String
1942
+ # resp.cloud_autonomous_vm_clusters[0].created_at #=> Time
1943
+ # resp.cloud_autonomous_vm_clusters[0].time_database_ssl_certificate_expires #=> Time
1944
+ # resp.cloud_autonomous_vm_clusters[0].time_ords_certificate_expires #=> Time
1945
+ # resp.cloud_autonomous_vm_clusters[0].time_zone #=> String
1946
+ # resp.cloud_autonomous_vm_clusters[0].total_container_databases #=> Integer
1947
+ #
1948
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListCloudAutonomousVmClusters AWS API Documentation
1949
+ #
1950
+ # @overload list_cloud_autonomous_vm_clusters(params = {})
1951
+ # @param [Hash] params ({})
1952
+ def list_cloud_autonomous_vm_clusters(params = {}, options = {})
1953
+ req = build_request(:list_cloud_autonomous_vm_clusters, params)
1954
+ req.send_request(options)
1955
+ end
1956
+
1957
+ # Returns information about the Exadata infrastructures owned by your
1958
+ # Amazon Web Services account.
1959
+ #
1960
+ # @option params [Integer] :max_results
1961
+ # The maximum number of items to return for this request. To get the
1962
+ # next page of items, make another request with the token returned in
1963
+ # the output.
1964
+ #
1965
+ # Default: `10`
1966
+ #
1967
+ # @option params [String] :next_token
1968
+ # The token returned from a previous paginated request. Pagination
1969
+ # continues from the end of the items returned by the previous request.
1970
+ #
1971
+ # @return [Types::ListCloudExadataInfrastructuresOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1972
+ #
1973
+ # * {Types::ListCloudExadataInfrastructuresOutput#next_token #next_token} => String
1974
+ # * {Types::ListCloudExadataInfrastructuresOutput#cloud_exadata_infrastructures #cloud_exadata_infrastructures} => Array&lt;Types::CloudExadataInfrastructureSummary&gt;
1975
+ #
1976
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1977
+ #
1978
+ # @example Request syntax with placeholder values
1979
+ #
1980
+ # resp = client.list_cloud_exadata_infrastructures({
1981
+ # max_results: 1,
1982
+ # next_token: "ListCloudExadataInfrastructuresInputNextTokenString",
1983
+ # })
1984
+ #
1985
+ # @example Response structure
1986
+ #
1987
+ # resp.next_token #=> String
1988
+ # resp.cloud_exadata_infrastructures #=> Array
1989
+ # resp.cloud_exadata_infrastructures[0].cloud_exadata_infrastructure_id #=> String
1990
+ # resp.cloud_exadata_infrastructures[0].display_name #=> String
1991
+ # resp.cloud_exadata_infrastructures[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1992
+ # resp.cloud_exadata_infrastructures[0].status_reason #=> String
1993
+ # resp.cloud_exadata_infrastructures[0].cloud_exadata_infrastructure_arn #=> String
1994
+ # resp.cloud_exadata_infrastructures[0].activated_storage_count #=> Integer
1995
+ # resp.cloud_exadata_infrastructures[0].additional_storage_count #=> Integer
1996
+ # resp.cloud_exadata_infrastructures[0].available_storage_size_in_g_bs #=> Integer
1997
+ # resp.cloud_exadata_infrastructures[0].availability_zone #=> String
1998
+ # resp.cloud_exadata_infrastructures[0].availability_zone_id #=> String
1999
+ # resp.cloud_exadata_infrastructures[0].compute_count #=> Integer
2000
+ # resp.cloud_exadata_infrastructures[0].cpu_count #=> Integer
2001
+ # resp.cloud_exadata_infrastructures[0].customer_contacts_to_send_to_oci #=> Array
2002
+ # resp.cloud_exadata_infrastructures[0].customer_contacts_to_send_to_oci[0].email #=> String
2003
+ # resp.cloud_exadata_infrastructures[0].data_storage_size_in_t_bs #=> Float
2004
+ # resp.cloud_exadata_infrastructures[0].db_node_storage_size_in_g_bs #=> Integer
2005
+ # resp.cloud_exadata_infrastructures[0].db_server_version #=> String
2006
+ # resp.cloud_exadata_infrastructures[0].last_maintenance_run_id #=> String
2007
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.custom_action_timeout_in_mins #=> Integer
2008
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.days_of_week #=> Array
2009
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.days_of_week[0].name #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
2010
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.hours_of_day #=> Array
2011
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.hours_of_day[0] #=> Integer
2012
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.is_custom_action_timeout_enabled #=> Boolean
2013
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.lead_time_in_weeks #=> Integer
2014
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.months #=> Array
2015
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.months[0].name #=> String, one of "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"
2016
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.patching_mode #=> String, one of "ROLLING", "NONROLLING"
2017
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.preference #=> String, one of "NO_PREFERENCE", "CUSTOM_PREFERENCE"
2018
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.skip_ru #=> Boolean
2019
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.weeks_of_month #=> Array
2020
+ # resp.cloud_exadata_infrastructures[0].maintenance_window.weeks_of_month[0] #=> Integer
2021
+ # resp.cloud_exadata_infrastructures[0].max_cpu_count #=> Integer
2022
+ # resp.cloud_exadata_infrastructures[0].max_data_storage_in_t_bs #=> Float
2023
+ # resp.cloud_exadata_infrastructures[0].max_db_node_storage_size_in_g_bs #=> Integer
2024
+ # resp.cloud_exadata_infrastructures[0].max_memory_in_g_bs #=> Integer
2025
+ # resp.cloud_exadata_infrastructures[0].memory_size_in_g_bs #=> Integer
2026
+ # resp.cloud_exadata_infrastructures[0].monthly_db_server_version #=> String
2027
+ # resp.cloud_exadata_infrastructures[0].monthly_storage_server_version #=> String
2028
+ # resp.cloud_exadata_infrastructures[0].next_maintenance_run_id #=> String
2029
+ # resp.cloud_exadata_infrastructures[0].oci_resource_anchor_name #=> String
2030
+ # resp.cloud_exadata_infrastructures[0].oci_url #=> String
2031
+ # resp.cloud_exadata_infrastructures[0].ocid #=> String
2032
+ # resp.cloud_exadata_infrastructures[0].shape #=> String
2033
+ # resp.cloud_exadata_infrastructures[0].storage_count #=> Integer
2034
+ # resp.cloud_exadata_infrastructures[0].storage_server_version #=> String
2035
+ # resp.cloud_exadata_infrastructures[0].created_at #=> Time
2036
+ # resp.cloud_exadata_infrastructures[0].total_storage_size_in_g_bs #=> Integer
2037
+ # resp.cloud_exadata_infrastructures[0].percent_progress #=> Float
2038
+ # resp.cloud_exadata_infrastructures[0].database_server_type #=> String
2039
+ # resp.cloud_exadata_infrastructures[0].storage_server_type #=> String
2040
+ # resp.cloud_exadata_infrastructures[0].compute_model #=> String, one of "ECPU", "OCPU"
2041
+ #
2042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListCloudExadataInfrastructures AWS API Documentation
2043
+ #
2044
+ # @overload list_cloud_exadata_infrastructures(params = {})
2045
+ # @param [Hash] params ({})
2046
+ def list_cloud_exadata_infrastructures(params = {}, options = {})
2047
+ req = build_request(:list_cloud_exadata_infrastructures, params)
2048
+ req.send_request(options)
2049
+ end
2050
+
2051
+ # Returns information about the VM clusters owned by your Amazon Web
2052
+ # Services account or only the ones on the specified Exadata
2053
+ # infrastructure.
2054
+ #
2055
+ # @option params [Integer] :max_results
2056
+ # The maximum number of items to return for this request. To get the
2057
+ # next page of items, make another request with the token returned in
2058
+ # the output.
2059
+ #
2060
+ # Default: `10`
2061
+ #
2062
+ # @option params [String] :next_token
2063
+ # The token returned from a previous paginated request. Pagination
2064
+ # continues from the end of the items returned by the previous request.
2065
+ #
2066
+ # @option params [String] :cloud_exadata_infrastructure_id
2067
+ # The unique identifier of the Oracle Exadata infrastructure.
2068
+ #
2069
+ # @return [Types::ListCloudVmClustersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2070
+ #
2071
+ # * {Types::ListCloudVmClustersOutput#next_token #next_token} => String
2072
+ # * {Types::ListCloudVmClustersOutput#cloud_vm_clusters #cloud_vm_clusters} => Array&lt;Types::CloudVmClusterSummary&gt;
2073
+ #
2074
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2075
+ #
2076
+ # @example Request syntax with placeholder values
2077
+ #
2078
+ # resp = client.list_cloud_vm_clusters({
2079
+ # max_results: 1,
2080
+ # next_token: "ListCloudVmClustersInputNextTokenString",
2081
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn",
2082
+ # })
2083
+ #
2084
+ # @example Response structure
2085
+ #
2086
+ # resp.next_token #=> String
2087
+ # resp.cloud_vm_clusters #=> Array
2088
+ # resp.cloud_vm_clusters[0].cloud_vm_cluster_id #=> String
2089
+ # resp.cloud_vm_clusters[0].display_name #=> String
2090
+ # resp.cloud_vm_clusters[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
2091
+ # resp.cloud_vm_clusters[0].status_reason #=> String
2092
+ # resp.cloud_vm_clusters[0].cloud_vm_cluster_arn #=> String
2093
+ # resp.cloud_vm_clusters[0].cloud_exadata_infrastructure_id #=> String
2094
+ # resp.cloud_vm_clusters[0].cluster_name #=> String
2095
+ # resp.cloud_vm_clusters[0].cpu_core_count #=> Integer
2096
+ # resp.cloud_vm_clusters[0].data_collection_options.is_diagnostics_events_enabled #=> Boolean
2097
+ # resp.cloud_vm_clusters[0].data_collection_options.is_health_monitoring_enabled #=> Boolean
2098
+ # resp.cloud_vm_clusters[0].data_collection_options.is_incident_logs_enabled #=> Boolean
2099
+ # resp.cloud_vm_clusters[0].data_storage_size_in_t_bs #=> Float
2100
+ # resp.cloud_vm_clusters[0].db_node_storage_size_in_g_bs #=> Integer
2101
+ # resp.cloud_vm_clusters[0].db_servers #=> Array
2102
+ # resp.cloud_vm_clusters[0].db_servers[0] #=> String
2103
+ # resp.cloud_vm_clusters[0].disk_redundancy #=> String, one of "HIGH", "NORMAL"
2104
+ # resp.cloud_vm_clusters[0].gi_version #=> String
2105
+ # resp.cloud_vm_clusters[0].hostname #=> String
2106
+ # resp.cloud_vm_clusters[0].iorm_config_cache.db_plans #=> Array
2107
+ # resp.cloud_vm_clusters[0].iorm_config_cache.db_plans[0].db_name #=> String
2108
+ # resp.cloud_vm_clusters[0].iorm_config_cache.db_plans[0].flash_cache_limit #=> String
2109
+ # resp.cloud_vm_clusters[0].iorm_config_cache.db_plans[0].share #=> Integer
2110
+ # resp.cloud_vm_clusters[0].iorm_config_cache.lifecycle_details #=> String
2111
+ # resp.cloud_vm_clusters[0].iorm_config_cache.lifecycle_state #=> String, one of "BOOTSTRAPPING", "DISABLED", "ENABLED", "FAILED", "UPDATING"
2112
+ # resp.cloud_vm_clusters[0].iorm_config_cache.objective #=> String, one of "AUTO", "BALANCED", "BASIC", "HIGH_THROUGHPUT", "LOW_LATENCY"
2113
+ # resp.cloud_vm_clusters[0].is_local_backup_enabled #=> Boolean
2114
+ # resp.cloud_vm_clusters[0].is_sparse_diskgroup_enabled #=> Boolean
2115
+ # resp.cloud_vm_clusters[0].last_update_history_entry_id #=> String
2116
+ # resp.cloud_vm_clusters[0].license_model #=> String, one of "BRING_YOUR_OWN_LICENSE", "LICENSE_INCLUDED"
2117
+ # resp.cloud_vm_clusters[0].listener_port #=> Integer
2118
+ # resp.cloud_vm_clusters[0].memory_size_in_g_bs #=> Integer
2119
+ # resp.cloud_vm_clusters[0].node_count #=> Integer
2120
+ # resp.cloud_vm_clusters[0].ocid #=> String
2121
+ # resp.cloud_vm_clusters[0].oci_resource_anchor_name #=> String
2122
+ # resp.cloud_vm_clusters[0].oci_url #=> String
2123
+ # resp.cloud_vm_clusters[0].domain #=> String
2124
+ # resp.cloud_vm_clusters[0].scan_dns_name #=> String
2125
+ # resp.cloud_vm_clusters[0].scan_dns_record_id #=> String
2126
+ # resp.cloud_vm_clusters[0].scan_ip_ids #=> Array
2127
+ # resp.cloud_vm_clusters[0].scan_ip_ids[0] #=> String
2128
+ # resp.cloud_vm_clusters[0].shape #=> String
2129
+ # resp.cloud_vm_clusters[0].ssh_public_keys #=> Array
2130
+ # resp.cloud_vm_clusters[0].ssh_public_keys[0] #=> String
2131
+ # resp.cloud_vm_clusters[0].storage_size_in_g_bs #=> Integer
2132
+ # resp.cloud_vm_clusters[0].system_version #=> String
2133
+ # resp.cloud_vm_clusters[0].created_at #=> Time
2134
+ # resp.cloud_vm_clusters[0].time_zone #=> String
2135
+ # resp.cloud_vm_clusters[0].vip_ids #=> Array
2136
+ # resp.cloud_vm_clusters[0].vip_ids[0] #=> String
2137
+ # resp.cloud_vm_clusters[0].odb_network_id #=> String
2138
+ # resp.cloud_vm_clusters[0].percent_progress #=> Float
2139
+ # resp.cloud_vm_clusters[0].compute_model #=> String, one of "ECPU", "OCPU"
2140
+ #
2141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListCloudVmClusters AWS API Documentation
2142
+ #
2143
+ # @overload list_cloud_vm_clusters(params = {})
2144
+ # @param [Hash] params ({})
2145
+ def list_cloud_vm_clusters(params = {}, options = {})
2146
+ req = build_request(:list_cloud_vm_clusters, params)
2147
+ req.send_request(options)
2148
+ end
2149
+
2150
+ # Returns information about the DB nodes for the specified VM cluster.
2151
+ #
2152
+ # @option params [Integer] :max_results
2153
+ # The maximum number of items to return for this request. To get the
2154
+ # next page of items, make another request with the token returned in
2155
+ # the output.
2156
+ #
2157
+ # Default: `10`
2158
+ #
2159
+ # @option params [String] :next_token
2160
+ # The token returned from a previous paginated request. Pagination
2161
+ # continues from the end of the items returned by the previous request.
2162
+ #
2163
+ # @option params [required, String] :cloud_vm_cluster_id
2164
+ # The unique identifier of the VM cluster.
2165
+ #
2166
+ # @return [Types::ListDbNodesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2167
+ #
2168
+ # * {Types::ListDbNodesOutput#next_token #next_token} => String
2169
+ # * {Types::ListDbNodesOutput#db_nodes #db_nodes} => Array&lt;Types::DbNodeSummary&gt;
2170
+ #
2171
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2172
+ #
2173
+ # @example Request syntax with placeholder values
2174
+ #
2175
+ # resp = client.list_db_nodes({
2176
+ # max_results: 1,
2177
+ # next_token: "ListDbNodesInputNextTokenString",
2178
+ # cloud_vm_cluster_id: "ResourceId", # required
2179
+ # })
2180
+ #
2181
+ # @example Response structure
2182
+ #
2183
+ # resp.next_token #=> String
2184
+ # resp.db_nodes #=> Array
2185
+ # resp.db_nodes[0].db_node_id #=> String
2186
+ # resp.db_nodes[0].db_node_arn #=> String
2187
+ # resp.db_nodes[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "STOPPING", "STOPPED", "STARTING"
2188
+ # resp.db_nodes[0].status_reason #=> String
2189
+ # resp.db_nodes[0].additional_details #=> String
2190
+ # resp.db_nodes[0].backup_ip_id #=> String
2191
+ # resp.db_nodes[0].backup_vnic_2_id #=> String
2192
+ # resp.db_nodes[0].backup_vnic_id #=> String
2193
+ # resp.db_nodes[0].cpu_core_count #=> Integer
2194
+ # resp.db_nodes[0].db_node_storage_size_in_g_bs #=> Integer
2195
+ # resp.db_nodes[0].db_server_id #=> String
2196
+ # resp.db_nodes[0].db_system_id #=> String
2197
+ # resp.db_nodes[0].fault_domain #=> String
2198
+ # resp.db_nodes[0].host_ip_id #=> String
2199
+ # resp.db_nodes[0].hostname #=> String
2200
+ # resp.db_nodes[0].ocid #=> String
2201
+ # resp.db_nodes[0].oci_resource_anchor_name #=> String
2202
+ # resp.db_nodes[0].maintenance_type #=> String, one of "VMDB_REBOOT_MIGRATION"
2203
+ # resp.db_nodes[0].memory_size_in_g_bs #=> Integer
2204
+ # resp.db_nodes[0].software_storage_size_in_gb #=> Integer
2205
+ # resp.db_nodes[0].created_at #=> Time
2206
+ # resp.db_nodes[0].time_maintenance_window_end #=> String
2207
+ # resp.db_nodes[0].time_maintenance_window_start #=> String
2208
+ # resp.db_nodes[0].total_cpu_core_count #=> Integer
2209
+ # resp.db_nodes[0].vnic2_id #=> String
2210
+ # resp.db_nodes[0].vnic_id #=> String
2211
+ #
2212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListDbNodes AWS API Documentation
2213
+ #
2214
+ # @overload list_db_nodes(params = {})
2215
+ # @param [Hash] params ({})
2216
+ def list_db_nodes(params = {}, options = {})
2217
+ req = build_request(:list_db_nodes, params)
2218
+ req.send_request(options)
2219
+ end
2220
+
2221
+ # Returns information about the database servers that belong to the
2222
+ # specified Exadata infrastructure.
2223
+ #
2224
+ # @option params [required, String] :cloud_exadata_infrastructure_id
2225
+ # The unique identifier of the Oracle Exadata infrastructure.
2226
+ #
2227
+ # @option params [Integer] :max_results
2228
+ # The maximum number of items to return for this request. To get the
2229
+ # next page of items, make another request with the token returned in
2230
+ # the output.
2231
+ #
2232
+ # Default: `10`
2233
+ #
2234
+ # @option params [String] :next_token
2235
+ # The token returned from a previous paginated request. Pagination
2236
+ # continues from the end of the items returned by the previous request.
2237
+ #
2238
+ # @return [Types::ListDbServersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2239
+ #
2240
+ # * {Types::ListDbServersOutput#next_token #next_token} => String
2241
+ # * {Types::ListDbServersOutput#db_servers #db_servers} => Array&lt;Types::DbServerSummary&gt;
2242
+ #
2243
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2244
+ #
2245
+ # @example Request syntax with placeholder values
2246
+ #
2247
+ # resp = client.list_db_servers({
2248
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
2249
+ # max_results: 1,
2250
+ # next_token: "ListDbServersInputNextTokenString",
2251
+ # })
2252
+ #
2253
+ # @example Response structure
2254
+ #
2255
+ # resp.next_token #=> String
2256
+ # resp.db_servers #=> Array
2257
+ # resp.db_servers[0].db_server_id #=> String
2258
+ # resp.db_servers[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
2259
+ # resp.db_servers[0].status_reason #=> String
2260
+ # resp.db_servers[0].cpu_core_count #=> Integer
2261
+ # resp.db_servers[0].db_node_storage_size_in_g_bs #=> Integer
2262
+ # resp.db_servers[0].db_server_patching_details.estimated_patch_duration #=> Integer
2263
+ # resp.db_servers[0].db_server_patching_details.patching_status #=> String, one of "COMPLETE", "FAILED", "MAINTENANCE_IN_PROGRESS", "SCHEDULED"
2264
+ # resp.db_servers[0].db_server_patching_details.time_patching_ended #=> String
2265
+ # resp.db_servers[0].db_server_patching_details.time_patching_started #=> String
2266
+ # resp.db_servers[0].display_name #=> String
2267
+ # resp.db_servers[0].exadata_infrastructure_id #=> String
2268
+ # resp.db_servers[0].ocid #=> String
2269
+ # resp.db_servers[0].oci_resource_anchor_name #=> String
2270
+ # resp.db_servers[0].max_cpu_count #=> Integer
2271
+ # resp.db_servers[0].max_db_node_storage_in_g_bs #=> Integer
2272
+ # resp.db_servers[0].max_memory_in_g_bs #=> Integer
2273
+ # resp.db_servers[0].memory_size_in_g_bs #=> Integer
2274
+ # resp.db_servers[0].shape #=> String
2275
+ # resp.db_servers[0].created_at #=> Time
2276
+ # resp.db_servers[0].vm_cluster_ids #=> Array
2277
+ # resp.db_servers[0].vm_cluster_ids[0] #=> String
2278
+ # resp.db_servers[0].compute_model #=> String, one of "ECPU", "OCPU"
2279
+ # resp.db_servers[0].autonomous_vm_cluster_ids #=> Array
2280
+ # resp.db_servers[0].autonomous_vm_cluster_ids[0] #=> String
2281
+ # resp.db_servers[0].autonomous_virtual_machine_ids #=> Array
2282
+ # resp.db_servers[0].autonomous_virtual_machine_ids[0] #=> String
2283
+ #
2284
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListDbServers AWS API Documentation
2285
+ #
2286
+ # @overload list_db_servers(params = {})
2287
+ # @param [Hash] params ({})
2288
+ def list_db_servers(params = {}, options = {})
2289
+ req = build_request(:list_db_servers, params)
2290
+ req.send_request(options)
2291
+ end
2292
+
2293
+ # Returns information about the shapes that are available for an Exadata
2294
+ # infrastructure.
2295
+ #
2296
+ # @option params [Integer] :max_results
2297
+ # The maximum number of items to return for this request. To get the
2298
+ # next page of items, make another request with the token returned in
2299
+ # the output.
2300
+ #
2301
+ # Default: `10`
2302
+ #
2303
+ # @option params [String] :next_token
2304
+ # The token returned from a previous paginated request. Pagination
2305
+ # continues from the end of the items returned by the previous request.
2306
+ #
2307
+ # @option params [String] :availability_zone
2308
+ # The logical name of the AZ, for example, us-east-1a. This name varies
2309
+ # depending on the account.
2310
+ #
2311
+ # @option params [String] :availability_zone_id
2312
+ # The physical ID of the AZ, for example, use1-az4. This ID persists
2313
+ # across accounts.
2314
+ #
2315
+ # @return [Types::ListDbSystemShapesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2316
+ #
2317
+ # * {Types::ListDbSystemShapesOutput#next_token #next_token} => String
2318
+ # * {Types::ListDbSystemShapesOutput#db_system_shapes #db_system_shapes} => Array&lt;Types::DbSystemShapeSummary&gt;
2319
+ #
2320
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2321
+ #
2322
+ # @example Request syntax with placeholder values
2323
+ #
2324
+ # resp = client.list_db_system_shapes({
2325
+ # max_results: 1,
2326
+ # next_token: "ListDbSystemShapesInputNextTokenString",
2327
+ # availability_zone: "ListDbSystemShapesInputAvailabilityZoneString",
2328
+ # availability_zone_id: "ListDbSystemShapesInputAvailabilityZoneIdString",
2329
+ # })
2330
+ #
2331
+ # @example Response structure
2332
+ #
2333
+ # resp.next_token #=> String
2334
+ # resp.db_system_shapes #=> Array
2335
+ # resp.db_system_shapes[0].available_core_count #=> Integer
2336
+ # resp.db_system_shapes[0].available_core_count_per_node #=> Integer
2337
+ # resp.db_system_shapes[0].available_data_storage_in_t_bs #=> Integer
2338
+ # resp.db_system_shapes[0].available_data_storage_per_server_in_t_bs #=> Integer
2339
+ # resp.db_system_shapes[0].available_db_node_per_node_in_g_bs #=> Integer
2340
+ # resp.db_system_shapes[0].available_db_node_storage_in_g_bs #=> Integer
2341
+ # resp.db_system_shapes[0].available_memory_in_g_bs #=> Integer
2342
+ # resp.db_system_shapes[0].available_memory_per_node_in_g_bs #=> Integer
2343
+ # resp.db_system_shapes[0].core_count_increment #=> Integer
2344
+ # resp.db_system_shapes[0].max_storage_count #=> Integer
2345
+ # resp.db_system_shapes[0].maximum_node_count #=> Integer
2346
+ # resp.db_system_shapes[0].min_core_count_per_node #=> Integer
2347
+ # resp.db_system_shapes[0].min_data_storage_in_t_bs #=> Integer
2348
+ # resp.db_system_shapes[0].min_db_node_storage_per_node_in_g_bs #=> Integer
2349
+ # resp.db_system_shapes[0].min_memory_per_node_in_g_bs #=> Integer
2350
+ # resp.db_system_shapes[0].min_storage_count #=> Integer
2351
+ # resp.db_system_shapes[0].minimum_core_count #=> Integer
2352
+ # resp.db_system_shapes[0].minimum_node_count #=> Integer
2353
+ # resp.db_system_shapes[0].runtime_minimum_core_count #=> Integer
2354
+ # resp.db_system_shapes[0].shape_family #=> String
2355
+ # resp.db_system_shapes[0].shape_type #=> String, one of "AMD", "INTEL", "INTEL_FLEX_X9", "AMPERE_FLEX_A1"
2356
+ # resp.db_system_shapes[0].name #=> String
2357
+ # resp.db_system_shapes[0].compute_model #=> String, one of "ECPU", "OCPU"
2358
+ # resp.db_system_shapes[0].are_server_types_supported #=> Boolean
2359
+ #
2360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListDbSystemShapes AWS API Documentation
2361
+ #
2362
+ # @overload list_db_system_shapes(params = {})
2363
+ # @param [Hash] params ({})
2364
+ def list_db_system_shapes(params = {}, options = {})
2365
+ req = build_request(:list_db_system_shapes, params)
2366
+ req.send_request(options)
2367
+ end
2368
+
2369
+ # Returns information about Oracle Grid Infrastructure (GI) software
2370
+ # versions that are available for a VM cluster for the specified shape.
2371
+ #
2372
+ # @option params [Integer] :max_results
2373
+ # The maximum number of items to return for this request. To get the
2374
+ # next page of items, make another request with the token returned in
2375
+ # the output.
2376
+ #
2377
+ # Default: `10`
2378
+ #
2379
+ # @option params [String] :next_token
2380
+ # The token returned from a previous paginated request. Pagination
2381
+ # continues from the end of the items returned by the previous request.
2382
+ #
2383
+ # @option params [String] :shape
2384
+ # The shape to return GI versions for. For a list of valid shapes, use
2385
+ # the `ListDbSystemShapes` operation..
2386
+ #
2387
+ # @return [Types::ListGiVersionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2388
+ #
2389
+ # * {Types::ListGiVersionsOutput#next_token #next_token} => String
2390
+ # * {Types::ListGiVersionsOutput#gi_versions #gi_versions} => Array&lt;Types::GiVersionSummary&gt;
2391
+ #
2392
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2393
+ #
2394
+ # @example Request syntax with placeholder values
2395
+ #
2396
+ # resp = client.list_gi_versions({
2397
+ # max_results: 1,
2398
+ # next_token: "ListGiVersionsInputNextTokenString",
2399
+ # shape: "ListGiVersionsInputShapeString",
2400
+ # })
2401
+ #
2402
+ # @example Response structure
2403
+ #
2404
+ # resp.next_token #=> String
2405
+ # resp.gi_versions #=> Array
2406
+ # resp.gi_versions[0].version #=> String
2407
+ #
2408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListGiVersions AWS API Documentation
2409
+ #
2410
+ # @overload list_gi_versions(params = {})
2411
+ # @param [Hash] params ({})
2412
+ def list_gi_versions(params = {}, options = {})
2413
+ req = build_request(:list_gi_versions, params)
2414
+ req.send_request(options)
2415
+ end
2416
+
2417
+ # Returns information about the ODB networks owned by your Amazon Web
2418
+ # Services account.
2419
+ #
2420
+ # @option params [Integer] :max_results
2421
+ # The maximum number of items to return for this request. To get the
2422
+ # next page of items, make another request with the token returned in
2423
+ # the output.
2424
+ #
2425
+ # Default: `10`
2426
+ #
2427
+ # @option params [String] :next_token
2428
+ # The token returned from a previous paginated request. Pagination
2429
+ # continues from the end of the items returned by the previous request.
2430
+ #
2431
+ # @return [Types::ListOdbNetworksOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2432
+ #
2433
+ # * {Types::ListOdbNetworksOutput#next_token #next_token} => String
2434
+ # * {Types::ListOdbNetworksOutput#odb_networks #odb_networks} => Array&lt;Types::OdbNetworkSummary&gt;
2435
+ #
2436
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2437
+ #
2438
+ # @example Request syntax with placeholder values
2439
+ #
2440
+ # resp = client.list_odb_networks({
2441
+ # max_results: 1,
2442
+ # next_token: "ListOdbNetworksInputNextTokenString",
2443
+ # })
2444
+ #
2445
+ # @example Response structure
2446
+ #
2447
+ # resp.next_token #=> String
2448
+ # resp.odb_networks #=> Array
2449
+ # resp.odb_networks[0].odb_network_id #=> String
2450
+ # resp.odb_networks[0].display_name #=> String
2451
+ # resp.odb_networks[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
2452
+ # resp.odb_networks[0].status_reason #=> String
2453
+ # resp.odb_networks[0].odb_network_arn #=> String
2454
+ # resp.odb_networks[0].availability_zone #=> String
2455
+ # resp.odb_networks[0].availability_zone_id #=> String
2456
+ # resp.odb_networks[0].client_subnet_cidr #=> String
2457
+ # resp.odb_networks[0].backup_subnet_cidr #=> String
2458
+ # resp.odb_networks[0].custom_domain_name #=> String
2459
+ # resp.odb_networks[0].default_dns_prefix #=> String
2460
+ # resp.odb_networks[0].peered_cidrs #=> Array
2461
+ # resp.odb_networks[0].peered_cidrs[0] #=> String
2462
+ # resp.odb_networks[0].oci_network_anchor_id #=> String
2463
+ # resp.odb_networks[0].oci_network_anchor_url #=> String
2464
+ # resp.odb_networks[0].oci_resource_anchor_name #=> String
2465
+ # resp.odb_networks[0].oci_vcn_id #=> String
2466
+ # resp.odb_networks[0].oci_vcn_url #=> String
2467
+ # resp.odb_networks[0].oci_dns_forwarding_configs #=> Array
2468
+ # resp.odb_networks[0].oci_dns_forwarding_configs[0].domain_name #=> String
2469
+ # resp.odb_networks[0].oci_dns_forwarding_configs[0].oci_dns_listener_ip #=> String
2470
+ # resp.odb_networks[0].created_at #=> Time
2471
+ # resp.odb_networks[0].percent_progress #=> Float
2472
+ # resp.odb_networks[0].managed_services.service_network_arn #=> String
2473
+ # resp.odb_networks[0].managed_services.resource_gateway_arn #=> String
2474
+ # resp.odb_networks[0].managed_services.managed_services_ipv_4_cidrs #=> Array
2475
+ # resp.odb_networks[0].managed_services.managed_services_ipv_4_cidrs[0] #=> String
2476
+ # resp.odb_networks[0].managed_services.service_network_endpoint.vpc_endpoint_id #=> String
2477
+ # resp.odb_networks[0].managed_services.service_network_endpoint.vpc_endpoint_type #=> String, one of "SERVICENETWORK"
2478
+ # resp.odb_networks[0].managed_services.managed_s3_backup_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
2479
+ # resp.odb_networks[0].managed_services.managed_s3_backup_access.ipv4_addresses #=> Array
2480
+ # resp.odb_networks[0].managed_services.managed_s3_backup_access.ipv4_addresses[0] #=> String
2481
+ # resp.odb_networks[0].managed_services.zero_etl_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
2482
+ # resp.odb_networks[0].managed_services.zero_etl_access.cidr #=> String
2483
+ # resp.odb_networks[0].managed_services.s3_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
2484
+ # resp.odb_networks[0].managed_services.s3_access.ipv4_addresses #=> Array
2485
+ # resp.odb_networks[0].managed_services.s3_access.ipv4_addresses[0] #=> String
2486
+ # resp.odb_networks[0].managed_services.s3_access.domain_name #=> String
2487
+ # resp.odb_networks[0].managed_services.s3_access.s3_policy_document #=> String
2488
+ #
2489
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListOdbNetworks AWS API Documentation
2490
+ #
2491
+ # @overload list_odb_networks(params = {})
2492
+ # @param [Hash] params ({})
2493
+ def list_odb_networks(params = {}, options = {})
2494
+ req = build_request(:list_odb_networks, params)
2495
+ req.send_request(options)
2496
+ end
2497
+
2498
+ # Lists all ODB peering connections or those associated with a specific
2499
+ # ODB network.
2500
+ #
2501
+ # @option params [Integer] :max_results
2502
+ # The maximum number of ODB peering connections to return in the
2503
+ # response.
2504
+ #
2505
+ # Default: `20`
2506
+ #
2507
+ # Constraints:
2508
+ #
2509
+ # * Must be between 1 and 100.
2510
+ #
2511
+ # ^
2512
+ #
2513
+ # @option params [String] :next_token
2514
+ # The pagination token for the next page of ODB peering connections.
2515
+ #
2516
+ # @option params [String] :odb_network_id
2517
+ # The identifier of the ODB network to list peering connections for.
2518
+ #
2519
+ # If not specified, lists all ODB peering connections in the account.
2520
+ #
2521
+ # @return [Types::ListOdbPeeringConnectionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2522
+ #
2523
+ # * {Types::ListOdbPeeringConnectionsOutput#next_token #next_token} => String
2524
+ # * {Types::ListOdbPeeringConnectionsOutput#odb_peering_connections #odb_peering_connections} => Array&lt;Types::OdbPeeringConnectionSummary&gt;
2525
+ #
2526
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2527
+ #
2528
+ # @example Request syntax with placeholder values
2529
+ #
2530
+ # resp = client.list_odb_peering_connections({
2531
+ # max_results: 1,
2532
+ # next_token: "ListOdbPeeringConnectionsInputNextTokenString",
2533
+ # odb_network_id: "ResourceIdOrArn",
2534
+ # })
2535
+ #
2536
+ # @example Response structure
2537
+ #
2538
+ # resp.next_token #=> String
2539
+ # resp.odb_peering_connections #=> Array
2540
+ # resp.odb_peering_connections[0].odb_peering_connection_id #=> String
2541
+ # resp.odb_peering_connections[0].display_name #=> String
2542
+ # resp.odb_peering_connections[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
2543
+ # resp.odb_peering_connections[0].status_reason #=> String
2544
+ # resp.odb_peering_connections[0].odb_peering_connection_arn #=> String
2545
+ # resp.odb_peering_connections[0].odb_network_arn #=> String
2546
+ # resp.odb_peering_connections[0].peer_network_arn #=> String
2547
+ # resp.odb_peering_connections[0].odb_peering_connection_type #=> String
2548
+ # resp.odb_peering_connections[0].created_at #=> Time
2549
+ # resp.odb_peering_connections[0].percent_progress #=> Float
2550
+ #
2551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListOdbPeeringConnections AWS API Documentation
2552
+ #
2553
+ # @overload list_odb_peering_connections(params = {})
2554
+ # @param [Hash] params ({})
2555
+ def list_odb_peering_connections(params = {}, options = {})
2556
+ req = build_request(:list_odb_peering_connections, params)
2557
+ req.send_request(options)
2558
+ end
2559
+
2560
+ # Returns information about the system versions that are available for a
2561
+ # VM cluster for the specified `giVersion` and `shape`.
2562
+ #
2563
+ # @option params [Integer] :max_results
2564
+ # The maximum number of items to return for this request. To get the
2565
+ # next page of items, make another request with the token returned in
2566
+ # the output.
2567
+ #
2568
+ # Default: `10`
2569
+ #
2570
+ # @option params [String] :next_token
2571
+ # The token returned from a previous paginated request. Pagination
2572
+ # continues from the end of the items returned by the previous request.
2573
+ #
2574
+ # @option params [required, String] :gi_version
2575
+ # The software version of the Exadata Grid Infrastructure (GI).
2576
+ #
2577
+ # @option params [required, String] :shape
2578
+ # The Exadata hardware system model.
2579
+ #
2580
+ # @return [Types::ListSystemVersionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2581
+ #
2582
+ # * {Types::ListSystemVersionsOutput#next_token #next_token} => String
2583
+ # * {Types::ListSystemVersionsOutput#system_versions #system_versions} => Array&lt;Types::SystemVersionSummary&gt;
2584
+ #
2585
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2586
+ #
2587
+ # @example Request syntax with placeholder values
2588
+ #
2589
+ # resp = client.list_system_versions({
2590
+ # max_results: 1,
2591
+ # next_token: "ListSystemVersionsInputNextTokenString",
2592
+ # gi_version: "ListSystemVersionsInputGiVersionString", # required
2593
+ # shape: "ListSystemVersionsInputShapeString", # required
2594
+ # })
2595
+ #
2596
+ # @example Response structure
2597
+ #
2598
+ # resp.next_token #=> String
2599
+ # resp.system_versions #=> Array
2600
+ # resp.system_versions[0].gi_version #=> String
2601
+ # resp.system_versions[0].shape #=> String
2602
+ # resp.system_versions[0].system_versions #=> Array
2603
+ # resp.system_versions[0].system_versions[0] #=> String
2604
+ #
2605
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListSystemVersions AWS API Documentation
2606
+ #
2607
+ # @overload list_system_versions(params = {})
2608
+ # @param [Hash] params ({})
2609
+ def list_system_versions(params = {}, options = {})
2610
+ req = build_request(:list_system_versions, params)
2611
+ req.send_request(options)
2612
+ end
2613
+
2614
+ # Returns information about the tags applied to this resource.
2615
+ #
2616
+ # @option params [required, String] :resource_arn
2617
+ # The Amazon Resource Name (ARN) of the resource to list tags for.
2618
+ #
2619
+ # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2620
+ #
2621
+ # * {Types::ListTagsForResourceResponse#tags #tags} => Hash&lt;String,String&gt;
2622
+ #
2623
+ # @example Request syntax with placeholder values
2624
+ #
2625
+ # resp = client.list_tags_for_resource({
2626
+ # resource_arn: "ResourceArn", # required
2627
+ # })
2628
+ #
2629
+ # @example Response structure
2630
+ #
2631
+ # resp.tags #=> Hash
2632
+ # resp.tags["TagKey"] #=> String
2633
+ #
2634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListTagsForResource AWS API Documentation
2635
+ #
2636
+ # @overload list_tags_for_resource(params = {})
2637
+ # @param [Hash] params ({})
2638
+ def list_tags_for_resource(params = {}, options = {})
2639
+ req = build_request(:list_tags_for_resource, params)
2640
+ req.send_request(options)
2641
+ end
2642
+
2643
+ # Reboots the specified DB node in a VM cluster.
2644
+ #
2645
+ # @option params [required, String] :cloud_vm_cluster_id
2646
+ # The unique identifier of the VM cluster that contains the DB node to
2647
+ # reboot.
2648
+ #
2649
+ # @option params [required, String] :db_node_id
2650
+ # The unique identifier of the DB node to reboot.
2651
+ #
2652
+ # @return [Types::RebootDbNodeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2653
+ #
2654
+ # * {Types::RebootDbNodeOutput#db_node_id #db_node_id} => String
2655
+ # * {Types::RebootDbNodeOutput#status #status} => String
2656
+ # * {Types::RebootDbNodeOutput#status_reason #status_reason} => String
2657
+ #
2658
+ # @example Request syntax with placeholder values
2659
+ #
2660
+ # resp = client.reboot_db_node({
2661
+ # cloud_vm_cluster_id: "ResourceId", # required
2662
+ # db_node_id: "ResourceId", # required
2663
+ # })
2664
+ #
2665
+ # @example Response structure
2666
+ #
2667
+ # resp.db_node_id #=> String
2668
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "STOPPING", "STOPPED", "STARTING"
2669
+ # resp.status_reason #=> String
2670
+ #
2671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/RebootDbNode AWS API Documentation
2672
+ #
2673
+ # @overload reboot_db_node(params = {})
2674
+ # @param [Hash] params ({})
2675
+ def reboot_db_node(params = {}, options = {})
2676
+ req = build_request(:reboot_db_node, params)
2677
+ req.send_request(options)
2678
+ end
2679
+
2680
+ # Starts the specified DB node in a VM cluster.
2681
+ #
2682
+ # @option params [required, String] :cloud_vm_cluster_id
2683
+ # The unique identifier of the VM cluster that contains the DB node to
2684
+ # start.
2685
+ #
2686
+ # @option params [required, String] :db_node_id
2687
+ # The unique identifier of the DB node to start.
2688
+ #
2689
+ # @return [Types::StartDbNodeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2690
+ #
2691
+ # * {Types::StartDbNodeOutput#db_node_id #db_node_id} => String
2692
+ # * {Types::StartDbNodeOutput#status #status} => String
2693
+ # * {Types::StartDbNodeOutput#status_reason #status_reason} => String
2694
+ #
2695
+ # @example Request syntax with placeholder values
2696
+ #
2697
+ # resp = client.start_db_node({
2698
+ # cloud_vm_cluster_id: "ResourceId", # required
2699
+ # db_node_id: "ResourceId", # required
2700
+ # })
2701
+ #
2702
+ # @example Response structure
2703
+ #
2704
+ # resp.db_node_id #=> String
2705
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "STOPPING", "STOPPED", "STARTING"
2706
+ # resp.status_reason #=> String
2707
+ #
2708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/StartDbNode AWS API Documentation
2709
+ #
2710
+ # @overload start_db_node(params = {})
2711
+ # @param [Hash] params ({})
2712
+ def start_db_node(params = {}, options = {})
2713
+ req = build_request(:start_db_node, params)
2714
+ req.send_request(options)
2715
+ end
2716
+
2717
+ # Stops the specified DB node in a VM cluster.
2718
+ #
2719
+ # @option params [required, String] :cloud_vm_cluster_id
2720
+ # The unique identifier of the VM cluster that contains the DB node to
2721
+ # stop.
2722
+ #
2723
+ # @option params [required, String] :db_node_id
2724
+ # The unique identifier of the DB node to stop.
2725
+ #
2726
+ # @return [Types::StopDbNodeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2727
+ #
2728
+ # * {Types::StopDbNodeOutput#db_node_id #db_node_id} => String
2729
+ # * {Types::StopDbNodeOutput#status #status} => String
2730
+ # * {Types::StopDbNodeOutput#status_reason #status_reason} => String
2731
+ #
2732
+ # @example Request syntax with placeholder values
2733
+ #
2734
+ # resp = client.stop_db_node({
2735
+ # cloud_vm_cluster_id: "ResourceId", # required
2736
+ # db_node_id: "ResourceId", # required
2737
+ # })
2738
+ #
2739
+ # @example Response structure
2740
+ #
2741
+ # resp.db_node_id #=> String
2742
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "STOPPING", "STOPPED", "STARTING"
2743
+ # resp.status_reason #=> String
2744
+ #
2745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/StopDbNode AWS API Documentation
2746
+ #
2747
+ # @overload stop_db_node(params = {})
2748
+ # @param [Hash] params ({})
2749
+ def stop_db_node(params = {}, options = {})
2750
+ req = build_request(:stop_db_node, params)
2751
+ req.send_request(options)
2752
+ end
2753
+
2754
+ # Applies tags to the specified resource.
2755
+ #
2756
+ # @option params [required, String] :resource_arn
2757
+ # The Amazon Resource Name (ARN) of the resource to apply tags to.
2758
+ #
2759
+ # @option params [required, Hash<String,String>] :tags
2760
+ # The list of tags to apply to the resource.
2761
+ #
2762
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2763
+ #
2764
+ # @example Request syntax with placeholder values
2765
+ #
2766
+ # resp = client.tag_resource({
2767
+ # resource_arn: "ResourceArn", # required
2768
+ # tags: { # required
2769
+ # "TagKey" => "TagValue",
2770
+ # },
2771
+ # })
2772
+ #
2773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/TagResource AWS API Documentation
2774
+ #
2775
+ # @overload tag_resource(params = {})
2776
+ # @param [Hash] params ({})
2777
+ def tag_resource(params = {}, options = {})
2778
+ req = build_request(:tag_resource, params)
2779
+ req.send_request(options)
2780
+ end
2781
+
2782
+ # Removes tags from the specified resource.
2783
+ #
2784
+ # @option params [required, String] :resource_arn
2785
+ # The Amazon Resource Name (ARN) of the resource to remove tags from.
2786
+ #
2787
+ # @option params [required, Array<String>] :tag_keys
2788
+ # The names (keys) of the tags to remove from the resource.
2789
+ #
2790
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2791
+ #
2792
+ # @example Request syntax with placeholder values
2793
+ #
2794
+ # resp = client.untag_resource({
2795
+ # resource_arn: "ResourceArn", # required
2796
+ # tag_keys: ["TagKey"], # required
2797
+ # })
2798
+ #
2799
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/UntagResource AWS API Documentation
2800
+ #
2801
+ # @overload untag_resource(params = {})
2802
+ # @param [Hash] params ({})
2803
+ def untag_resource(params = {}, options = {})
2804
+ req = build_request(:untag_resource, params)
2805
+ req.send_request(options)
2806
+ end
2807
+
2808
+ # Updates the properties of an Exadata infrastructure resource.
2809
+ #
2810
+ # @option params [required, String] :cloud_exadata_infrastructure_id
2811
+ # The unique identifier of the Exadata infrastructure to update.
2812
+ #
2813
+ # @option params [Types::MaintenanceWindow] :maintenance_window
2814
+ # The scheduling details for the maintenance window. Patching and system
2815
+ # updates take place during the maintenance window.
2816
+ #
2817
+ # @return [Types::UpdateCloudExadataInfrastructureOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2818
+ #
2819
+ # * {Types::UpdateCloudExadataInfrastructureOutput#display_name #display_name} => String
2820
+ # * {Types::UpdateCloudExadataInfrastructureOutput#status #status} => String
2821
+ # * {Types::UpdateCloudExadataInfrastructureOutput#status_reason #status_reason} => String
2822
+ # * {Types::UpdateCloudExadataInfrastructureOutput#cloud_exadata_infrastructure_id #cloud_exadata_infrastructure_id} => String
2823
+ #
2824
+ # @example Request syntax with placeholder values
2825
+ #
2826
+ # resp = client.update_cloud_exadata_infrastructure({
2827
+ # cloud_exadata_infrastructure_id: "ResourceIdOrArn", # required
2828
+ # maintenance_window: {
2829
+ # custom_action_timeout_in_mins: 1,
2830
+ # days_of_week: [
2831
+ # {
2832
+ # name: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
2833
+ # },
2834
+ # ],
2835
+ # hours_of_day: [1],
2836
+ # is_custom_action_timeout_enabled: false,
2837
+ # lead_time_in_weeks: 1,
2838
+ # months: [
2839
+ # {
2840
+ # name: "JANUARY", # accepts JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER
2841
+ # },
2842
+ # ],
2843
+ # patching_mode: "ROLLING", # accepts ROLLING, NONROLLING
2844
+ # preference: "NO_PREFERENCE", # accepts NO_PREFERENCE, CUSTOM_PREFERENCE
2845
+ # skip_ru: false,
2846
+ # weeks_of_month: [1],
2847
+ # },
2848
+ # })
2849
+ #
2850
+ # @example Response structure
2851
+ #
2852
+ # resp.display_name #=> String
2853
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
2854
+ # resp.status_reason #=> String
2855
+ # resp.cloud_exadata_infrastructure_id #=> String
2856
+ #
2857
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/UpdateCloudExadataInfrastructure AWS API Documentation
2858
+ #
2859
+ # @overload update_cloud_exadata_infrastructure(params = {})
2860
+ # @param [Hash] params ({})
2861
+ def update_cloud_exadata_infrastructure(params = {}, options = {})
2862
+ req = build_request(:update_cloud_exadata_infrastructure, params)
2863
+ req.send_request(options)
2864
+ end
2865
+
2866
+ # Updates properties of a specified ODB network.
2867
+ #
2868
+ # @option params [required, String] :odb_network_id
2869
+ # The unique identifier of the ODB network to update.
2870
+ #
2871
+ # @option params [String] :display_name
2872
+ # The new user-friendly name of the ODB network.
2873
+ #
2874
+ # @option params [Array<String>] :peered_cidrs_to_be_added
2875
+ # The list of CIDR ranges from the peered VPC that allow access to the
2876
+ # ODB network.
2877
+ #
2878
+ # @option params [Array<String>] :peered_cidrs_to_be_removed
2879
+ # The list of CIDR ranges from the peered VPC to remove from the ODB
2880
+ # network.
2881
+ #
2882
+ # @option params [String] :s3_access
2883
+ # Specifies the updated configuration for Amazon S3 access from the ODB
2884
+ # network.
2885
+ #
2886
+ # @option params [String] :zero_etl_access
2887
+ # Specifies the updated configuration for Zero-ETL access from the ODB
2888
+ # network.
2889
+ #
2890
+ # @option params [String] :s3_policy_document
2891
+ # Specifies the updated endpoint policy for Amazon S3 access from the
2892
+ # ODB network.
2893
+ #
2894
+ # @return [Types::UpdateOdbNetworkOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2895
+ #
2896
+ # * {Types::UpdateOdbNetworkOutput#display_name #display_name} => String
2897
+ # * {Types::UpdateOdbNetworkOutput#status #status} => String
2898
+ # * {Types::UpdateOdbNetworkOutput#status_reason #status_reason} => String
2899
+ # * {Types::UpdateOdbNetworkOutput#odb_network_id #odb_network_id} => String
2900
+ #
2901
+ # @example Request syntax with placeholder values
2902
+ #
2903
+ # resp = client.update_odb_network({
2904
+ # odb_network_id: "ResourceIdOrArn", # required
2905
+ # display_name: "ResourceDisplayName",
2906
+ # peered_cidrs_to_be_added: ["String"],
2907
+ # peered_cidrs_to_be_removed: ["String"],
2908
+ # s3_access: "ENABLED", # accepts ENABLED, DISABLED
2909
+ # zero_etl_access: "ENABLED", # accepts ENABLED, DISABLED
2910
+ # s3_policy_document: "PolicyDocument",
2911
+ # })
2912
+ #
2913
+ # @example Response structure
2914
+ #
2915
+ # resp.display_name #=> String
2916
+ # resp.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
2917
+ # resp.status_reason #=> String
2918
+ # resp.odb_network_id #=> String
2919
+ #
2920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/UpdateOdbNetwork AWS API Documentation
2921
+ #
2922
+ # @overload update_odb_network(params = {})
2923
+ # @param [Hash] params ({})
2924
+ def update_odb_network(params = {}, options = {})
2925
+ req = build_request(:update_odb_network, params)
2926
+ req.send_request(options)
2927
+ end
2928
+
2929
+ # @!endgroup
2930
+
2931
+ # @param params ({})
2932
+ # @api private
2933
+ def build_request(operation_name, params = {})
2934
+ handlers = @handlers.for(operation_name)
2935
+ tracer = config.telemetry_provider.tracer_provider.tracer(
2936
+ Aws::Telemetry.module_to_tracer_name('Aws::Odb')
2937
+ )
2938
+ context = Seahorse::Client::RequestContext.new(
2939
+ operation_name: operation_name,
2940
+ operation: config.api.operation(operation_name),
2941
+ client: self,
2942
+ params: params,
2943
+ config: config,
2944
+ tracer: tracer
2945
+ )
2946
+ context[:gem_name] = 'aws-sdk-odb'
2947
+ context[:gem_version] = '1.0.0'
2948
+ Seahorse::Client::Request.new(handlers, context)
2949
+ end
2950
+
2951
+ # @api private
2952
+ # @deprecated
2953
+ def waiter_names
2954
+ []
2955
+ end
2956
+
2957
+ class << self
2958
+
2959
+ # @api private
2960
+ attr_reader :identifier
2961
+
2962
+ # @api private
2963
+ def errors_module
2964
+ Errors
2965
+ end
2966
+
2967
+ end
2968
+ end
2969
+ end