aws-sdk-odb 1.24.0 → 1.25.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-odb/client.rb +79 -4
- data/lib/aws-sdk-odb/client_api.rb +67 -1
- data/lib/aws-sdk-odb/types.rb +273 -6
- data/lib/aws-sdk-odb.rb +1 -1
- data/sig/client.rbs +27 -2
- data/sig/types.rbs +83 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92b317906575a577232e1c337c4d2acd8d0c6664615ba1f316146145fbcb8d5d
|
|
4
|
+
data.tar.gz: f860d269fa7deede8015e52557136933a3fb117053b039d424537387db0103b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb3528f6f90d5990af0a980e8cecad3d97279cf5b19720b5910ae1086f0b8cf3e1c799dca684b13e9ca149045927a5acd45a7aac94ad597ef62835a43191d5ee
|
|
7
|
+
data.tar.gz: 73969085a4f3875e824f224e930170d4cd2566888851f615b6f933e4be6129fd65faafe815d5b6ad8fe8da34938b108e44a66956f17b991e0f35a87e6fd5a450
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.25.0 (2026-07-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for sourcing Autonomous Database admin and wallet passwords from customer-managed AWS Secrets Manager secrets, including password source configuration and summaries, and enabling or disabling the OCI IAM service role for Secrets Manager integration via InitializeService.
|
|
8
|
+
|
|
4
9
|
1.24.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.25.0
|
data/lib/aws-sdk-odb/client.rb
CHANGED
|
@@ -683,6 +683,15 @@ module Aws::Odb
|
|
|
683
683
|
# The configuration of the encryption key to use for the Autonomous
|
|
684
684
|
# Database.
|
|
685
685
|
#
|
|
686
|
+
# @option params [String] :admin_password_source
|
|
687
|
+
# The source of the admin password for the Autonomous Database. When set
|
|
688
|
+
# to `CUSTOMER_MANAGED_AWS_SECRET`, the admin password is retrieved from
|
|
689
|
+
# an Amazon Web Services Secrets Manager secret.
|
|
690
|
+
#
|
|
691
|
+
# @option params [Types::AdminPasswordSourceConfigurationInput] :admin_password_source_configuration
|
|
692
|
+
# The configuration of the admin password source for the Autonomous
|
|
693
|
+
# Database.
|
|
694
|
+
#
|
|
686
695
|
# @option params [String] :client_token
|
|
687
696
|
# A client-provided token to ensure the idempotency of the request.
|
|
688
697
|
#
|
|
@@ -808,6 +817,14 @@ module Aws::Odb
|
|
|
808
817
|
# kms_key_id: "KmsKeyIdOrArn",
|
|
809
818
|
# },
|
|
810
819
|
# },
|
|
820
|
+
# admin_password_source: "CUSTOMER_MANAGED_AWS_SECRET", # accepts CUSTOMER_MANAGED_AWS_SECRET, API_REQUEST_PARAMETER
|
|
821
|
+
# admin_password_source_configuration: {
|
|
822
|
+
# customer_managed_aws_secret: {
|
|
823
|
+
# secret_id: "SecretIdOrArn",
|
|
824
|
+
# iam_role_arn: "RoleArn",
|
|
825
|
+
# external_id_type: "database_ocid", # accepts database_ocid, compartment_ocid, tenant_ocid
|
|
826
|
+
# },
|
|
827
|
+
# },
|
|
811
828
|
# client_token: "CreateAutonomousDatabaseInputClientTokenString",
|
|
812
829
|
# tags: {
|
|
813
830
|
# "TagKey" => "TagValue",
|
|
@@ -897,9 +914,18 @@ module Aws::Odb
|
|
|
897
914
|
# The type of wallet to create, either a regional wallet or an instance
|
|
898
915
|
# wallet.
|
|
899
916
|
#
|
|
900
|
-
# @option params [
|
|
917
|
+
# @option params [String] :password
|
|
901
918
|
# The password to encrypt the keys inside the wallet.
|
|
902
919
|
#
|
|
920
|
+
# @option params [String] :password_source
|
|
921
|
+
# The source of the password for encrypting the wallet. When set to
|
|
922
|
+
# `CUSTOMER_MANAGED_AWS_SECRET`, the password is retrieved from an
|
|
923
|
+
# Amazon Web Services Secrets Manager secret.
|
|
924
|
+
#
|
|
925
|
+
# @option params [Types::WalletPasswordSourceConfigurationInput] :password_source_configuration
|
|
926
|
+
# The configuration of the password source for the Autonomous Database
|
|
927
|
+
# wallet.
|
|
928
|
+
#
|
|
903
929
|
# @option params [String] :client_token
|
|
904
930
|
# A client-provided token to ensure the idempotency of the request.
|
|
905
931
|
#
|
|
@@ -915,7 +941,15 @@ module Aws::Odb
|
|
|
915
941
|
# resp = client.create_autonomous_database_wallet({
|
|
916
942
|
# autonomous_database_id: "ResourceIdOrArn", # required
|
|
917
943
|
# wallet_type: "REGIONAL", # accepts REGIONAL, INSTANCE
|
|
918
|
-
# password: "CreateAutonomousDatabaseWalletInputPasswordString",
|
|
944
|
+
# password: "CreateAutonomousDatabaseWalletInputPasswordString",
|
|
945
|
+
# password_source: "CUSTOMER_MANAGED_AWS_SECRET", # accepts CUSTOMER_MANAGED_AWS_SECRET, API_REQUEST_PARAMETER
|
|
946
|
+
# password_source_configuration: {
|
|
947
|
+
# customer_managed_aws_secret: {
|
|
948
|
+
# secret_id: "SecretIdOrArn",
|
|
949
|
+
# iam_role_arn: "RoleArn",
|
|
950
|
+
# external_id_type: "database_ocid", # accepts database_ocid, compartment_ocid, tenant_ocid
|
|
951
|
+
# },
|
|
952
|
+
# },
|
|
919
953
|
# client_token: "CreateAutonomousDatabaseWalletInputClientTokenString",
|
|
920
954
|
# })
|
|
921
955
|
#
|
|
@@ -2031,6 +2065,10 @@ module Aws::Odb
|
|
|
2031
2065
|
# resp.autonomous_database.time_until_reconnect_clone_enabled #=> Time
|
|
2032
2066
|
# resp.autonomous_database.next_long_term_backup_time_stamp #=> Time
|
|
2033
2067
|
# resp.autonomous_database.time_undeleted #=> Time
|
|
2068
|
+
# resp.autonomous_database.admin_password_source_summary.admin_password_source #=> String, one of "CUSTOMER_MANAGED_AWS_SECRET", "API_REQUEST_PARAMETER"
|
|
2069
|
+
# resp.autonomous_database.admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.iam_role_arn #=> String
|
|
2070
|
+
# resp.autonomous_database.admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.secret_id #=> String
|
|
2071
|
+
# resp.autonomous_database.admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.external_id_type #=> String, one of "database_ocid", "compartment_ocid", "tenant_ocid"
|
|
2034
2072
|
#
|
|
2035
2073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetAutonomousDatabase AWS API Documentation
|
|
2036
2074
|
#
|
|
@@ -2104,6 +2142,10 @@ module Aws::Odb
|
|
|
2104
2142
|
#
|
|
2105
2143
|
# resp.autonomous_database_wallet_details.status #=> String, one of "ACTIVE", "UPDATING"
|
|
2106
2144
|
# resp.autonomous_database_wallet_details.time_rotated #=> Time
|
|
2145
|
+
# resp.autonomous_database_wallet_details.password_source_summary.password_source #=> String, one of "CUSTOMER_MANAGED_AWS_SECRET", "API_REQUEST_PARAMETER"
|
|
2146
|
+
# resp.autonomous_database_wallet_details.password_source_summary.password_source_configuration.customer_managed_aws_secret.iam_role_arn #=> String
|
|
2147
|
+
# resp.autonomous_database_wallet_details.password_source_summary.password_source_configuration.customer_managed_aws_secret.secret_id #=> String
|
|
2148
|
+
# resp.autonomous_database_wallet_details.password_source_summary.password_source_configuration.customer_managed_aws_secret.external_id_type #=> String, one of "database_ocid", "compartment_ocid", "tenant_ocid"
|
|
2107
2149
|
#
|
|
2108
2150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetAutonomousDatabaseWalletDetails AWS API Documentation
|
|
2109
2151
|
#
|
|
@@ -2564,7 +2606,9 @@ module Aws::Odb
|
|
|
2564
2606
|
# resp.oci_identity_domain.account_setup_cloud_formation_url #=> String
|
|
2565
2607
|
# resp.autonomous_database_oci_integration_iam_roles #=> Array
|
|
2566
2608
|
# resp.autonomous_database_oci_integration_iam_roles[0].iam_role_arn #=> String
|
|
2567
|
-
# resp.autonomous_database_oci_integration_iam_roles[0].aws_integration #=> String, one of "KmsTde"
|
|
2609
|
+
# resp.autonomous_database_oci_integration_iam_roles[0].aws_integration #=> String, one of "KmsTde", "SecretsManager"
|
|
2610
|
+
# resp.autonomous_database_oci_integration_iam_roles[0].status #=> String, one of "PROVISIONING", "AVAILABLE", "PROVISION_FAILED", "TERMINATING", "TERMINATE_FAILED"
|
|
2611
|
+
# resp.autonomous_database_oci_integration_iam_roles[0].status_reason #=> String
|
|
2568
2612
|
# resp.linked_oci_tenancy_id #=> String
|
|
2569
2613
|
# resp.linked_oci_compartment_id #=> String
|
|
2570
2614
|
# resp.subscription_errors #=> Array
|
|
@@ -2708,12 +2752,18 @@ module Aws::Odb
|
|
|
2708
2752
|
# The Oracle Cloud Infrastructure (OCI) identity domain configuration
|
|
2709
2753
|
# for service initialization.
|
|
2710
2754
|
#
|
|
2755
|
+
# @option params [String] :autonomous_database_oci_aws_secrets_manager_integration
|
|
2756
|
+
# Specifies whether to enable or disable the OCI service-account role
|
|
2757
|
+
# for Amazon Web Services Secrets Manager integration with Autonomous
|
|
2758
|
+
# Database.
|
|
2759
|
+
#
|
|
2711
2760
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2712
2761
|
#
|
|
2713
2762
|
# @example Request syntax with placeholder values
|
|
2714
2763
|
#
|
|
2715
2764
|
# resp = client.initialize_service({
|
|
2716
2765
|
# oci_identity_domain: false,
|
|
2766
|
+
# autonomous_database_oci_aws_secrets_manager_integration: "ENABLED", # accepts ENABLED, DISABLED
|
|
2717
2767
|
# })
|
|
2718
2768
|
#
|
|
2719
2769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeService AWS API Documentation
|
|
@@ -3049,6 +3099,10 @@ module Aws::Odb
|
|
|
3049
3099
|
# resp.autonomous_database_clones[0].time_until_reconnect_clone_enabled #=> Time
|
|
3050
3100
|
# resp.autonomous_database_clones[0].next_long_term_backup_time_stamp #=> Time
|
|
3051
3101
|
# resp.autonomous_database_clones[0].time_undeleted #=> Time
|
|
3102
|
+
# resp.autonomous_database_clones[0].admin_password_source_summary.admin_password_source #=> String, one of "CUSTOMER_MANAGED_AWS_SECRET", "API_REQUEST_PARAMETER"
|
|
3103
|
+
# resp.autonomous_database_clones[0].admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.iam_role_arn #=> String
|
|
3104
|
+
# resp.autonomous_database_clones[0].admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.secret_id #=> String
|
|
3105
|
+
# resp.autonomous_database_clones[0].admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.external_id_type #=> String, one of "database_ocid", "compartment_ocid", "tenant_ocid"
|
|
3052
3106
|
#
|
|
3053
3107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListAutonomousDatabaseClones AWS API Documentation
|
|
3054
3108
|
#
|
|
@@ -3364,6 +3418,10 @@ module Aws::Odb
|
|
|
3364
3418
|
# resp.autonomous_databases[0].time_until_reconnect_clone_enabled #=> Time
|
|
3365
3419
|
# resp.autonomous_databases[0].next_long_term_backup_time_stamp #=> Time
|
|
3366
3420
|
# resp.autonomous_databases[0].time_undeleted #=> Time
|
|
3421
|
+
# resp.autonomous_databases[0].admin_password_source_summary.admin_password_source #=> String, one of "CUSTOMER_MANAGED_AWS_SECRET", "API_REQUEST_PARAMETER"
|
|
3422
|
+
# resp.autonomous_databases[0].admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.iam_role_arn #=> String
|
|
3423
|
+
# resp.autonomous_databases[0].admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.secret_id #=> String
|
|
3424
|
+
# resp.autonomous_databases[0].admin_password_source_summary.admin_password_source_configuration.customer_managed_aws_secret.external_id_type #=> String, one of "database_ocid", "compartment_ocid", "tenant_ocid"
|
|
3367
3425
|
#
|
|
3368
3426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListAutonomousDatabases AWS API Documentation
|
|
3369
3427
|
#
|
|
@@ -4793,6 +4851,15 @@ module Aws::Odb
|
|
|
4793
4851
|
# The configuration of the encryption key to use for the Autonomous
|
|
4794
4852
|
# Database.
|
|
4795
4853
|
#
|
|
4854
|
+
# @option params [String] :admin_password_source
|
|
4855
|
+
# The source of the admin password for the Autonomous Database. When set
|
|
4856
|
+
# to `CUSTOMER_MANAGED_AWS_SECRET`, the admin password is retrieved from
|
|
4857
|
+
# an Amazon Web Services Secrets Manager secret.
|
|
4858
|
+
#
|
|
4859
|
+
# @option params [Types::AdminPasswordSourceConfigurationInput] :admin_password_source_configuration
|
|
4860
|
+
# The configuration of the admin password source for the Autonomous
|
|
4861
|
+
# Database.
|
|
4862
|
+
#
|
|
4796
4863
|
# @return [Types::UpdateAutonomousDatabaseOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4797
4864
|
#
|
|
4798
4865
|
# * {Types::UpdateAutonomousDatabaseOutput#autonomous_database_id #autonomous_database_id} => String
|
|
@@ -4883,6 +4950,14 @@ module Aws::Odb
|
|
|
4883
4950
|
# kms_key_id: "KmsKeyIdOrArn",
|
|
4884
4951
|
# },
|
|
4885
4952
|
# },
|
|
4953
|
+
# admin_password_source: "CUSTOMER_MANAGED_AWS_SECRET", # accepts CUSTOMER_MANAGED_AWS_SECRET, API_REQUEST_PARAMETER
|
|
4954
|
+
# admin_password_source_configuration: {
|
|
4955
|
+
# customer_managed_aws_secret: {
|
|
4956
|
+
# secret_id: "SecretIdOrArn",
|
|
4957
|
+
# iam_role_arn: "RoleArn",
|
|
4958
|
+
# external_id_type: "database_ocid", # accepts database_ocid, compartment_ocid, tenant_ocid
|
|
4959
|
+
# },
|
|
4960
|
+
# },
|
|
4886
4961
|
# })
|
|
4887
4962
|
#
|
|
4888
4963
|
# @example Response structure
|
|
@@ -5162,7 +5237,7 @@ module Aws::Odb
|
|
|
5162
5237
|
tracer: tracer
|
|
5163
5238
|
)
|
|
5164
5239
|
context[:gem_name] = 'aws-sdk-odb'
|
|
5165
|
-
context[:gem_version] = '1.
|
|
5240
|
+
context[:gem_version] = '1.25.0'
|
|
5166
5241
|
Seahorse::Client::Request.new(handlers, context)
|
|
5167
5242
|
end
|
|
5168
5243
|
|
|
@@ -18,6 +18,10 @@ module Aws::Odb
|
|
|
18
18
|
AcceptMarketplaceRegistrationOutput = Shapes::StructureShape.new(name: 'AcceptMarketplaceRegistrationOutput')
|
|
19
19
|
Access = Shapes::StringShape.new(name: 'Access')
|
|
20
20
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
21
|
+
AdminPasswordSource = Shapes::StringShape.new(name: 'AdminPasswordSource')
|
|
22
|
+
AdminPasswordSourceConfiguration = Shapes::UnionShape.new(name: 'AdminPasswordSourceConfiguration')
|
|
23
|
+
AdminPasswordSourceConfigurationInput = Shapes::UnionShape.new(name: 'AdminPasswordSourceConfigurationInput')
|
|
24
|
+
AdminPasswordSourceSummary = Shapes::StructureShape.new(name: 'AdminPasswordSourceSummary')
|
|
21
25
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
22
26
|
AssociateIamRoleToResourceInput = Shapes::StructureShape.new(name: 'AssociateIamRoleToResourceInput')
|
|
23
27
|
AssociateIamRoleToResourceInputResourceArnString = Shapes::StringShape.new(name: 'AssociateIamRoleToResourceInputResourceArnString')
|
|
@@ -135,6 +139,8 @@ module Aws::Odb
|
|
|
135
139
|
CustomerContact = Shapes::StructureShape.new(name: 'CustomerContact')
|
|
136
140
|
CustomerContactEmailString = Shapes::StringShape.new(name: 'CustomerContactEmailString')
|
|
137
141
|
CustomerContacts = Shapes::ListShape.new(name: 'CustomerContacts')
|
|
142
|
+
CustomerManagedAwsSecretConfiguration = Shapes::StructureShape.new(name: 'CustomerManagedAwsSecretConfiguration')
|
|
143
|
+
CustomerManagedAwsSecretConfigurationInput = Shapes::StructureShape.new(name: 'CustomerManagedAwsSecretConfigurationInput')
|
|
138
144
|
DataCollectionOptions = Shapes::StructureShape.new(name: 'DataCollectionOptions')
|
|
139
145
|
DataGuardRole = Shapes::StringShape.new(name: 'DataGuardRole')
|
|
140
146
|
DataSafeStatus = Shapes::StringShape.new(name: 'DataSafeStatus')
|
|
@@ -334,6 +340,7 @@ module Aws::Odb
|
|
|
334
340
|
OciEncryptionKeyConfigurationVaultIdString = Shapes::StringShape.new(name: 'OciEncryptionKeyConfigurationVaultIdString')
|
|
335
341
|
OciIamRole = Shapes::StructureShape.new(name: 'OciIamRole')
|
|
336
342
|
OciIamRoleList = Shapes::ListShape.new(name: 'OciIamRoleList')
|
|
343
|
+
OciIamRoleStatus = Shapes::StringShape.new(name: 'OciIamRoleStatus')
|
|
337
344
|
OciIdentityDomain = Shapes::StructureShape.new(name: 'OciIdentityDomain')
|
|
338
345
|
OciOnboardingStatus = Shapes::StringShape.new(name: 'OciOnboardingStatus')
|
|
339
346
|
OdbNetwork = Shapes::StructureShape.new(name: 'OdbNetwork')
|
|
@@ -394,6 +401,7 @@ module Aws::Odb
|
|
|
394
401
|
S3Access = Shapes::StructureShape.new(name: 'S3Access')
|
|
395
402
|
ScheduledOperationDetails = Shapes::StructureShape.new(name: 'ScheduledOperationDetails')
|
|
396
403
|
ScheduledOperationDetailsList = Shapes::ListShape.new(name: 'ScheduledOperationDetailsList')
|
|
404
|
+
SecretIdOrArn = Shapes::StringShape.new(name: 'SecretIdOrArn')
|
|
397
405
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
|
398
406
|
SensitiveStringList = Shapes::ListShape.new(name: 'SensitiveStringList')
|
|
399
407
|
ServiceNetworkEndpoint = Shapes::StructureShape.new(name: 'ServiceNetworkEndpoint')
|
|
@@ -460,6 +468,10 @@ module Aws::Odb
|
|
|
460
468
|
ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
|
|
461
469
|
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
|
462
470
|
VpcEndpointType = Shapes::StringShape.new(name: 'VpcEndpointType')
|
|
471
|
+
WalletPasswordSource = Shapes::StringShape.new(name: 'WalletPasswordSource')
|
|
472
|
+
WalletPasswordSourceConfiguration = Shapes::UnionShape.new(name: 'WalletPasswordSourceConfiguration')
|
|
473
|
+
WalletPasswordSourceConfigurationInput = Shapes::UnionShape.new(name: 'WalletPasswordSourceConfigurationInput')
|
|
474
|
+
WalletPasswordSourceSummary = Shapes::StructureShape.new(name: 'WalletPasswordSourceSummary')
|
|
463
475
|
WalletType = Shapes::StringShape.new(name: 'WalletType')
|
|
464
476
|
WeeksOfMonth = Shapes::ListShape.new(name: 'WeeksOfMonth')
|
|
465
477
|
ZeroEtlAccess = Shapes::StructureShape.new(name: 'ZeroEtlAccess')
|
|
@@ -473,6 +485,22 @@ module Aws::Odb
|
|
|
473
485
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
474
486
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
475
487
|
|
|
488
|
+
AdminPasswordSourceConfiguration.add_member(:customer_managed_aws_secret, Shapes::ShapeRef.new(shape: CustomerManagedAwsSecretConfiguration, location_name: "customerManagedAwsSecret"))
|
|
489
|
+
AdminPasswordSourceConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
490
|
+
AdminPasswordSourceConfiguration.add_member_subclass(:customer_managed_aws_secret, Types::AdminPasswordSourceConfiguration::CustomerManagedAwsSecret)
|
|
491
|
+
AdminPasswordSourceConfiguration.add_member_subclass(:unknown, Types::AdminPasswordSourceConfiguration::Unknown)
|
|
492
|
+
AdminPasswordSourceConfiguration.struct_class = Types::AdminPasswordSourceConfiguration
|
|
493
|
+
|
|
494
|
+
AdminPasswordSourceConfigurationInput.add_member(:customer_managed_aws_secret, Shapes::ShapeRef.new(shape: CustomerManagedAwsSecretConfigurationInput, location_name: "customerManagedAwsSecret"))
|
|
495
|
+
AdminPasswordSourceConfigurationInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
496
|
+
AdminPasswordSourceConfigurationInput.add_member_subclass(:customer_managed_aws_secret, Types::AdminPasswordSourceConfigurationInput::CustomerManagedAwsSecret)
|
|
497
|
+
AdminPasswordSourceConfigurationInput.add_member_subclass(:unknown, Types::AdminPasswordSourceConfigurationInput::Unknown)
|
|
498
|
+
AdminPasswordSourceConfigurationInput.struct_class = Types::AdminPasswordSourceConfigurationInput
|
|
499
|
+
|
|
500
|
+
AdminPasswordSourceSummary.add_member(:admin_password_source, Shapes::ShapeRef.new(shape: AdminPasswordSource, location_name: "adminPasswordSource"))
|
|
501
|
+
AdminPasswordSourceSummary.add_member(:admin_password_source_configuration, Shapes::ShapeRef.new(shape: AdminPasswordSourceConfiguration, location_name: "adminPasswordSourceConfiguration"))
|
|
502
|
+
AdminPasswordSourceSummary.struct_class = Types::AdminPasswordSourceSummary
|
|
503
|
+
|
|
476
504
|
AssociateIamRoleToResourceInput.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "iamRoleArn"))
|
|
477
505
|
AssociateIamRoleToResourceInput.add_member(:aws_integration, Shapes::ShapeRef.new(shape: SupportedAwsIntegration, required: true, location_name: "awsIntegration"))
|
|
478
506
|
AssociateIamRoleToResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AssociateIamRoleToResourceInputResourceArnString, required: true, location_name: "resourceArn"))
|
|
@@ -583,6 +611,7 @@ module Aws::Odb
|
|
|
583
611
|
AutonomousDatabase.add_member(:time_until_reconnect_clone_enabled, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeUntilReconnectCloneEnabled"))
|
|
584
612
|
AutonomousDatabase.add_member(:next_long_term_backup_time_stamp, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextLongTermBackupTimeStamp"))
|
|
585
613
|
AutonomousDatabase.add_member(:time_undeleted, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeUndeleted"))
|
|
614
|
+
AutonomousDatabase.add_member(:admin_password_source_summary, Shapes::ShapeRef.new(shape: AdminPasswordSourceSummary, location_name: "adminPasswordSourceSummary"))
|
|
586
615
|
AutonomousDatabase.struct_class = Types::AutonomousDatabase
|
|
587
616
|
|
|
588
617
|
AutonomousDatabaseApex.add_member(:apex_version, Shapes::ShapeRef.new(shape: String, location_name: "apexVersion"))
|
|
@@ -762,6 +791,7 @@ module Aws::Odb
|
|
|
762
791
|
AutonomousDatabaseSummary.add_member(:time_until_reconnect_clone_enabled, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeUntilReconnectCloneEnabled"))
|
|
763
792
|
AutonomousDatabaseSummary.add_member(:next_long_term_backup_time_stamp, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextLongTermBackupTimeStamp"))
|
|
764
793
|
AutonomousDatabaseSummary.add_member(:time_undeleted, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeUndeleted"))
|
|
794
|
+
AutonomousDatabaseSummary.add_member(:admin_password_source_summary, Shapes::ShapeRef.new(shape: AdminPasswordSourceSummary, location_name: "adminPasswordSourceSummary"))
|
|
765
795
|
AutonomousDatabaseSummary.struct_class = Types::AutonomousDatabaseSummary
|
|
766
796
|
|
|
767
797
|
AutonomousDatabaseVersionList.member = Shapes::ShapeRef.new(shape: AutonomousDatabaseVersionSummary)
|
|
@@ -773,6 +803,7 @@ module Aws::Odb
|
|
|
773
803
|
|
|
774
804
|
AutonomousDatabaseWalletDetails.add_member(:status, Shapes::ShapeRef.new(shape: AutonomousDatabaseWalletStatus, location_name: "status"))
|
|
775
805
|
AutonomousDatabaseWalletDetails.add_member(:time_rotated, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeRotated"))
|
|
806
|
+
AutonomousDatabaseWalletDetails.add_member(:password_source_summary, Shapes::ShapeRef.new(shape: WalletPasswordSourceSummary, location_name: "passwordSourceSummary"))
|
|
776
807
|
AutonomousDatabaseWalletDetails.struct_class = Types::AutonomousDatabaseWalletDetails
|
|
777
808
|
|
|
778
809
|
AutonomousVirtualMachineList.member = Shapes::ShapeRef.new(shape: AutonomousVirtualMachineSummary)
|
|
@@ -1165,6 +1196,8 @@ module Aws::Odb
|
|
|
1165
1196
|
CreateAutonomousDatabaseInput.add_member(:source_configuration, Shapes::ShapeRef.new(shape: SourceConfiguration, location_name: "sourceConfiguration"))
|
|
1166
1197
|
CreateAutonomousDatabaseInput.add_member(:encryption_key_provider, Shapes::ShapeRef.new(shape: EncryptionKeyProviderInput, location_name: "encryptionKeyProvider"))
|
|
1167
1198
|
CreateAutonomousDatabaseInput.add_member(:encryption_key_configuration, Shapes::ShapeRef.new(shape: EncryptionKeyConfigurationInput, location_name: "encryptionKeyConfiguration"))
|
|
1199
|
+
CreateAutonomousDatabaseInput.add_member(:admin_password_source, Shapes::ShapeRef.new(shape: AdminPasswordSource, location_name: "adminPasswordSource"))
|
|
1200
|
+
CreateAutonomousDatabaseInput.add_member(:admin_password_source_configuration, Shapes::ShapeRef.new(shape: AdminPasswordSourceConfigurationInput, location_name: "adminPasswordSourceConfiguration"))
|
|
1168
1201
|
CreateAutonomousDatabaseInput.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateAutonomousDatabaseInputClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1169
1202
|
CreateAutonomousDatabaseInput.add_member(:tags, Shapes::ShapeRef.new(shape: RequestTagMap, location_name: "tags"))
|
|
1170
1203
|
CreateAutonomousDatabaseInput.struct_class = Types::CreateAutonomousDatabaseInput
|
|
@@ -1177,7 +1210,9 @@ module Aws::Odb
|
|
|
1177
1210
|
|
|
1178
1211
|
CreateAutonomousDatabaseWalletInput.add_member(:autonomous_database_id, Shapes::ShapeRef.new(shape: ResourceIdOrArn, required: true, location_name: "autonomousDatabaseId"))
|
|
1179
1212
|
CreateAutonomousDatabaseWalletInput.add_member(:wallet_type, Shapes::ShapeRef.new(shape: WalletType, location_name: "walletType"))
|
|
1180
|
-
CreateAutonomousDatabaseWalletInput.add_member(:password, Shapes::ShapeRef.new(shape: CreateAutonomousDatabaseWalletInputPasswordString,
|
|
1213
|
+
CreateAutonomousDatabaseWalletInput.add_member(:password, Shapes::ShapeRef.new(shape: CreateAutonomousDatabaseWalletInputPasswordString, location_name: "password"))
|
|
1214
|
+
CreateAutonomousDatabaseWalletInput.add_member(:password_source, Shapes::ShapeRef.new(shape: WalletPasswordSource, location_name: "passwordSource"))
|
|
1215
|
+
CreateAutonomousDatabaseWalletInput.add_member(:password_source_configuration, Shapes::ShapeRef.new(shape: WalletPasswordSourceConfigurationInput, location_name: "passwordSourceConfiguration"))
|
|
1181
1216
|
CreateAutonomousDatabaseWalletInput.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateAutonomousDatabaseWalletInputClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1182
1217
|
CreateAutonomousDatabaseWalletInput.struct_class = Types::CreateAutonomousDatabaseWalletInput
|
|
1183
1218
|
|
|
@@ -1318,6 +1353,16 @@ module Aws::Odb
|
|
|
1318
1353
|
|
|
1319
1354
|
CustomerContacts.member = Shapes::ShapeRef.new(shape: CustomerContact)
|
|
1320
1355
|
|
|
1356
|
+
CustomerManagedAwsSecretConfiguration.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "iamRoleArn"))
|
|
1357
|
+
CustomerManagedAwsSecretConfiguration.add_member(:secret_id, Shapes::ShapeRef.new(shape: SecretIdOrArn, location_name: "secretId"))
|
|
1358
|
+
CustomerManagedAwsSecretConfiguration.add_member(:external_id_type, Shapes::ShapeRef.new(shape: ExternalIdType, location_name: "externalIdType"))
|
|
1359
|
+
CustomerManagedAwsSecretConfiguration.struct_class = Types::CustomerManagedAwsSecretConfiguration
|
|
1360
|
+
|
|
1361
|
+
CustomerManagedAwsSecretConfigurationInput.add_member(:secret_id, Shapes::ShapeRef.new(shape: SecretIdOrArn, location_name: "secretId"))
|
|
1362
|
+
CustomerManagedAwsSecretConfigurationInput.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "iamRoleArn"))
|
|
1363
|
+
CustomerManagedAwsSecretConfigurationInput.add_member(:external_id_type, Shapes::ShapeRef.new(shape: ExternalIdType, location_name: "externalIdType"))
|
|
1364
|
+
CustomerManagedAwsSecretConfigurationInput.struct_class = Types::CustomerManagedAwsSecretConfigurationInput
|
|
1365
|
+
|
|
1321
1366
|
DataCollectionOptions.add_member(:is_diagnostics_events_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isDiagnosticsEventsEnabled"))
|
|
1322
1367
|
DataCollectionOptions.add_member(:is_health_monitoring_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isHealthMonitoringEnabled"))
|
|
1323
1368
|
DataCollectionOptions.add_member(:is_incident_logs_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isIncidentLogsEnabled"))
|
|
@@ -1696,6 +1741,7 @@ module Aws::Odb
|
|
|
1696
1741
|
IamRoleList.member = Shapes::ShapeRef.new(shape: IamRole)
|
|
1697
1742
|
|
|
1698
1743
|
InitializeServiceInput.add_member(:oci_identity_domain, Shapes::ShapeRef.new(shape: Boolean, location_name: "ociIdentityDomain"))
|
|
1744
|
+
InitializeServiceInput.add_member(:autonomous_database_oci_aws_secrets_manager_integration, Shapes::ShapeRef.new(shape: Access, location_name: "autonomousDatabaseOciAwsSecretsManagerIntegration"))
|
|
1699
1745
|
InitializeServiceInput.struct_class = Types::InitializeServiceInput
|
|
1700
1746
|
|
|
1701
1747
|
InitializeServiceOutput.struct_class = Types::InitializeServiceOutput
|
|
@@ -1923,6 +1969,8 @@ module Aws::Odb
|
|
|
1923
1969
|
|
|
1924
1970
|
OciIamRole.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "iamRoleArn"))
|
|
1925
1971
|
OciIamRole.add_member(:aws_integration, Shapes::ShapeRef.new(shape: OciAwsIntegration, location_name: "awsIntegration"))
|
|
1972
|
+
OciIamRole.add_member(:status, Shapes::ShapeRef.new(shape: OciIamRoleStatus, location_name: "status"))
|
|
1973
|
+
OciIamRole.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1926
1974
|
OciIamRole.struct_class = Types::OciIamRole
|
|
1927
1975
|
|
|
1928
1976
|
OciIamRoleList.member = Shapes::ShapeRef.new(shape: OciIamRole)
|
|
@@ -2276,6 +2324,8 @@ module Aws::Odb
|
|
|
2276
2324
|
UpdateAutonomousDatabaseInput.add_member(:time_of_auto_refresh_start, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeOfAutoRefreshStart"))
|
|
2277
2325
|
UpdateAutonomousDatabaseInput.add_member(:encryption_key_provider, Shapes::ShapeRef.new(shape: EncryptionKeyProviderInput, location_name: "encryptionKeyProvider"))
|
|
2278
2326
|
UpdateAutonomousDatabaseInput.add_member(:encryption_key_configuration, Shapes::ShapeRef.new(shape: EncryptionKeyConfigurationInput, location_name: "encryptionKeyConfiguration"))
|
|
2327
|
+
UpdateAutonomousDatabaseInput.add_member(:admin_password_source, Shapes::ShapeRef.new(shape: AdminPasswordSource, location_name: "adminPasswordSource"))
|
|
2328
|
+
UpdateAutonomousDatabaseInput.add_member(:admin_password_source_configuration, Shapes::ShapeRef.new(shape: AdminPasswordSourceConfigurationInput, location_name: "adminPasswordSourceConfiguration"))
|
|
2279
2329
|
UpdateAutonomousDatabaseInput.struct_class = Types::UpdateAutonomousDatabaseInput
|
|
2280
2330
|
|
|
2281
2331
|
UpdateAutonomousDatabaseOutput.add_member(:autonomous_database_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "autonomousDatabaseId"))
|
|
@@ -2338,6 +2388,22 @@ module Aws::Odb
|
|
|
2338
2388
|
|
|
2339
2389
|
ValidationExceptionFieldList.member = Shapes::ShapeRef.new(shape: ValidationExceptionField)
|
|
2340
2390
|
|
|
2391
|
+
WalletPasswordSourceConfiguration.add_member(:customer_managed_aws_secret, Shapes::ShapeRef.new(shape: CustomerManagedAwsSecretConfiguration, location_name: "customerManagedAwsSecret"))
|
|
2392
|
+
WalletPasswordSourceConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2393
|
+
WalletPasswordSourceConfiguration.add_member_subclass(:customer_managed_aws_secret, Types::WalletPasswordSourceConfiguration::CustomerManagedAwsSecret)
|
|
2394
|
+
WalletPasswordSourceConfiguration.add_member_subclass(:unknown, Types::WalletPasswordSourceConfiguration::Unknown)
|
|
2395
|
+
WalletPasswordSourceConfiguration.struct_class = Types::WalletPasswordSourceConfiguration
|
|
2396
|
+
|
|
2397
|
+
WalletPasswordSourceConfigurationInput.add_member(:customer_managed_aws_secret, Shapes::ShapeRef.new(shape: CustomerManagedAwsSecretConfigurationInput, location_name: "customerManagedAwsSecret"))
|
|
2398
|
+
WalletPasswordSourceConfigurationInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2399
|
+
WalletPasswordSourceConfigurationInput.add_member_subclass(:customer_managed_aws_secret, Types::WalletPasswordSourceConfigurationInput::CustomerManagedAwsSecret)
|
|
2400
|
+
WalletPasswordSourceConfigurationInput.add_member_subclass(:unknown, Types::WalletPasswordSourceConfigurationInput::Unknown)
|
|
2401
|
+
WalletPasswordSourceConfigurationInput.struct_class = Types::WalletPasswordSourceConfigurationInput
|
|
2402
|
+
|
|
2403
|
+
WalletPasswordSourceSummary.add_member(:password_source, Shapes::ShapeRef.new(shape: WalletPasswordSource, location_name: "passwordSource"))
|
|
2404
|
+
WalletPasswordSourceSummary.add_member(:password_source_configuration, Shapes::ShapeRef.new(shape: WalletPasswordSourceConfiguration, location_name: "passwordSourceConfiguration"))
|
|
2405
|
+
WalletPasswordSourceSummary.struct_class = Types::WalletPasswordSourceSummary
|
|
2406
|
+
|
|
2341
2407
|
WeeksOfMonth.member = Shapes::ShapeRef.new(shape: Integer)
|
|
2342
2408
|
|
|
2343
2409
|
ZeroEtlAccess.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, location_name: "status"))
|
data/lib/aws-sdk-odb/types.rb
CHANGED
|
@@ -41,6 +41,73 @@ module Aws::Odb
|
|
|
41
41
|
include Aws::Structure
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
# The configuration of the admin password source. This is a union, so
|
|
45
|
+
# only one of the following members can be specified.
|
|
46
|
+
#
|
|
47
|
+
# @note AdminPasswordSourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AdminPasswordSourceConfiguration corresponding to the set member.
|
|
48
|
+
#
|
|
49
|
+
# @!attribute [rw] customer_managed_aws_secret
|
|
50
|
+
# The configuration for a customer-managed Amazon Web Services Secrets
|
|
51
|
+
# Manager secret used as the admin password source.
|
|
52
|
+
# @return [Types::CustomerManagedAwsSecretConfiguration]
|
|
53
|
+
#
|
|
54
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AdminPasswordSourceConfiguration AWS API Documentation
|
|
55
|
+
#
|
|
56
|
+
class AdminPasswordSourceConfiguration < Struct.new(
|
|
57
|
+
:customer_managed_aws_secret,
|
|
58
|
+
:unknown)
|
|
59
|
+
SENSITIVE = []
|
|
60
|
+
include Aws::Structure
|
|
61
|
+
include Aws::Structure::Union
|
|
62
|
+
|
|
63
|
+
class CustomerManagedAwsSecret < AdminPasswordSourceConfiguration; end
|
|
64
|
+
class Unknown < AdminPasswordSourceConfiguration; end
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# The input configuration for the admin password source. This is a
|
|
68
|
+
# union, so only one of the following members can be specified.
|
|
69
|
+
#
|
|
70
|
+
# @note AdminPasswordSourceConfigurationInput is a union - when making an API calls you must set exactly one of the members.
|
|
71
|
+
#
|
|
72
|
+
# @!attribute [rw] customer_managed_aws_secret
|
|
73
|
+
# The configuration for using a customer-managed Amazon Web Services
|
|
74
|
+
# Secrets Manager secret as the admin password source.
|
|
75
|
+
# @return [Types::CustomerManagedAwsSecretConfigurationInput]
|
|
76
|
+
#
|
|
77
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AdminPasswordSourceConfigurationInput AWS API Documentation
|
|
78
|
+
#
|
|
79
|
+
class AdminPasswordSourceConfigurationInput < Struct.new(
|
|
80
|
+
:customer_managed_aws_secret,
|
|
81
|
+
:unknown)
|
|
82
|
+
SENSITIVE = []
|
|
83
|
+
include Aws::Structure
|
|
84
|
+
include Aws::Structure::Union
|
|
85
|
+
|
|
86
|
+
class CustomerManagedAwsSecret < AdminPasswordSourceConfigurationInput; end
|
|
87
|
+
class Unknown < AdminPasswordSourceConfigurationInput; end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# A summary of the admin password source configuration for an Autonomous
|
|
91
|
+
# Database.
|
|
92
|
+
#
|
|
93
|
+
# @!attribute [rw] admin_password_source
|
|
94
|
+
# The source of the admin password for the Autonomous Database.
|
|
95
|
+
# @return [String]
|
|
96
|
+
#
|
|
97
|
+
# @!attribute [rw] admin_password_source_configuration
|
|
98
|
+
# The configuration of the admin password source for the Autonomous
|
|
99
|
+
# Database.
|
|
100
|
+
# @return [Types::AdminPasswordSourceConfiguration]
|
|
101
|
+
#
|
|
102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AdminPasswordSourceSummary AWS API Documentation
|
|
103
|
+
#
|
|
104
|
+
class AdminPasswordSourceSummary < Struct.new(
|
|
105
|
+
:admin_password_source,
|
|
106
|
+
:admin_password_source_configuration)
|
|
107
|
+
SENSITIVE = []
|
|
108
|
+
include Aws::Structure
|
|
109
|
+
end
|
|
110
|
+
|
|
44
111
|
# @!attribute [rw] iam_role_arn
|
|
45
112
|
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
|
46
113
|
# and Access Management (IAM) service role to associate with the
|
|
@@ -558,6 +625,11 @@ module Aws::Odb
|
|
|
558
625
|
# deletion.
|
|
559
626
|
# @return [Time]
|
|
560
627
|
#
|
|
628
|
+
# @!attribute [rw] admin_password_source_summary
|
|
629
|
+
# The summary of the admin password source configuration for the
|
|
630
|
+
# Autonomous Database.
|
|
631
|
+
# @return [Types::AdminPasswordSourceSummary]
|
|
632
|
+
#
|
|
561
633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AutonomousDatabase AWS API Documentation
|
|
562
634
|
#
|
|
563
635
|
class AutonomousDatabase < Struct.new(
|
|
@@ -663,7 +735,8 @@ module Aws::Odb
|
|
|
663
735
|
:time_disaster_recovery_role_changed,
|
|
664
736
|
:time_until_reconnect_clone_enabled,
|
|
665
737
|
:next_long_term_backup_time_stamp,
|
|
666
|
-
:time_undeleted
|
|
738
|
+
:time_undeleted,
|
|
739
|
+
:admin_password_source_summary)
|
|
667
740
|
SENSITIVE = []
|
|
668
741
|
include Aws::Structure
|
|
669
742
|
end
|
|
@@ -1501,6 +1574,11 @@ module Aws::Odb
|
|
|
1501
1574
|
# deletion.
|
|
1502
1575
|
# @return [Time]
|
|
1503
1576
|
#
|
|
1577
|
+
# @!attribute [rw] admin_password_source_summary
|
|
1578
|
+
# The summary of the admin password source configuration for the
|
|
1579
|
+
# Autonomous Database.
|
|
1580
|
+
# @return [Types::AdminPasswordSourceSummary]
|
|
1581
|
+
#
|
|
1504
1582
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AutonomousDatabaseSummary AWS API Documentation
|
|
1505
1583
|
#
|
|
1506
1584
|
class AutonomousDatabaseSummary < Struct.new(
|
|
@@ -1606,7 +1684,8 @@ module Aws::Odb
|
|
|
1606
1684
|
:time_disaster_recovery_role_changed,
|
|
1607
1685
|
:time_until_reconnect_clone_enabled,
|
|
1608
1686
|
:next_long_term_backup_time_stamp,
|
|
1609
|
-
:time_undeleted
|
|
1687
|
+
:time_undeleted,
|
|
1688
|
+
:admin_password_source_summary)
|
|
1610
1689
|
SENSITIVE = []
|
|
1611
1690
|
include Aws::Structure
|
|
1612
1691
|
end
|
|
@@ -1649,11 +1728,17 @@ module Aws::Odb
|
|
|
1649
1728
|
# rotated.
|
|
1650
1729
|
# @return [Time]
|
|
1651
1730
|
#
|
|
1731
|
+
# @!attribute [rw] password_source_summary
|
|
1732
|
+
# The summary of the password source configuration for the Autonomous
|
|
1733
|
+
# Database wallet.
|
|
1734
|
+
# @return [Types::WalletPasswordSourceSummary]
|
|
1735
|
+
#
|
|
1652
1736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AutonomousDatabaseWalletDetails AWS API Documentation
|
|
1653
1737
|
#
|
|
1654
1738
|
class AutonomousDatabaseWalletDetails < Struct.new(
|
|
1655
1739
|
:status,
|
|
1656
|
-
:time_rotated
|
|
1740
|
+
:time_rotated,
|
|
1741
|
+
:password_source_summary)
|
|
1657
1742
|
SENSITIVE = []
|
|
1658
1743
|
include Aws::Structure
|
|
1659
1744
|
end
|
|
@@ -3752,6 +3837,17 @@ module Aws::Odb
|
|
|
3752
3837
|
# Database.
|
|
3753
3838
|
# @return [Types::EncryptionKeyConfigurationInput]
|
|
3754
3839
|
#
|
|
3840
|
+
# @!attribute [rw] admin_password_source
|
|
3841
|
+
# The source of the admin password for the Autonomous Database. When
|
|
3842
|
+
# set to `CUSTOMER_MANAGED_AWS_SECRET`, the admin password is
|
|
3843
|
+
# retrieved from an Amazon Web Services Secrets Manager secret.
|
|
3844
|
+
# @return [String]
|
|
3845
|
+
#
|
|
3846
|
+
# @!attribute [rw] admin_password_source_configuration
|
|
3847
|
+
# The configuration of the admin password source for the Autonomous
|
|
3848
|
+
# Database.
|
|
3849
|
+
# @return [Types::AdminPasswordSourceConfigurationInput]
|
|
3850
|
+
#
|
|
3755
3851
|
# @!attribute [rw] client_token
|
|
3756
3852
|
# A client-provided token to ensure the idempotency of the request.
|
|
3757
3853
|
#
|
|
@@ -3804,6 +3900,8 @@ module Aws::Odb
|
|
|
3804
3900
|
:source_configuration,
|
|
3805
3901
|
:encryption_key_provider,
|
|
3806
3902
|
:encryption_key_configuration,
|
|
3903
|
+
:admin_password_source,
|
|
3904
|
+
:admin_password_source_configuration,
|
|
3807
3905
|
:client_token,
|
|
3808
3906
|
:tags)
|
|
3809
3907
|
SENSITIVE = [:admin_password]
|
|
@@ -3852,6 +3950,17 @@ module Aws::Odb
|
|
|
3852
3950
|
# The password to encrypt the keys inside the wallet.
|
|
3853
3951
|
# @return [String]
|
|
3854
3952
|
#
|
|
3953
|
+
# @!attribute [rw] password_source
|
|
3954
|
+
# The source of the password for encrypting the wallet. When set to
|
|
3955
|
+
# `CUSTOMER_MANAGED_AWS_SECRET`, the password is retrieved from an
|
|
3956
|
+
# Amazon Web Services Secrets Manager secret.
|
|
3957
|
+
# @return [String]
|
|
3958
|
+
#
|
|
3959
|
+
# @!attribute [rw] password_source_configuration
|
|
3960
|
+
# The configuration of the password source for the Autonomous Database
|
|
3961
|
+
# wallet.
|
|
3962
|
+
# @return [Types::WalletPasswordSourceConfigurationInput]
|
|
3963
|
+
#
|
|
3855
3964
|
# @!attribute [rw] client_token
|
|
3856
3965
|
# A client-provided token to ensure the idempotency of the request.
|
|
3857
3966
|
#
|
|
@@ -3865,6 +3974,8 @@ module Aws::Odb
|
|
|
3865
3974
|
:autonomous_database_id,
|
|
3866
3975
|
:wallet_type,
|
|
3867
3976
|
:password,
|
|
3977
|
+
:password_source,
|
|
3978
|
+
:password_source_configuration,
|
|
3868
3979
|
:client_token)
|
|
3869
3980
|
SENSITIVE = [:password]
|
|
3870
3981
|
include Aws::Structure
|
|
@@ -4671,6 +4782,64 @@ module Aws::Odb
|
|
|
4671
4782
|
include Aws::Structure
|
|
4672
4783
|
end
|
|
4673
4784
|
|
|
4785
|
+
# The configuration of a customer-managed Amazon Web Services Secrets
|
|
4786
|
+
# Manager secret used to supply a password.
|
|
4787
|
+
#
|
|
4788
|
+
# @!attribute [rw] iam_role_arn
|
|
4789
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
|
4790
|
+
# and Access Management (IAM) role that OCI assumes to retrieve the
|
|
4791
|
+
# secret value.
|
|
4792
|
+
# @return [String]
|
|
4793
|
+
#
|
|
4794
|
+
# @!attribute [rw] secret_id
|
|
4795
|
+
# The identifier or ARN of the Amazon Web Services Secrets Manager
|
|
4796
|
+
# secret that contains the password.
|
|
4797
|
+
# @return [String]
|
|
4798
|
+
#
|
|
4799
|
+
# @!attribute [rw] external_id_type
|
|
4800
|
+
# The type of Oracle Cloud Identifier (OCID) used as the external ID
|
|
4801
|
+
# when assuming the IAM role.
|
|
4802
|
+
# @return [String]
|
|
4803
|
+
#
|
|
4804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CustomerManagedAwsSecretConfiguration AWS API Documentation
|
|
4805
|
+
#
|
|
4806
|
+
class CustomerManagedAwsSecretConfiguration < Struct.new(
|
|
4807
|
+
:iam_role_arn,
|
|
4808
|
+
:secret_id,
|
|
4809
|
+
:external_id_type)
|
|
4810
|
+
SENSITIVE = []
|
|
4811
|
+
include Aws::Structure
|
|
4812
|
+
end
|
|
4813
|
+
|
|
4814
|
+
# The input configuration for a customer-managed Amazon Web Services
|
|
4815
|
+
# Secrets Manager secret used to supply a password.
|
|
4816
|
+
#
|
|
4817
|
+
# @!attribute [rw] secret_id
|
|
4818
|
+
# The identifier or ARN of the Amazon Web Services Secrets Manager
|
|
4819
|
+
# secret that contains the password.
|
|
4820
|
+
# @return [String]
|
|
4821
|
+
#
|
|
4822
|
+
# @!attribute [rw] iam_role_arn
|
|
4823
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
|
4824
|
+
# and Access Management (IAM) role that OCI assumes to retrieve the
|
|
4825
|
+
# secret value.
|
|
4826
|
+
# @return [String]
|
|
4827
|
+
#
|
|
4828
|
+
# @!attribute [rw] external_id_type
|
|
4829
|
+
# The type of Oracle Cloud Identifier (OCID) used as the external ID
|
|
4830
|
+
# when assuming the IAM role.
|
|
4831
|
+
# @return [String]
|
|
4832
|
+
#
|
|
4833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CustomerManagedAwsSecretConfigurationInput AWS API Documentation
|
|
4834
|
+
#
|
|
4835
|
+
class CustomerManagedAwsSecretConfigurationInput < Struct.new(
|
|
4836
|
+
:secret_id,
|
|
4837
|
+
:iam_role_arn,
|
|
4838
|
+
:external_id_type)
|
|
4839
|
+
SENSITIVE = []
|
|
4840
|
+
include Aws::Structure
|
|
4841
|
+
end
|
|
4842
|
+
|
|
4674
4843
|
# Information about the data collection options enabled for a VM
|
|
4675
4844
|
# cluster.
|
|
4676
4845
|
#
|
|
@@ -6378,10 +6547,17 @@ module Aws::Odb
|
|
|
6378
6547
|
# for service initialization.
|
|
6379
6548
|
# @return [Boolean]
|
|
6380
6549
|
#
|
|
6550
|
+
# @!attribute [rw] autonomous_database_oci_aws_secrets_manager_integration
|
|
6551
|
+
# Specifies whether to enable or disable the OCI service-account role
|
|
6552
|
+
# for Amazon Web Services Secrets Manager integration with Autonomous
|
|
6553
|
+
# Database.
|
|
6554
|
+
# @return [String]
|
|
6555
|
+
#
|
|
6381
6556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeServiceInput AWS API Documentation
|
|
6382
6557
|
#
|
|
6383
6558
|
class InitializeServiceInput < Struct.new(
|
|
6384
|
-
:oci_identity_domain
|
|
6559
|
+
:oci_identity_domain,
|
|
6560
|
+
:autonomous_database_oci_aws_secrets_manager_integration)
|
|
6385
6561
|
SENSITIVE = []
|
|
6386
6562
|
include Aws::Structure
|
|
6387
6563
|
end
|
|
@@ -7488,11 +7664,22 @@ module Aws::Odb
|
|
|
7488
7664
|
# role.
|
|
7489
7665
|
# @return [String]
|
|
7490
7666
|
#
|
|
7667
|
+
# @!attribute [rw] status
|
|
7668
|
+
# The current lifecycle status of the IAM service role.
|
|
7669
|
+
# @return [String]
|
|
7670
|
+
#
|
|
7671
|
+
# @!attribute [rw] status_reason
|
|
7672
|
+
# Additional information about the current status of the IAM service
|
|
7673
|
+
# role, if applicable.
|
|
7674
|
+
# @return [String]
|
|
7675
|
+
#
|
|
7491
7676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/OciIamRole AWS API Documentation
|
|
7492
7677
|
#
|
|
7493
7678
|
class OciIamRole < Struct.new(
|
|
7494
7679
|
:iam_role_arn,
|
|
7495
|
-
:aws_integration
|
|
7680
|
+
:aws_integration,
|
|
7681
|
+
:status,
|
|
7682
|
+
:status_reason)
|
|
7496
7683
|
SENSITIVE = []
|
|
7497
7684
|
include Aws::Structure
|
|
7498
7685
|
end
|
|
@@ -9048,6 +9235,17 @@ module Aws::Odb
|
|
|
9048
9235
|
# Database.
|
|
9049
9236
|
# @return [Types::EncryptionKeyConfigurationInput]
|
|
9050
9237
|
#
|
|
9238
|
+
# @!attribute [rw] admin_password_source
|
|
9239
|
+
# The source of the admin password for the Autonomous Database. When
|
|
9240
|
+
# set to `CUSTOMER_MANAGED_AWS_SECRET`, the admin password is
|
|
9241
|
+
# retrieved from an Amazon Web Services Secrets Manager secret.
|
|
9242
|
+
# @return [String]
|
|
9243
|
+
#
|
|
9244
|
+
# @!attribute [rw] admin_password_source_configuration
|
|
9245
|
+
# The configuration of the admin password source for the Autonomous
|
|
9246
|
+
# Database.
|
|
9247
|
+
# @return [Types::AdminPasswordSourceConfigurationInput]
|
|
9248
|
+
#
|
|
9051
9249
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/UpdateAutonomousDatabaseInput AWS API Documentation
|
|
9052
9250
|
#
|
|
9053
9251
|
class UpdateAutonomousDatabaseInput < Struct.new(
|
|
@@ -9093,7 +9291,9 @@ module Aws::Odb
|
|
|
9093
9291
|
:auto_refresh_point_lag_in_seconds,
|
|
9094
9292
|
:time_of_auto_refresh_start,
|
|
9095
9293
|
:encryption_key_provider,
|
|
9096
|
-
:encryption_key_configuration
|
|
9294
|
+
:encryption_key_configuration,
|
|
9295
|
+
:admin_password_source,
|
|
9296
|
+
:admin_password_source_configuration)
|
|
9097
9297
|
SENSITIVE = [:admin_password]
|
|
9098
9298
|
include Aws::Structure
|
|
9099
9299
|
end
|
|
@@ -9390,6 +9590,73 @@ module Aws::Odb
|
|
|
9390
9590
|
include Aws::Structure
|
|
9391
9591
|
end
|
|
9392
9592
|
|
|
9593
|
+
# The configuration of the wallet password source. This is a union, so
|
|
9594
|
+
# only one of the following members can be specified.
|
|
9595
|
+
#
|
|
9596
|
+
# @note WalletPasswordSourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of WalletPasswordSourceConfiguration corresponding to the set member.
|
|
9597
|
+
#
|
|
9598
|
+
# @!attribute [rw] customer_managed_aws_secret
|
|
9599
|
+
# The configuration for a customer-managed Amazon Web Services Secrets
|
|
9600
|
+
# Manager secret used as the wallet password source.
|
|
9601
|
+
# @return [Types::CustomerManagedAwsSecretConfiguration]
|
|
9602
|
+
#
|
|
9603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/WalletPasswordSourceConfiguration AWS API Documentation
|
|
9604
|
+
#
|
|
9605
|
+
class WalletPasswordSourceConfiguration < Struct.new(
|
|
9606
|
+
:customer_managed_aws_secret,
|
|
9607
|
+
:unknown)
|
|
9608
|
+
SENSITIVE = []
|
|
9609
|
+
include Aws::Structure
|
|
9610
|
+
include Aws::Structure::Union
|
|
9611
|
+
|
|
9612
|
+
class CustomerManagedAwsSecret < WalletPasswordSourceConfiguration; end
|
|
9613
|
+
class Unknown < WalletPasswordSourceConfiguration; end
|
|
9614
|
+
end
|
|
9615
|
+
|
|
9616
|
+
# The input configuration for the wallet password source. This is a
|
|
9617
|
+
# union, so only one of the following members can be specified.
|
|
9618
|
+
#
|
|
9619
|
+
# @note WalletPasswordSourceConfigurationInput is a union - when making an API calls you must set exactly one of the members.
|
|
9620
|
+
#
|
|
9621
|
+
# @!attribute [rw] customer_managed_aws_secret
|
|
9622
|
+
# The configuration for using a customer-managed Amazon Web Services
|
|
9623
|
+
# Secrets Manager secret as the wallet password source.
|
|
9624
|
+
# @return [Types::CustomerManagedAwsSecretConfigurationInput]
|
|
9625
|
+
#
|
|
9626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/WalletPasswordSourceConfigurationInput AWS API Documentation
|
|
9627
|
+
#
|
|
9628
|
+
class WalletPasswordSourceConfigurationInput < Struct.new(
|
|
9629
|
+
:customer_managed_aws_secret,
|
|
9630
|
+
:unknown)
|
|
9631
|
+
SENSITIVE = []
|
|
9632
|
+
include Aws::Structure
|
|
9633
|
+
include Aws::Structure::Union
|
|
9634
|
+
|
|
9635
|
+
class CustomerManagedAwsSecret < WalletPasswordSourceConfigurationInput; end
|
|
9636
|
+
class Unknown < WalletPasswordSourceConfigurationInput; end
|
|
9637
|
+
end
|
|
9638
|
+
|
|
9639
|
+
# A summary of the password source configuration for an Autonomous
|
|
9640
|
+
# Database wallet.
|
|
9641
|
+
#
|
|
9642
|
+
# @!attribute [rw] password_source
|
|
9643
|
+
# The source of the password for the Autonomous Database wallet.
|
|
9644
|
+
# @return [String]
|
|
9645
|
+
#
|
|
9646
|
+
# @!attribute [rw] password_source_configuration
|
|
9647
|
+
# The configuration of the password source for the Autonomous Database
|
|
9648
|
+
# wallet.
|
|
9649
|
+
# @return [Types::WalletPasswordSourceConfiguration]
|
|
9650
|
+
#
|
|
9651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/WalletPasswordSourceSummary AWS API Documentation
|
|
9652
|
+
#
|
|
9653
|
+
class WalletPasswordSourceSummary < Struct.new(
|
|
9654
|
+
:password_source,
|
|
9655
|
+
:password_source_configuration)
|
|
9656
|
+
SENSITIVE = []
|
|
9657
|
+
include Aws::Structure
|
|
9658
|
+
end
|
|
9659
|
+
|
|
9393
9660
|
# The configuration for Zero-ETL access from the ODB network.
|
|
9394
9661
|
#
|
|
9395
9662
|
# @!attribute [rw] status
|
data/lib/aws-sdk-odb.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -206,6 +206,14 @@ module Aws
|
|
|
206
206
|
kms_key_id: ::String?
|
|
207
207
|
}?
|
|
208
208
|
},
|
|
209
|
+
?admin_password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER"),
|
|
210
|
+
?admin_password_source_configuration: {
|
|
211
|
+
customer_managed_aws_secret: {
|
|
212
|
+
secret_id: ::String?,
|
|
213
|
+
iam_role_arn: ::String?,
|
|
214
|
+
external_id_type: ("database_ocid" | "compartment_ocid" | "tenant_ocid")?
|
|
215
|
+
}?
|
|
216
|
+
},
|
|
209
217
|
?client_token: ::String,
|
|
210
218
|
?tags: Hash[::String, ::String]
|
|
211
219
|
) -> _CreateAutonomousDatabaseResponseSuccess
|
|
@@ -236,7 +244,15 @@ module Aws
|
|
|
236
244
|
def create_autonomous_database_wallet: (
|
|
237
245
|
autonomous_database_id: ::String,
|
|
238
246
|
?wallet_type: ("REGIONAL" | "INSTANCE"),
|
|
239
|
-
password: ::String,
|
|
247
|
+
?password: ::String,
|
|
248
|
+
?password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER"),
|
|
249
|
+
?password_source_configuration: {
|
|
250
|
+
customer_managed_aws_secret: {
|
|
251
|
+
secret_id: ::String?,
|
|
252
|
+
iam_role_arn: ::String?,
|
|
253
|
+
external_id_type: ("database_ocid" | "compartment_ocid" | "tenant_ocid")?
|
|
254
|
+
}?
|
|
255
|
+
},
|
|
240
256
|
?client_token: ::String
|
|
241
257
|
) -> _CreateAutonomousDatabaseWalletResponseSuccess
|
|
242
258
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAutonomousDatabaseWalletResponseSuccess
|
|
@@ -606,7 +622,8 @@ module Aws
|
|
|
606
622
|
end
|
|
607
623
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Odb/Client.html#initialize_service-instance_method
|
|
608
624
|
def initialize_service: (
|
|
609
|
-
?oci_identity_domain: bool
|
|
625
|
+
?oci_identity_domain: bool,
|
|
626
|
+
?autonomous_database_oci_aws_secrets_manager_integration: ("ENABLED" | "DISABLED")
|
|
610
627
|
) -> _InitializeServiceResponseSuccess
|
|
611
628
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InitializeServiceResponseSuccess
|
|
612
629
|
|
|
@@ -1063,6 +1080,14 @@ module Aws
|
|
|
1063
1080
|
external_id_type: ("database_ocid" | "compartment_ocid" | "tenant_ocid")?,
|
|
1064
1081
|
kms_key_id: ::String?
|
|
1065
1082
|
}?
|
|
1083
|
+
},
|
|
1084
|
+
?admin_password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER"),
|
|
1085
|
+
?admin_password_source_configuration: {
|
|
1086
|
+
customer_managed_aws_secret: {
|
|
1087
|
+
secret_id: ::String?,
|
|
1088
|
+
iam_role_arn: ::String?,
|
|
1089
|
+
external_id_type: ("database_ocid" | "compartment_ocid" | "tenant_ocid")?
|
|
1090
|
+
}?
|
|
1066
1091
|
}
|
|
1067
1092
|
) -> _UpdateAutonomousDatabaseResponseSuccess
|
|
1068
1093
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAutonomousDatabaseResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -21,6 +21,34 @@ module Aws::Odb
|
|
|
21
21
|
SENSITIVE: []
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
+
class AdminPasswordSourceConfiguration
|
|
25
|
+
attr_accessor customer_managed_aws_secret: Types::CustomerManagedAwsSecretConfiguration
|
|
26
|
+
attr_accessor unknown: untyped
|
|
27
|
+
SENSITIVE: []
|
|
28
|
+
|
|
29
|
+
class CustomerManagedAwsSecret < AdminPasswordSourceConfiguration
|
|
30
|
+
end
|
|
31
|
+
class Unknown < AdminPasswordSourceConfiguration
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
class AdminPasswordSourceConfigurationInput
|
|
36
|
+
attr_accessor customer_managed_aws_secret: Types::CustomerManagedAwsSecretConfigurationInput
|
|
37
|
+
attr_accessor unknown: untyped
|
|
38
|
+
SENSITIVE: []
|
|
39
|
+
|
|
40
|
+
class CustomerManagedAwsSecret < AdminPasswordSourceConfigurationInput
|
|
41
|
+
end
|
|
42
|
+
class Unknown < AdminPasswordSourceConfigurationInput
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
class AdminPasswordSourceSummary
|
|
47
|
+
attr_accessor admin_password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER")
|
|
48
|
+
attr_accessor admin_password_source_configuration: Types::AdminPasswordSourceConfiguration
|
|
49
|
+
SENSITIVE: []
|
|
50
|
+
end
|
|
51
|
+
|
|
24
52
|
class AssociateIamRoleToResourceInput
|
|
25
53
|
attr_accessor iam_role_arn: ::String
|
|
26
54
|
attr_accessor aws_integration: ("KmsTde")
|
|
@@ -135,6 +163,7 @@ module Aws::Odb
|
|
|
135
163
|
attr_accessor time_until_reconnect_clone_enabled: ::Time
|
|
136
164
|
attr_accessor next_long_term_backup_time_stamp: ::Time
|
|
137
165
|
attr_accessor time_undeleted: ::Time
|
|
166
|
+
attr_accessor admin_password_source_summary: Types::AdminPasswordSourceSummary
|
|
138
167
|
SENSITIVE: []
|
|
139
168
|
end
|
|
140
169
|
|
|
@@ -322,6 +351,7 @@ module Aws::Odb
|
|
|
322
351
|
attr_accessor time_until_reconnect_clone_enabled: ::Time
|
|
323
352
|
attr_accessor next_long_term_backup_time_stamp: ::Time
|
|
324
353
|
attr_accessor time_undeleted: ::Time
|
|
354
|
+
attr_accessor admin_password_source_summary: Types::AdminPasswordSourceSummary
|
|
325
355
|
SENSITIVE: []
|
|
326
356
|
end
|
|
327
357
|
|
|
@@ -335,6 +365,7 @@ module Aws::Odb
|
|
|
335
365
|
class AutonomousDatabaseWalletDetails
|
|
336
366
|
attr_accessor status: ("ACTIVE" | "UPDATING")
|
|
337
367
|
attr_accessor time_rotated: ::Time
|
|
368
|
+
attr_accessor password_source_summary: Types::WalletPasswordSourceSummary
|
|
338
369
|
SENSITIVE: []
|
|
339
370
|
end
|
|
340
371
|
|
|
@@ -749,6 +780,8 @@ module Aws::Odb
|
|
|
749
780
|
attr_accessor source_configuration: Types::SourceConfiguration
|
|
750
781
|
attr_accessor encryption_key_provider: ("ORACLE_MANAGED" | "AWS_KMS")
|
|
751
782
|
attr_accessor encryption_key_configuration: Types::EncryptionKeyConfigurationInput
|
|
783
|
+
attr_accessor admin_password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER")
|
|
784
|
+
attr_accessor admin_password_source_configuration: Types::AdminPasswordSourceConfigurationInput
|
|
752
785
|
attr_accessor client_token: ::String
|
|
753
786
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
754
787
|
SENSITIVE: [:admin_password]
|
|
@@ -766,6 +799,8 @@ module Aws::Odb
|
|
|
766
799
|
attr_accessor autonomous_database_id: ::String
|
|
767
800
|
attr_accessor wallet_type: ("REGIONAL" | "INSTANCE")
|
|
768
801
|
attr_accessor password: ::String
|
|
802
|
+
attr_accessor password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER")
|
|
803
|
+
attr_accessor password_source_configuration: Types::WalletPasswordSourceConfigurationInput
|
|
769
804
|
attr_accessor client_token: ::String
|
|
770
805
|
SENSITIVE: [:password]
|
|
771
806
|
end
|
|
@@ -933,6 +968,20 @@ module Aws::Odb
|
|
|
933
968
|
SENSITIVE: [:email]
|
|
934
969
|
end
|
|
935
970
|
|
|
971
|
+
class CustomerManagedAwsSecretConfiguration
|
|
972
|
+
attr_accessor iam_role_arn: ::String
|
|
973
|
+
attr_accessor secret_id: ::String
|
|
974
|
+
attr_accessor external_id_type: ("database_ocid" | "compartment_ocid" | "tenant_ocid")
|
|
975
|
+
SENSITIVE: []
|
|
976
|
+
end
|
|
977
|
+
|
|
978
|
+
class CustomerManagedAwsSecretConfigurationInput
|
|
979
|
+
attr_accessor secret_id: ::String
|
|
980
|
+
attr_accessor iam_role_arn: ::String
|
|
981
|
+
attr_accessor external_id_type: ("database_ocid" | "compartment_ocid" | "tenant_ocid")
|
|
982
|
+
SENSITIVE: []
|
|
983
|
+
end
|
|
984
|
+
|
|
936
985
|
class DataCollectionOptions
|
|
937
986
|
attr_accessor is_diagnostics_events_enabled: bool
|
|
938
987
|
attr_accessor is_health_monitoring_enabled: bool
|
|
@@ -1412,6 +1461,7 @@ module Aws::Odb
|
|
|
1412
1461
|
|
|
1413
1462
|
class InitializeServiceInput
|
|
1414
1463
|
attr_accessor oci_identity_domain: bool
|
|
1464
|
+
attr_accessor autonomous_database_oci_aws_secrets_manager_integration: ("ENABLED" | "DISABLED")
|
|
1415
1465
|
SENSITIVE: []
|
|
1416
1466
|
end
|
|
1417
1467
|
|
|
@@ -1725,7 +1775,9 @@ module Aws::Odb
|
|
|
1725
1775
|
|
|
1726
1776
|
class OciIamRole
|
|
1727
1777
|
attr_accessor iam_role_arn: ::String
|
|
1728
|
-
attr_accessor aws_integration: ("KmsTde")
|
|
1778
|
+
attr_accessor aws_integration: ("KmsTde" | "SecretsManager")
|
|
1779
|
+
attr_accessor status: ("PROVISIONING" | "AVAILABLE" | "PROVISION_FAILED" | "TERMINATING" | "TERMINATE_FAILED")
|
|
1780
|
+
attr_accessor status_reason: ::String
|
|
1729
1781
|
SENSITIVE: []
|
|
1730
1782
|
end
|
|
1731
1783
|
|
|
@@ -2145,6 +2197,8 @@ module Aws::Odb
|
|
|
2145
2197
|
attr_accessor time_of_auto_refresh_start: ::Time
|
|
2146
2198
|
attr_accessor encryption_key_provider: ("ORACLE_MANAGED" | "AWS_KMS")
|
|
2147
2199
|
attr_accessor encryption_key_configuration: Types::EncryptionKeyConfigurationInput
|
|
2200
|
+
attr_accessor admin_password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER")
|
|
2201
|
+
attr_accessor admin_password_source_configuration: Types::AdminPasswordSourceConfigurationInput
|
|
2148
2202
|
SENSITIVE: [:admin_password]
|
|
2149
2203
|
end
|
|
2150
2204
|
|
|
@@ -2224,6 +2278,34 @@ module Aws::Odb
|
|
|
2224
2278
|
SENSITIVE: []
|
|
2225
2279
|
end
|
|
2226
2280
|
|
|
2281
|
+
class WalletPasswordSourceConfiguration
|
|
2282
|
+
attr_accessor customer_managed_aws_secret: Types::CustomerManagedAwsSecretConfiguration
|
|
2283
|
+
attr_accessor unknown: untyped
|
|
2284
|
+
SENSITIVE: []
|
|
2285
|
+
|
|
2286
|
+
class CustomerManagedAwsSecret < WalletPasswordSourceConfiguration
|
|
2287
|
+
end
|
|
2288
|
+
class Unknown < WalletPasswordSourceConfiguration
|
|
2289
|
+
end
|
|
2290
|
+
end
|
|
2291
|
+
|
|
2292
|
+
class WalletPasswordSourceConfigurationInput
|
|
2293
|
+
attr_accessor customer_managed_aws_secret: Types::CustomerManagedAwsSecretConfigurationInput
|
|
2294
|
+
attr_accessor unknown: untyped
|
|
2295
|
+
SENSITIVE: []
|
|
2296
|
+
|
|
2297
|
+
class CustomerManagedAwsSecret < WalletPasswordSourceConfigurationInput
|
|
2298
|
+
end
|
|
2299
|
+
class Unknown < WalletPasswordSourceConfigurationInput
|
|
2300
|
+
end
|
|
2301
|
+
end
|
|
2302
|
+
|
|
2303
|
+
class WalletPasswordSourceSummary
|
|
2304
|
+
attr_accessor password_source: ("CUSTOMER_MANAGED_AWS_SECRET" | "API_REQUEST_PARAMETER")
|
|
2305
|
+
attr_accessor password_source_configuration: Types::WalletPasswordSourceConfiguration
|
|
2306
|
+
SENSITIVE: []
|
|
2307
|
+
end
|
|
2308
|
+
|
|
2227
2309
|
class ZeroEtlAccess
|
|
2228
2310
|
attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
|
|
2229
2311
|
attr_accessor cidr: ::String
|