aws-sdk-odb 1.8.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.
@@ -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
  #
@@ -1407,6 +1436,11 @@ module Aws::Odb
1407
1436
  # physical core of a processor with hyper-threading enabled.
1408
1437
  # @return [String]
1409
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
+ #
1410
1444
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CloudVmCluster AWS API Documentation
1411
1445
  #
1412
1446
  class CloudVmCluster < Struct.new(
@@ -1449,7 +1483,8 @@ module Aws::Odb
1449
1483
  :vip_ids,
1450
1484
  :odb_network_id,
1451
1485
  :percent_progress,
1452
- :compute_model)
1486
+ :compute_model,
1487
+ :iam_roles)
1453
1488
  SENSITIVE = [:ssh_public_keys]
1454
1489
  include Aws::Structure
1455
1490
  end
@@ -1642,6 +1677,11 @@ module Aws::Odb
1642
1677
  # physical core of a processor with hyper-threading enabled.
1643
1678
  # @return [String]
1644
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
+ #
1645
1685
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CloudVmClusterSummary AWS API Documentation
1646
1686
  #
1647
1687
  class CloudVmClusterSummary < Struct.new(
@@ -1684,7 +1724,8 @@ module Aws::Odb
1684
1724
  :vip_ids,
1685
1725
  :odb_network_id,
1686
1726
  :percent_progress,
1687
- :compute_model)
1727
+ :compute_model,
1728
+ :iam_roles)
1688
1729
  SENSITIVE = [:ssh_public_keys]
1689
1730
  include Aws::Structure
1690
1731
  end
@@ -2244,11 +2285,36 @@ module Aws::Odb
2244
2285
  # network.
2245
2286
  # @return [String]
2246
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
+ #
2247
2298
  # @!attribute [rw] s3_policy_document
2248
2299
  # Specifies the endpoint policy for Amazon S3 access from the ODB
2249
2300
  # network.
2250
2301
  # @return [String]
2251
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
+ #
2252
2318
  # @!attribute [rw] tags
2253
2319
  # The list of resource tags to apply to the ODB network.
2254
2320
  # @return [Hash<String,String>]
@@ -2266,7 +2332,12 @@ module Aws::Odb
2266
2332
  :client_token,
2267
2333
  :s3_access,
2268
2334
  :zero_etl_access,
2335
+ :sts_access,
2336
+ :kms_access,
2269
2337
  :s3_policy_document,
2338
+ :sts_policy_document,
2339
+ :kms_policy_document,
2340
+ :cross_region_s3_restore_sources_to_enable,
2270
2341
  :tags)
2271
2342
  SENSITIVE = []
2272
2343
  include Aws::Structure
@@ -2376,6 +2447,32 @@ module Aws::Odb
2376
2447
  include Aws::Structure
2377
2448
  end
2378
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
+
2379
2476
  # A contact to receive notification from Oracle about maintenance
2380
2477
  # updates for a specific Exadata infrastructure.
2381
2478
  #
@@ -3270,6 +3367,35 @@ module Aws::Odb
3270
3367
  #
3271
3368
  class DeleteOdbPeeringConnectionOutput < Aws::EmptyStructure; end
3272
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
+
3273
3399
  # The IORM settings of the Exadata DB system.
3274
3400
  #
3275
3401
  # @!attribute [rw] db_plans
@@ -3483,12 +3609,18 @@ module Aws::Odb
3483
3609
  # account.
3484
3610
  # @return [String]
3485
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
+ #
3486
3617
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOciOnboardingStatusOutput AWS API Documentation
3487
3618
  #
3488
3619
  class GetOciOnboardingStatusOutput < Struct.new(
3489
3620
  :status,
3490
3621
  :existing_tenancy_activation_link,
3491
- :new_tenancy_activation_link)
3622
+ :new_tenancy_activation_link,
3623
+ :oci_identity_domain)
3492
3624
  SENSITIVE = []
3493
3625
  include Aws::Structure
3494
3626
  end
@@ -3558,11 +3690,50 @@ module Aws::Odb
3558
3690
  include Aws::Structure
3559
3691
  end
3560
3692
 
3561
- # @api private
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]
3562
3729
  #
3563
3730
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeServiceInput AWS API Documentation
3564
3731
  #
3565
- class InitializeServiceInput < Aws::EmptyStructure; end
3732
+ class InitializeServiceInput < Struct.new(
3733
+ :oci_identity_domain)
3734
+ SENSITIVE = []
3735
+ include Aws::Structure
3736
+ end
3566
3737
 
3567
3738
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeServiceOutput AWS API Documentation
3568
3739
  #
@@ -3588,6 +3759,36 @@ module Aws::Odb
3588
3759
  include Aws::Structure
3589
3760
  end
3590
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
+
3591
3792
  # @!attribute [rw] max_results
3592
3793
  # The maximum number of items to return per page.
3593
3794
  # @return [Integer]
@@ -4225,6 +4426,21 @@ module Aws::Odb
4225
4426
  # The Amazon S3 access configuration.
4226
4427
  # @return [Types::S3Access]
4227
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
+ #
4228
4444
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ManagedServices AWS API Documentation
4229
4445
  #
4230
4446
  class ManagedServices < Struct.new(
@@ -4234,7 +4450,10 @@ module Aws::Odb
4234
4450
  :service_network_endpoint,
4235
4451
  :managed_s3_backup_access,
4236
4452
  :zero_etl_access,
4237
- :s3_access)
4453
+ :s3_access,
4454
+ :sts_access,
4455
+ :kms_access,
4456
+ :cross_region_s3_restore_sources_access)
4238
4457
  SENSITIVE = []
4239
4458
  include Aws::Structure
4240
4459
  end
@@ -4273,6 +4492,48 @@ module Aws::Odb
4273
4492
  include Aws::Structure
4274
4493
  end
4275
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
+
4276
4537
  # Information about an ODB network.
4277
4538
  #
4278
4539
  # @!attribute [rw] odb_network_id
@@ -4883,6 +5144,37 @@ module Aws::Odb
4883
5144
  include Aws::Structure
4884
5145
  end
4885
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
+
4886
5178
  # Information about the compatible system versions that can be used with
4887
5179
  # a specific Exadata shape and Grid Infrastructure (GI) version.
4888
5180
  #
@@ -5045,11 +5337,41 @@ module Aws::Odb
5045
5337
  # network.
5046
5338
  # @return [String]
5047
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
+ #
5048
5350
  # @!attribute [rw] s3_policy_document
5049
5351
  # Specifies the updated endpoint policy for Amazon S3 access from the
5050
5352
  # ODB network.
5051
5353
  # @return [String]
5052
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
+ #
5053
5375
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/UpdateOdbNetworkInput AWS API Documentation
5054
5376
  #
5055
5377
  class UpdateOdbNetworkInput < Struct.new(
@@ -5059,7 +5381,13 @@ module Aws::Odb
5059
5381
  :peered_cidrs_to_be_removed,
5060
5382
  :s3_access,
5061
5383
  :zero_etl_access,
5062
- :s3_policy_document)
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)
5063
5391
  SENSITIVE = []
5064
5392
  include Aws::Structure
5065
5393
  end
data/lib/aws-sdk-odb.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Odb
55
55
  autoload :EndpointProvider, 'aws-sdk-odb/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-odb/endpoints'
57
57
 
58
- GEM_VERSION = '1.8.0'
58
+ GEM_VERSION = '1.9.0'
59
59
 
60
60
  end
61
61
 
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
- ?s3_policy_document: ::String
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