aws-sdk-odb 1.7.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-odb/client.rb +183 -1
- data/lib/aws-sdk-odb/client_api.rb +111 -0
- data/lib/aws-sdk-odb/types.rb +335 -25
- data/lib/aws-sdk-odb.rb +1 -1
- data/sig/client.rbs +36 -1
- data/sig/types.rbs +81 -1
- metadata +3 -3
data/lib/aws-sdk-odb/types.rb
CHANGED
|
@@ -41,6 +41,35 @@ module Aws::Odb
|
|
|
41
41
|
include Aws::Structure
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
# @!attribute [rw] iam_role_arn
|
|
45
|
+
# The Amazon Resource Name (ARN) of the IAM service role to associate
|
|
46
|
+
# with the resource.
|
|
47
|
+
# @return [String]
|
|
48
|
+
#
|
|
49
|
+
# @!attribute [rw] aws_integration
|
|
50
|
+
# The Amazon Web Services integration configuration settings for the
|
|
51
|
+
# IAM service role association.
|
|
52
|
+
# @return [String]
|
|
53
|
+
#
|
|
54
|
+
# @!attribute [rw] resource_arn
|
|
55
|
+
# The Amazon Resource Name (ARN) of the target resource to associate
|
|
56
|
+
# with the IAM service role.
|
|
57
|
+
# @return [String]
|
|
58
|
+
#
|
|
59
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AssociateIamRoleToResourceInput AWS API Documentation
|
|
60
|
+
#
|
|
61
|
+
class AssociateIamRoleToResourceInput < Struct.new(
|
|
62
|
+
:iam_role_arn,
|
|
63
|
+
:aws_integration,
|
|
64
|
+
:resource_arn)
|
|
65
|
+
SENSITIVE = []
|
|
66
|
+
include Aws::Structure
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AssociateIamRoleToResourceOutput AWS API Documentation
|
|
70
|
+
#
|
|
71
|
+
class AssociateIamRoleToResourceOutput < Aws::EmptyStructure; end
|
|
72
|
+
|
|
44
73
|
# A summary of an Autonomous Virtual Machine (VM) within an Autonomous
|
|
45
74
|
# VM cluster.
|
|
46
75
|
#
|
|
@@ -263,7 +292,6 @@ module Aws::Odb
|
|
|
263
292
|
#
|
|
264
293
|
# @!attribute [rw] license_model
|
|
265
294
|
# The Oracle license model that applies to the Autonomous VM cluster.
|
|
266
|
-
# Valid values are `LICENSE_INCLUDED` or `BRING_YOUR_OWN_LICENSE`.
|
|
267
295
|
# @return [String]
|
|
268
296
|
#
|
|
269
297
|
# @!attribute [rw] maintenance_window
|
|
@@ -1408,6 +1436,11 @@ module Aws::Odb
|
|
|
1408
1436
|
# physical core of a processor with hyper-threading enabled.
|
|
1409
1437
|
# @return [String]
|
|
1410
1438
|
#
|
|
1439
|
+
# @!attribute [rw] iam_roles
|
|
1440
|
+
# The Amazon Web Services Identity and Access Management (IAM) service
|
|
1441
|
+
# roles associated with the VM cluster.
|
|
1442
|
+
# @return [Array<Types::IamRole>]
|
|
1443
|
+
#
|
|
1411
1444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CloudVmCluster AWS API Documentation
|
|
1412
1445
|
#
|
|
1413
1446
|
class CloudVmCluster < Struct.new(
|
|
@@ -1450,7 +1483,8 @@ module Aws::Odb
|
|
|
1450
1483
|
:vip_ids,
|
|
1451
1484
|
:odb_network_id,
|
|
1452
1485
|
:percent_progress,
|
|
1453
|
-
:compute_model
|
|
1486
|
+
:compute_model,
|
|
1487
|
+
:iam_roles)
|
|
1454
1488
|
SENSITIVE = [:ssh_public_keys]
|
|
1455
1489
|
include Aws::Structure
|
|
1456
1490
|
end
|
|
@@ -1643,6 +1677,11 @@ module Aws::Odb
|
|
|
1643
1677
|
# physical core of a processor with hyper-threading enabled.
|
|
1644
1678
|
# @return [String]
|
|
1645
1679
|
#
|
|
1680
|
+
# @!attribute [rw] iam_roles
|
|
1681
|
+
# The Amazon Web Services Identity and Access Management (IAM) service
|
|
1682
|
+
# roles associated with the VM cluster in the summary information.
|
|
1683
|
+
# @return [Array<Types::IamRole>]
|
|
1684
|
+
#
|
|
1646
1685
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CloudVmClusterSummary AWS API Documentation
|
|
1647
1686
|
#
|
|
1648
1687
|
class CloudVmClusterSummary < Struct.new(
|
|
@@ -1685,7 +1724,8 @@ module Aws::Odb
|
|
|
1685
1724
|
:vip_ids,
|
|
1686
1725
|
:odb_network_id,
|
|
1687
1726
|
:percent_progress,
|
|
1688
|
-
:compute_model
|
|
1727
|
+
:compute_model,
|
|
1728
|
+
:iam_roles)
|
|
1689
1729
|
SENSITIVE = [:ssh_public_keys]
|
|
1690
1730
|
include Aws::Structure
|
|
1691
1731
|
end
|
|
@@ -2245,11 +2285,36 @@ module Aws::Odb
|
|
|
2245
2285
|
# network.
|
|
2246
2286
|
# @return [String]
|
|
2247
2287
|
#
|
|
2288
|
+
# @!attribute [rw] sts_access
|
|
2289
|
+
# The Amazon Web Services Security Token Service (STS) access
|
|
2290
|
+
# configuration for the ODB network.
|
|
2291
|
+
# @return [String]
|
|
2292
|
+
#
|
|
2293
|
+
# @!attribute [rw] kms_access
|
|
2294
|
+
# The Amazon Web Services Key Management Service (KMS) access
|
|
2295
|
+
# configuration for the ODB network.
|
|
2296
|
+
# @return [String]
|
|
2297
|
+
#
|
|
2248
2298
|
# @!attribute [rw] s3_policy_document
|
|
2249
2299
|
# Specifies the endpoint policy for Amazon S3 access from the ODB
|
|
2250
2300
|
# network.
|
|
2251
2301
|
# @return [String]
|
|
2252
2302
|
#
|
|
2303
|
+
# @!attribute [rw] sts_policy_document
|
|
2304
|
+
# The STS policy document that defines permissions for token service
|
|
2305
|
+
# usage within the ODB network.
|
|
2306
|
+
# @return [String]
|
|
2307
|
+
#
|
|
2308
|
+
# @!attribute [rw] kms_policy_document
|
|
2309
|
+
# The KMS policy document that defines permissions for key usage
|
|
2310
|
+
# within the ODB network.
|
|
2311
|
+
# @return [String]
|
|
2312
|
+
#
|
|
2313
|
+
# @!attribute [rw] cross_region_s3_restore_sources_to_enable
|
|
2314
|
+
# The cross-Region Amazon S3 restore sources to enable for the ODB
|
|
2315
|
+
# network.
|
|
2316
|
+
# @return [Array<String>]
|
|
2317
|
+
#
|
|
2253
2318
|
# @!attribute [rw] tags
|
|
2254
2319
|
# The list of resource tags to apply to the ODB network.
|
|
2255
2320
|
# @return [Hash<String,String>]
|
|
@@ -2267,7 +2332,12 @@ module Aws::Odb
|
|
|
2267
2332
|
:client_token,
|
|
2268
2333
|
:s3_access,
|
|
2269
2334
|
:zero_etl_access,
|
|
2335
|
+
:sts_access,
|
|
2336
|
+
:kms_access,
|
|
2270
2337
|
:s3_policy_document,
|
|
2338
|
+
:sts_policy_document,
|
|
2339
|
+
:kms_policy_document,
|
|
2340
|
+
:cross_region_s3_restore_sources_to_enable,
|
|
2271
2341
|
:tags)
|
|
2272
2342
|
SENSITIVE = []
|
|
2273
2343
|
include Aws::Structure
|
|
@@ -2356,9 +2426,6 @@ module Aws::Odb
|
|
|
2356
2426
|
#
|
|
2357
2427
|
# @!attribute [rw] status
|
|
2358
2428
|
# The status of the ODB peering connection.
|
|
2359
|
-
#
|
|
2360
|
-
# Valid Values: `provisioning | active | terminating | terminated |
|
|
2361
|
-
# failed`
|
|
2362
2429
|
# @return [String]
|
|
2363
2430
|
#
|
|
2364
2431
|
# @!attribute [rw] status_reason
|
|
@@ -2380,6 +2447,32 @@ module Aws::Odb
|
|
|
2380
2447
|
include Aws::Structure
|
|
2381
2448
|
end
|
|
2382
2449
|
|
|
2450
|
+
# The configuration access for the cross-Region Amazon S3 database
|
|
2451
|
+
# restore source for the ODB network.
|
|
2452
|
+
#
|
|
2453
|
+
# @!attribute [rw] region
|
|
2454
|
+
# The Amazon Web Services Region for cross-Region S3 restore access.
|
|
2455
|
+
# @return [String]
|
|
2456
|
+
#
|
|
2457
|
+
# @!attribute [rw] ipv4_addresses
|
|
2458
|
+
# The IPv4 addresses allowed for cross-Region S3 restore access.
|
|
2459
|
+
# @return [Array<String>]
|
|
2460
|
+
#
|
|
2461
|
+
# @!attribute [rw] status
|
|
2462
|
+
# The current status of the cross-Region S3 restore access
|
|
2463
|
+
# configuration.
|
|
2464
|
+
# @return [String]
|
|
2465
|
+
#
|
|
2466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CrossRegionS3RestoreSourcesAccess AWS API Documentation
|
|
2467
|
+
#
|
|
2468
|
+
class CrossRegionS3RestoreSourcesAccess < Struct.new(
|
|
2469
|
+
:region,
|
|
2470
|
+
:ipv4_addresses,
|
|
2471
|
+
:status)
|
|
2472
|
+
SENSITIVE = []
|
|
2473
|
+
include Aws::Structure
|
|
2474
|
+
end
|
|
2475
|
+
|
|
2383
2476
|
# A contact to receive notification from Oracle about maintenance
|
|
2384
2477
|
# updates for a specific Exadata infrastructure.
|
|
2385
2478
|
#
|
|
@@ -3274,6 +3367,35 @@ module Aws::Odb
|
|
|
3274
3367
|
#
|
|
3275
3368
|
class DeleteOdbPeeringConnectionOutput < Aws::EmptyStructure; end
|
|
3276
3369
|
|
|
3370
|
+
# @!attribute [rw] iam_role_arn
|
|
3371
|
+
# The Amazon Resource Name (ARN) of the IAM service role to
|
|
3372
|
+
# disassociate from the resource.
|
|
3373
|
+
# @return [String]
|
|
3374
|
+
#
|
|
3375
|
+
# @!attribute [rw] aws_integration
|
|
3376
|
+
# The Amazon Web Services integration configuration settings for the
|
|
3377
|
+
# IAM service role disassociation.
|
|
3378
|
+
# @return [String]
|
|
3379
|
+
#
|
|
3380
|
+
# @!attribute [rw] resource_arn
|
|
3381
|
+
# The Amazon Resource Name (ARN) of the target resource to
|
|
3382
|
+
# disassociate from the IAM service role.
|
|
3383
|
+
# @return [String]
|
|
3384
|
+
#
|
|
3385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DisassociateIamRoleFromResourceInput AWS API Documentation
|
|
3386
|
+
#
|
|
3387
|
+
class DisassociateIamRoleFromResourceInput < Struct.new(
|
|
3388
|
+
:iam_role_arn,
|
|
3389
|
+
:aws_integration,
|
|
3390
|
+
:resource_arn)
|
|
3391
|
+
SENSITIVE = []
|
|
3392
|
+
include Aws::Structure
|
|
3393
|
+
end
|
|
3394
|
+
|
|
3395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DisassociateIamRoleFromResourceOutput AWS API Documentation
|
|
3396
|
+
#
|
|
3397
|
+
class DisassociateIamRoleFromResourceOutput < Aws::EmptyStructure; end
|
|
3398
|
+
|
|
3277
3399
|
# The IORM settings of the Exadata DB system.
|
|
3278
3400
|
#
|
|
3279
3401
|
# @!attribute [rw] db_plans
|
|
@@ -3487,12 +3609,18 @@ module Aws::Odb
|
|
|
3487
3609
|
# account.
|
|
3488
3610
|
# @return [String]
|
|
3489
3611
|
#
|
|
3612
|
+
# @!attribute [rw] oci_identity_domain
|
|
3613
|
+
# The Oracle Cloud Infrastructure (OCI) identity domain information in
|
|
3614
|
+
# the onboarding status response.
|
|
3615
|
+
# @return [Types::OciIdentityDomain]
|
|
3616
|
+
#
|
|
3490
3617
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOciOnboardingStatusOutput AWS API Documentation
|
|
3491
3618
|
#
|
|
3492
3619
|
class GetOciOnboardingStatusOutput < Struct.new(
|
|
3493
3620
|
:status,
|
|
3494
3621
|
:existing_tenancy_activation_link,
|
|
3495
|
-
:new_tenancy_activation_link
|
|
3622
|
+
:new_tenancy_activation_link,
|
|
3623
|
+
:oci_identity_domain)
|
|
3496
3624
|
SENSITIVE = []
|
|
3497
3625
|
include Aws::Structure
|
|
3498
3626
|
end
|
|
@@ -3562,11 +3690,50 @@ module Aws::Odb
|
|
|
3562
3690
|
include Aws::Structure
|
|
3563
3691
|
end
|
|
3564
3692
|
|
|
3565
|
-
#
|
|
3693
|
+
# Information about an Amazon Web Services Identity and Access
|
|
3694
|
+
# Management (IAM) service role associated with a resource.
|
|
3695
|
+
#
|
|
3696
|
+
# @!attribute [rw] iam_role_arn
|
|
3697
|
+
# The Amazon Resource Name (ARN) of the IAM service role.
|
|
3698
|
+
# @return [String]
|
|
3699
|
+
#
|
|
3700
|
+
# @!attribute [rw] status
|
|
3701
|
+
# The current status of the IAM service role.
|
|
3702
|
+
# @return [String]
|
|
3703
|
+
#
|
|
3704
|
+
# @!attribute [rw] status_reason
|
|
3705
|
+
# Additional information about the current status of the IAM service
|
|
3706
|
+
# role, if applicable.
|
|
3707
|
+
# @return [String]
|
|
3708
|
+
#
|
|
3709
|
+
# @!attribute [rw] aws_integration
|
|
3710
|
+
# The Amazon Web Services integration configuration settings for the
|
|
3711
|
+
# IAM service role.
|
|
3712
|
+
# @return [String]
|
|
3713
|
+
#
|
|
3714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/IamRole AWS API Documentation
|
|
3715
|
+
#
|
|
3716
|
+
class IamRole < Struct.new(
|
|
3717
|
+
:iam_role_arn,
|
|
3718
|
+
:status,
|
|
3719
|
+
:status_reason,
|
|
3720
|
+
:aws_integration)
|
|
3721
|
+
SENSITIVE = []
|
|
3722
|
+
include Aws::Structure
|
|
3723
|
+
end
|
|
3724
|
+
|
|
3725
|
+
# @!attribute [rw] oci_identity_domain
|
|
3726
|
+
# The Oracle Cloud Infrastructure (OCI) identity domain configuration
|
|
3727
|
+
# for service initialization.
|
|
3728
|
+
# @return [Boolean]
|
|
3566
3729
|
#
|
|
3567
3730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeServiceInput AWS API Documentation
|
|
3568
3731
|
#
|
|
3569
|
-
class InitializeServiceInput <
|
|
3732
|
+
class InitializeServiceInput < Struct.new(
|
|
3733
|
+
:oci_identity_domain)
|
|
3734
|
+
SENSITIVE = []
|
|
3735
|
+
include Aws::Structure
|
|
3736
|
+
end
|
|
3570
3737
|
|
|
3571
3738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeServiceOutput AWS API Documentation
|
|
3572
3739
|
#
|
|
@@ -3592,6 +3759,36 @@ module Aws::Odb
|
|
|
3592
3759
|
include Aws::Structure
|
|
3593
3760
|
end
|
|
3594
3761
|
|
|
3762
|
+
# Configuration for Amazon Web Services Key Management Service (KMS)
|
|
3763
|
+
# access from the ODB network.
|
|
3764
|
+
#
|
|
3765
|
+
# @!attribute [rw] status
|
|
3766
|
+
# The current status of the KMS access configuration.
|
|
3767
|
+
# @return [String]
|
|
3768
|
+
#
|
|
3769
|
+
# @!attribute [rw] ipv4_addresses
|
|
3770
|
+
# The IPv4 addresses allowed for KMS access.
|
|
3771
|
+
# @return [Array<String>]
|
|
3772
|
+
#
|
|
3773
|
+
# @!attribute [rw] domain_name
|
|
3774
|
+
# The domain name for KMS access configuration.
|
|
3775
|
+
# @return [String]
|
|
3776
|
+
#
|
|
3777
|
+
# @!attribute [rw] kms_policy_document
|
|
3778
|
+
# The KMS policy document that defines permissions for key usage.
|
|
3779
|
+
# @return [String]
|
|
3780
|
+
#
|
|
3781
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/KmsAccess AWS API Documentation
|
|
3782
|
+
#
|
|
3783
|
+
class KmsAccess < Struct.new(
|
|
3784
|
+
:status,
|
|
3785
|
+
:ipv4_addresses,
|
|
3786
|
+
:domain_name,
|
|
3787
|
+
:kms_policy_document)
|
|
3788
|
+
SENSITIVE = []
|
|
3789
|
+
include Aws::Structure
|
|
3790
|
+
end
|
|
3791
|
+
|
|
3595
3792
|
# @!attribute [rw] max_results
|
|
3596
3793
|
# The maximum number of items to return per page.
|
|
3597
3794
|
# @return [Integer]
|
|
@@ -4184,8 +4381,6 @@ module Aws::Odb
|
|
|
4184
4381
|
#
|
|
4185
4382
|
# @!attribute [rw] status
|
|
4186
4383
|
# The status of the managed Amazon S3 backup access.
|
|
4187
|
-
#
|
|
4188
|
-
# Valid Values: `enabled | disabled`
|
|
4189
4384
|
# @return [String]
|
|
4190
4385
|
#
|
|
4191
4386
|
# @!attribute [rw] ipv4_addresses
|
|
@@ -4231,6 +4426,21 @@ module Aws::Odb
|
|
|
4231
4426
|
# The Amazon S3 access configuration.
|
|
4232
4427
|
# @return [Types::S3Access]
|
|
4233
4428
|
#
|
|
4429
|
+
# @!attribute [rw] sts_access
|
|
4430
|
+
# The Amazon Web Services Security Token Service (STS) access
|
|
4431
|
+
# configuration for managed services.
|
|
4432
|
+
# @return [Types::StsAccess]
|
|
4433
|
+
#
|
|
4434
|
+
# @!attribute [rw] kms_access
|
|
4435
|
+
# The Amazon Web Services Key Management Service (KMS) access
|
|
4436
|
+
# configuration for managed services.
|
|
4437
|
+
# @return [Types::KmsAccess]
|
|
4438
|
+
#
|
|
4439
|
+
# @!attribute [rw] cross_region_s3_restore_sources_access
|
|
4440
|
+
# The access configuration for the cross-Region Amazon S3 database
|
|
4441
|
+
# restore source.
|
|
4442
|
+
# @return [Array<Types::CrossRegionS3RestoreSourcesAccess>]
|
|
4443
|
+
#
|
|
4234
4444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ManagedServices AWS API Documentation
|
|
4235
4445
|
#
|
|
4236
4446
|
class ManagedServices < Struct.new(
|
|
@@ -4240,7 +4450,10 @@ module Aws::Odb
|
|
|
4240
4450
|
:service_network_endpoint,
|
|
4241
4451
|
:managed_s3_backup_access,
|
|
4242
4452
|
:zero_etl_access,
|
|
4243
|
-
:s3_access
|
|
4453
|
+
:s3_access,
|
|
4454
|
+
:sts_access,
|
|
4455
|
+
:kms_access,
|
|
4456
|
+
:cross_region_s3_restore_sources_access)
|
|
4244
4457
|
SENSITIVE = []
|
|
4245
4458
|
include Aws::Structure
|
|
4246
4459
|
end
|
|
@@ -4279,6 +4492,48 @@ module Aws::Odb
|
|
|
4279
4492
|
include Aws::Structure
|
|
4280
4493
|
end
|
|
4281
4494
|
|
|
4495
|
+
# Information about an Oracle Cloud Infrastructure (OCI) identity domain
|
|
4496
|
+
# configuration.
|
|
4497
|
+
#
|
|
4498
|
+
# @!attribute [rw] oci_identity_domain_id
|
|
4499
|
+
# The unique identifier of the OCI identity domain.
|
|
4500
|
+
# @return [String]
|
|
4501
|
+
#
|
|
4502
|
+
# @!attribute [rw] oci_identity_domain_resource_url
|
|
4503
|
+
# The resource URL for accessing the OCI identity domain.
|
|
4504
|
+
# @return [String]
|
|
4505
|
+
#
|
|
4506
|
+
# @!attribute [rw] oci_identity_domain_url
|
|
4507
|
+
# The URL of the OCI identity domain.
|
|
4508
|
+
# @return [String]
|
|
4509
|
+
#
|
|
4510
|
+
# @!attribute [rw] status
|
|
4511
|
+
# The current status of the OCI identity domain.
|
|
4512
|
+
# @return [String]
|
|
4513
|
+
#
|
|
4514
|
+
# @!attribute [rw] status_reason
|
|
4515
|
+
# Additional information about the current status of the OCI identity
|
|
4516
|
+
# domain, if applicable.
|
|
4517
|
+
# @return [String]
|
|
4518
|
+
#
|
|
4519
|
+
# @!attribute [rw] account_setup_cloud_formation_url
|
|
4520
|
+
# The Amazon Web Services CloudFormation URL for setting up the
|
|
4521
|
+
# account integration with the OCI identity domain.
|
|
4522
|
+
# @return [String]
|
|
4523
|
+
#
|
|
4524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/OciIdentityDomain AWS API Documentation
|
|
4525
|
+
#
|
|
4526
|
+
class OciIdentityDomain < Struct.new(
|
|
4527
|
+
:oci_identity_domain_id,
|
|
4528
|
+
:oci_identity_domain_resource_url,
|
|
4529
|
+
:oci_identity_domain_url,
|
|
4530
|
+
:status,
|
|
4531
|
+
:status_reason,
|
|
4532
|
+
:account_setup_cloud_formation_url)
|
|
4533
|
+
SENSITIVE = []
|
|
4534
|
+
include Aws::Structure
|
|
4535
|
+
end
|
|
4536
|
+
|
|
4282
4537
|
# Information about an ODB network.
|
|
4283
4538
|
#
|
|
4284
4539
|
# @!attribute [rw] odb_network_id
|
|
@@ -4534,9 +4789,6 @@ module Aws::Odb
|
|
|
4534
4789
|
#
|
|
4535
4790
|
# @!attribute [rw] status
|
|
4536
4791
|
# The status of the ODB peering connection.
|
|
4537
|
-
#
|
|
4538
|
-
# Valid Values: `provisioning | active | terminating | terminated |
|
|
4539
|
-
# failed`
|
|
4540
4792
|
# @return [String]
|
|
4541
4793
|
#
|
|
4542
4794
|
# @!attribute [rw] status_reason
|
|
@@ -4611,9 +4863,6 @@ module Aws::Odb
|
|
|
4611
4863
|
#
|
|
4612
4864
|
# @!attribute [rw] status
|
|
4613
4865
|
# The status of the ODB peering connection.
|
|
4614
|
-
#
|
|
4615
|
-
# Valid Values: `provisioning | active | terminating | terminated |
|
|
4616
|
-
# failed`
|
|
4617
4866
|
# @return [String]
|
|
4618
4867
|
#
|
|
4619
4868
|
# @!attribute [rw] status_reason
|
|
@@ -4741,8 +4990,6 @@ module Aws::Odb
|
|
|
4741
4990
|
#
|
|
4742
4991
|
# @!attribute [rw] status
|
|
4743
4992
|
# The status of the Amazon S3 access.
|
|
4744
|
-
#
|
|
4745
|
-
# Valid Values: `enabled | disabled`
|
|
4746
4993
|
# @return [String]
|
|
4747
4994
|
#
|
|
4748
4995
|
# @!attribute [rw] ipv4_addresses
|
|
@@ -4776,8 +5023,6 @@ module Aws::Odb
|
|
|
4776
5023
|
#
|
|
4777
5024
|
# @!attribute [rw] vpc_endpoint_type
|
|
4778
5025
|
# The type of the VPC endpoint.
|
|
4779
|
-
#
|
|
4780
|
-
# Valid Values: `Interface | Gateway`
|
|
4781
5026
|
# @return [String]
|
|
4782
5027
|
#
|
|
4783
5028
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ServiceNetworkEndpoint AWS API Documentation
|
|
@@ -4899,6 +5144,37 @@ module Aws::Odb
|
|
|
4899
5144
|
include Aws::Structure
|
|
4900
5145
|
end
|
|
4901
5146
|
|
|
5147
|
+
# Configuration for Amazon Web Services Security Token Service (STS)
|
|
5148
|
+
# access from the ODB network.
|
|
5149
|
+
#
|
|
5150
|
+
# @!attribute [rw] status
|
|
5151
|
+
# The current status of the STS access configuration.
|
|
5152
|
+
# @return [String]
|
|
5153
|
+
#
|
|
5154
|
+
# @!attribute [rw] ipv4_addresses
|
|
5155
|
+
# The IPv4 addresses allowed for STS access.
|
|
5156
|
+
# @return [Array<String>]
|
|
5157
|
+
#
|
|
5158
|
+
# @!attribute [rw] domain_name
|
|
5159
|
+
# The domain name for STS access configuration.
|
|
5160
|
+
# @return [String]
|
|
5161
|
+
#
|
|
5162
|
+
# @!attribute [rw] sts_policy_document
|
|
5163
|
+
# The STS policy document that defines permissions for token service
|
|
5164
|
+
# usage.
|
|
5165
|
+
# @return [String]
|
|
5166
|
+
#
|
|
5167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/StsAccess AWS API Documentation
|
|
5168
|
+
#
|
|
5169
|
+
class StsAccess < Struct.new(
|
|
5170
|
+
:status,
|
|
5171
|
+
:ipv4_addresses,
|
|
5172
|
+
:domain_name,
|
|
5173
|
+
:sts_policy_document)
|
|
5174
|
+
SENSITIVE = []
|
|
5175
|
+
include Aws::Structure
|
|
5176
|
+
end
|
|
5177
|
+
|
|
4902
5178
|
# Information about the compatible system versions that can be used with
|
|
4903
5179
|
# a specific Exadata shape and Grid Infrastructure (GI) version.
|
|
4904
5180
|
#
|
|
@@ -5061,11 +5337,41 @@ module Aws::Odb
|
|
|
5061
5337
|
# network.
|
|
5062
5338
|
# @return [String]
|
|
5063
5339
|
#
|
|
5340
|
+
# @!attribute [rw] sts_access
|
|
5341
|
+
# The Amazon Web Services Security Token Service (STS) access
|
|
5342
|
+
# configuration for the ODB network.
|
|
5343
|
+
# @return [String]
|
|
5344
|
+
#
|
|
5345
|
+
# @!attribute [rw] kms_access
|
|
5346
|
+
# The Amazon Web Services Key Management Service (KMS) access
|
|
5347
|
+
# configuration for the ODB network.
|
|
5348
|
+
# @return [String]
|
|
5349
|
+
#
|
|
5064
5350
|
# @!attribute [rw] s3_policy_document
|
|
5065
5351
|
# Specifies the updated endpoint policy for Amazon S3 access from the
|
|
5066
5352
|
# ODB network.
|
|
5067
5353
|
# @return [String]
|
|
5068
5354
|
#
|
|
5355
|
+
# @!attribute [rw] sts_policy_document
|
|
5356
|
+
# The STS policy document that defines permissions for token service
|
|
5357
|
+
# usage within the ODB network.
|
|
5358
|
+
# @return [String]
|
|
5359
|
+
#
|
|
5360
|
+
# @!attribute [rw] kms_policy_document
|
|
5361
|
+
# The KMS policy document that defines permissions for key usage
|
|
5362
|
+
# within the ODB network.
|
|
5363
|
+
# @return [String]
|
|
5364
|
+
#
|
|
5365
|
+
# @!attribute [rw] cross_region_s3_restore_sources_to_enable
|
|
5366
|
+
# The cross-Region Amazon S3 restore sources to enable for the ODB
|
|
5367
|
+
# network.
|
|
5368
|
+
# @return [Array<String>]
|
|
5369
|
+
#
|
|
5370
|
+
# @!attribute [rw] cross_region_s3_restore_sources_to_disable
|
|
5371
|
+
# The cross-Region Amazon S3 restore sources to disable for the ODB
|
|
5372
|
+
# network.
|
|
5373
|
+
# @return [Array<String>]
|
|
5374
|
+
#
|
|
5069
5375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/UpdateOdbNetworkInput AWS API Documentation
|
|
5070
5376
|
#
|
|
5071
5377
|
class UpdateOdbNetworkInput < Struct.new(
|
|
@@ -5075,7 +5381,13 @@ module Aws::Odb
|
|
|
5075
5381
|
:peered_cidrs_to_be_removed,
|
|
5076
5382
|
:s3_access,
|
|
5077
5383
|
:zero_etl_access,
|
|
5078
|
-
:
|
|
5384
|
+
:sts_access,
|
|
5385
|
+
:kms_access,
|
|
5386
|
+
:s3_policy_document,
|
|
5387
|
+
:sts_policy_document,
|
|
5388
|
+
:kms_policy_document,
|
|
5389
|
+
:cross_region_s3_restore_sources_to_enable,
|
|
5390
|
+
:cross_region_s3_restore_sources_to_disable)
|
|
5079
5391
|
SENSITIVE = []
|
|
5080
5392
|
include Aws::Structure
|
|
5081
5393
|
end
|
|
@@ -5217,8 +5529,6 @@ module Aws::Odb
|
|
|
5217
5529
|
#
|
|
5218
5530
|
# @!attribute [rw] status
|
|
5219
5531
|
# The status of the Zero-ETL access.
|
|
5220
|
-
#
|
|
5221
|
-
# Valid Values: `enabled | disabled`
|
|
5222
5532
|
# @return [String]
|
|
5223
5533
|
#
|
|
5224
5534
|
# @!attribute [rw] cidr
|
data/lib/aws-sdk-odb.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -88,6 +88,17 @@ module Aws
|
|
|
88
88
|
) -> _AcceptMarketplaceRegistrationResponseSuccess
|
|
89
89
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptMarketplaceRegistrationResponseSuccess
|
|
90
90
|
|
|
91
|
+
interface _AssociateIamRoleToResourceResponseSuccess
|
|
92
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateIamRoleToResourceOutput]
|
|
93
|
+
end
|
|
94
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#associate_iam_role_to_resource-instance_method
|
|
95
|
+
def associate_iam_role_to_resource: (
|
|
96
|
+
iam_role_arn: ::String,
|
|
97
|
+
aws_integration: ("KmsTde"),
|
|
98
|
+
resource_arn: ::String
|
|
99
|
+
) -> _AssociateIamRoleToResourceResponseSuccess
|
|
100
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateIamRoleToResourceResponseSuccess
|
|
101
|
+
|
|
91
102
|
interface _CreateCloudAutonomousVmClusterResponseSuccess
|
|
92
103
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudAutonomousVmClusterOutput]
|
|
93
104
|
def display_name: () -> ::String
|
|
@@ -239,7 +250,12 @@ module Aws
|
|
|
239
250
|
?client_token: ::String,
|
|
240
251
|
?s3_access: ("ENABLED" | "DISABLED"),
|
|
241
252
|
?zero_etl_access: ("ENABLED" | "DISABLED"),
|
|
253
|
+
?sts_access: ("ENABLED" | "DISABLED"),
|
|
254
|
+
?kms_access: ("ENABLED" | "DISABLED"),
|
|
242
255
|
?s3_policy_document: ::String,
|
|
256
|
+
?sts_policy_document: ::String,
|
|
257
|
+
?kms_policy_document: ::String,
|
|
258
|
+
?cross_region_s3_restore_sources_to_enable: Array[::String],
|
|
243
259
|
?tags: Hash[::String, ::String]
|
|
244
260
|
) -> _CreateOdbNetworkResponseSuccess
|
|
245
261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOdbNetworkResponseSuccess
|
|
@@ -308,6 +324,17 @@ module Aws
|
|
|
308
324
|
) -> _DeleteOdbPeeringConnectionResponseSuccess
|
|
309
325
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOdbPeeringConnectionResponseSuccess
|
|
310
326
|
|
|
327
|
+
interface _DisassociateIamRoleFromResourceResponseSuccess
|
|
328
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateIamRoleFromResourceOutput]
|
|
329
|
+
end
|
|
330
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#disassociate_iam_role_from_resource-instance_method
|
|
331
|
+
def disassociate_iam_role_from_resource: (
|
|
332
|
+
iam_role_arn: ::String,
|
|
333
|
+
aws_integration: ("KmsTde"),
|
|
334
|
+
resource_arn: ::String
|
|
335
|
+
) -> _DisassociateIamRoleFromResourceResponseSuccess
|
|
336
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateIamRoleFromResourceResponseSuccess
|
|
337
|
+
|
|
311
338
|
interface _GetCloudAutonomousVmClusterResponseSuccess
|
|
312
339
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudAutonomousVmClusterOutput]
|
|
313
340
|
def cloud_autonomous_vm_cluster: () -> Types::CloudAutonomousVmCluster
|
|
@@ -376,6 +403,7 @@ module Aws
|
|
|
376
403
|
def status: () -> ("NOT_STARTED" | "PENDING_LINK_GENERATION" | "PENDING_CUSTOMER_ACTION" | "PENDING_INITIALIZATION" | "ACTIVATING" | "ACTIVE_IN_HOME_REGION" | "ACTIVE" | "ACTIVE_LIMITED" | "FAILED" | "PUBLIC_OFFER_UNSUPPORTED" | "SUSPENDED" | "CANCELED")
|
|
377
404
|
def existing_tenancy_activation_link: () -> ::String
|
|
378
405
|
def new_tenancy_activation_link: () -> ::String
|
|
406
|
+
def oci_identity_domain: () -> Types::OciIdentityDomain
|
|
379
407
|
end
|
|
380
408
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#get_oci_onboarding_status-instance_method
|
|
381
409
|
def get_oci_onboarding_status: (
|
|
@@ -407,6 +435,7 @@ module Aws
|
|
|
407
435
|
end
|
|
408
436
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#initialize_service-instance_method
|
|
409
437
|
def initialize_service: (
|
|
438
|
+
?oci_identity_domain: bool
|
|
410
439
|
) -> _InitializeServiceResponseSuccess
|
|
411
440
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InitializeServiceResponseSuccess
|
|
412
441
|
|
|
@@ -670,7 +699,13 @@ module Aws
|
|
|
670
699
|
?peered_cidrs_to_be_removed: Array[::String],
|
|
671
700
|
?s3_access: ("ENABLED" | "DISABLED"),
|
|
672
701
|
?zero_etl_access: ("ENABLED" | "DISABLED"),
|
|
673
|
-
?
|
|
702
|
+
?sts_access: ("ENABLED" | "DISABLED"),
|
|
703
|
+
?kms_access: ("ENABLED" | "DISABLED"),
|
|
704
|
+
?s3_policy_document: ::String,
|
|
705
|
+
?sts_policy_document: ::String,
|
|
706
|
+
?kms_policy_document: ::String,
|
|
707
|
+
?cross_region_s3_restore_sources_to_enable: Array[::String],
|
|
708
|
+
?cross_region_s3_restore_sources_to_disable: Array[::String]
|
|
674
709
|
) -> _UpdateOdbNetworkResponseSuccess
|
|
675
710
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOdbNetworkResponseSuccess
|
|
676
711
|
|