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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16b0b7a689e43aa9a8e87dc216695a924e335c8db617ff5689d8da28a7abf639
4
- data.tar.gz: 746845fa713185c8bc1f55fb993553d43811685a587c2287f55fd2051851c28a
3
+ metadata.gz: 630172611cc4122a4fe1fbf9cc834beec173bfa9e51aa7149f044797f8795aaf
4
+ data.tar.gz: 579cfff6ebe6557d1ebff7bdd14d28c9874b48ba93b162ff1c5a5bf32dd66ef0
5
5
  SHA512:
6
- metadata.gz: 91d888ccea299468a380d6860e109a80c46890171f738bc55c77d4ec57ddeb2437df73e8f6ee23c25eab642504ad4a2f2d40a6a3d455c7a3fb1840716d891f67
7
- data.tar.gz: 2c2de43c11a6b96dd2f746a27c3b5391c8af7ec9d9ad7283fc1c366ad4c6690bbc066e2b1d4e9b0f6a67abda0a85d9a3459b6c98be769df4a148313477bf15f5
6
+ metadata.gz: 6c65eb7e2e8bc59b0819ede4179ef9ae24cbfd9021f6d05558c532fc342a1732f5eaaa4f7a38d254324ba8598082d972e4611f40ad3c6e88beb795bc70ddc3a8
7
+ data.tar.gz: 0bc3adee2d40b26f9a18591a252b2dba2cd962b5a9ec80bebad64707d92fa3c926841ad513612db850f4a767116e7ed1f3556f37071d4efb349864203f0da193
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API.
8
+
4
9
  1.8.0 (2025-10-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -508,6 +508,41 @@ module Aws::Odb
508
508
  req.send_request(options)
509
509
  end
510
510
 
511
+ # Associates an Amazon Web Services Identity and Access Management (IAM)
512
+ # service role with a specified resource to enable Amazon Web Services
513
+ # service integration.
514
+ #
515
+ # @option params [required, String] :iam_role_arn
516
+ # The Amazon Resource Name (ARN) of the IAM service role to associate
517
+ # with the resource.
518
+ #
519
+ # @option params [required, String] :aws_integration
520
+ # The Amazon Web Services integration configuration settings for the IAM
521
+ # service role association.
522
+ #
523
+ # @option params [required, String] :resource_arn
524
+ # The Amazon Resource Name (ARN) of the target resource to associate
525
+ # with the IAM service role.
526
+ #
527
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
528
+ #
529
+ # @example Request syntax with placeholder values
530
+ #
531
+ # resp = client.associate_iam_role_to_resource({
532
+ # iam_role_arn: "RoleArn", # required
533
+ # aws_integration: "KmsTde", # required, accepts KmsTde
534
+ # resource_arn: "AssociateIamRoleToResourceInputResourceArnString", # required
535
+ # })
536
+ #
537
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AssociateIamRoleToResource AWS API Documentation
538
+ #
539
+ # @overload associate_iam_role_to_resource(params = {})
540
+ # @param [Hash] params ({})
541
+ def associate_iam_role_to_resource(params = {}, options = {})
542
+ req = build_request(:associate_iam_role_to_resource, params)
543
+ req.send_request(options)
544
+ end
545
+
511
546
  # Creates a new Autonomous VM cluster in the specified Exadata
512
547
  # infrastructure.
513
548
  #
@@ -1016,10 +1051,30 @@ module Aws::Odb
1016
1051
  # @option params [String] :zero_etl_access
1017
1052
  # Specifies the configuration for Zero-ETL access from the ODB network.
1018
1053
  #
1054
+ # @option params [String] :sts_access
1055
+ # The Amazon Web Services Security Token Service (STS) access
1056
+ # configuration for the ODB network.
1057
+ #
1058
+ # @option params [String] :kms_access
1059
+ # The Amazon Web Services Key Management Service (KMS) access
1060
+ # configuration for the ODB network.
1061
+ #
1019
1062
  # @option params [String] :s3_policy_document
1020
1063
  # Specifies the endpoint policy for Amazon S3 access from the ODB
1021
1064
  # network.
1022
1065
  #
1066
+ # @option params [String] :sts_policy_document
1067
+ # The STS policy document that defines permissions for token service
1068
+ # usage within the ODB network.
1069
+ #
1070
+ # @option params [String] :kms_policy_document
1071
+ # The KMS policy document that defines permissions for key usage within
1072
+ # the ODB network.
1073
+ #
1074
+ # @option params [Array<String>] :cross_region_s3_restore_sources_to_enable
1075
+ # The cross-Region Amazon S3 restore sources to enable for the ODB
1076
+ # network.
1077
+ #
1023
1078
  # @option params [Hash<String,String>] :tags
1024
1079
  # The list of resource tags to apply to the ODB network.
1025
1080
  #
@@ -1043,7 +1098,12 @@ module Aws::Odb
1043
1098
  # client_token: "CreateOdbNetworkInputClientTokenString",
1044
1099
  # s3_access: "ENABLED", # accepts ENABLED, DISABLED
1045
1100
  # zero_etl_access: "ENABLED", # accepts ENABLED, DISABLED
1101
+ # sts_access: "ENABLED", # accepts ENABLED, DISABLED
1102
+ # kms_access: "ENABLED", # accepts ENABLED, DISABLED
1046
1103
  # s3_policy_document: "PolicyDocument",
1104
+ # sts_policy_document: "PolicyDocument",
1105
+ # kms_policy_document: "PolicyDocument",
1106
+ # cross_region_s3_restore_sources_to_enable: ["String"],
1047
1107
  # tags: {
1048
1108
  # "TagKey" => "TagValue",
1049
1109
  # },
@@ -1257,6 +1317,41 @@ module Aws::Odb
1257
1317
  req.send_request(options)
1258
1318
  end
1259
1319
 
1320
+ # Disassociates an Amazon Web Services Identity and Access Management
1321
+ # (IAM) service role from a specified resource to disable Amazon Web
1322
+ # Services service integration.
1323
+ #
1324
+ # @option params [required, String] :iam_role_arn
1325
+ # The Amazon Resource Name (ARN) of the IAM service role to disassociate
1326
+ # from the resource.
1327
+ #
1328
+ # @option params [required, String] :aws_integration
1329
+ # The Amazon Web Services integration configuration settings for the IAM
1330
+ # service role disassociation.
1331
+ #
1332
+ # @option params [required, String] :resource_arn
1333
+ # The Amazon Resource Name (ARN) of the target resource to disassociate
1334
+ # from the IAM service role.
1335
+ #
1336
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1337
+ #
1338
+ # @example Request syntax with placeholder values
1339
+ #
1340
+ # resp = client.disassociate_iam_role_from_resource({
1341
+ # iam_role_arn: "RoleArn", # required
1342
+ # aws_integration: "KmsTde", # required, accepts KmsTde
1343
+ # resource_arn: "DisassociateIamRoleFromResourceInputResourceArnString", # required
1344
+ # })
1345
+ #
1346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DisassociateIamRoleFromResource AWS API Documentation
1347
+ #
1348
+ # @overload disassociate_iam_role_from_resource(params = {})
1349
+ # @param [Hash] params ({})
1350
+ def disassociate_iam_role_from_resource(params = {}, options = {})
1351
+ req = build_request(:disassociate_iam_role_from_resource, params)
1352
+ req.send_request(options)
1353
+ end
1354
+
1260
1355
  # Gets information about a specific Autonomous VM cluster.
1261
1356
  #
1262
1357
  # @option params [required, String] :cloud_autonomous_vm_cluster_id
@@ -1538,6 +1633,11 @@ module Aws::Odb
1538
1633
  # resp.cloud_vm_cluster.odb_network_id #=> String
1539
1634
  # resp.cloud_vm_cluster.percent_progress #=> Float
1540
1635
  # resp.cloud_vm_cluster.compute_model #=> String, one of "ECPU", "OCPU"
1636
+ # resp.cloud_vm_cluster.iam_roles #=> Array
1637
+ # resp.cloud_vm_cluster.iam_roles[0].iam_role_arn #=> String
1638
+ # resp.cloud_vm_cluster.iam_roles[0].status #=> String, one of "ASSOCIATING", "DISASSOCIATING", "FAILED", "CONNECTED", "DISCONNECTED", "PARTIALLY_CONNECTED", "UNKNOWN"
1639
+ # resp.cloud_vm_cluster.iam_roles[0].status_reason #=> String
1640
+ # resp.cloud_vm_cluster.iam_roles[0].aws_integration #=> String, one of "KmsTde"
1541
1641
  #
1542
1642
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetCloudVmCluster AWS API Documentation
1543
1643
  #
@@ -1674,12 +1774,19 @@ module Aws::Odb
1674
1774
  # * {Types::GetOciOnboardingStatusOutput#status #status} => String
1675
1775
  # * {Types::GetOciOnboardingStatusOutput#existing_tenancy_activation_link #existing_tenancy_activation_link} => String
1676
1776
  # * {Types::GetOciOnboardingStatusOutput#new_tenancy_activation_link #new_tenancy_activation_link} => String
1777
+ # * {Types::GetOciOnboardingStatusOutput#oci_identity_domain #oci_identity_domain} => Types::OciIdentityDomain
1677
1778
  #
1678
1779
  # @example Response structure
1679
1780
  #
1680
1781
  # resp.status #=> String, one of "NOT_STARTED", "PENDING_LINK_GENERATION", "PENDING_CUSTOMER_ACTION", "PENDING_INITIALIZATION", "ACTIVATING", "ACTIVE_IN_HOME_REGION", "ACTIVE", "ACTIVE_LIMITED", "FAILED", "PUBLIC_OFFER_UNSUPPORTED", "SUSPENDED", "CANCELED"
1681
1782
  # resp.existing_tenancy_activation_link #=> String
1682
1783
  # resp.new_tenancy_activation_link #=> String
1784
+ # resp.oci_identity_domain.oci_identity_domain_id #=> String
1785
+ # resp.oci_identity_domain.oci_identity_domain_resource_url #=> String
1786
+ # resp.oci_identity_domain.oci_identity_domain_url #=> String
1787
+ # resp.oci_identity_domain.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
1788
+ # resp.oci_identity_domain.status_reason #=> String
1789
+ # resp.oci_identity_domain.account_setup_cloud_formation_url #=> String
1683
1790
  #
1684
1791
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOciOnboardingStatus AWS API Documentation
1685
1792
  #
@@ -1746,6 +1853,21 @@ module Aws::Odb
1746
1853
  # resp.odb_network.managed_services.s3_access.ipv4_addresses[0] #=> String
1747
1854
  # resp.odb_network.managed_services.s3_access.domain_name #=> String
1748
1855
  # resp.odb_network.managed_services.s3_access.s3_policy_document #=> String
1856
+ # resp.odb_network.managed_services.sts_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
1857
+ # resp.odb_network.managed_services.sts_access.ipv4_addresses #=> Array
1858
+ # resp.odb_network.managed_services.sts_access.ipv4_addresses[0] #=> String
1859
+ # resp.odb_network.managed_services.sts_access.domain_name #=> String
1860
+ # resp.odb_network.managed_services.sts_access.sts_policy_document #=> String
1861
+ # resp.odb_network.managed_services.kms_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
1862
+ # resp.odb_network.managed_services.kms_access.ipv4_addresses #=> Array
1863
+ # resp.odb_network.managed_services.kms_access.ipv4_addresses[0] #=> String
1864
+ # resp.odb_network.managed_services.kms_access.domain_name #=> String
1865
+ # resp.odb_network.managed_services.kms_access.kms_policy_document #=> String
1866
+ # resp.odb_network.managed_services.cross_region_s3_restore_sources_access #=> Array
1867
+ # resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].region #=> String
1868
+ # resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses #=> Array
1869
+ # resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses[0] #=> String
1870
+ # resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
1749
1871
  #
1750
1872
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOdbNetwork AWS API Documentation
1751
1873
  #
@@ -1798,8 +1920,18 @@ module Aws::Odb
1798
1920
 
1799
1921
  # Initializes the ODB service for the first time in an account.
1800
1922
  #
1923
+ # @option params [Boolean] :oci_identity_domain
1924
+ # The Oracle Cloud Infrastructure (OCI) identity domain configuration
1925
+ # for service initialization.
1926
+ #
1801
1927
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1802
1928
  #
1929
+ # @example Request syntax with placeholder values
1930
+ #
1931
+ # resp = client.initialize_service({
1932
+ # oci_identity_domain: false,
1933
+ # })
1934
+ #
1803
1935
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeService AWS API Documentation
1804
1936
  #
1805
1937
  # @overload initialize_service(params = {})
@@ -2151,6 +2283,11 @@ module Aws::Odb
2151
2283
  # resp.cloud_vm_clusters[0].odb_network_id #=> String
2152
2284
  # resp.cloud_vm_clusters[0].percent_progress #=> Float
2153
2285
  # resp.cloud_vm_clusters[0].compute_model #=> String, one of "ECPU", "OCPU"
2286
+ # resp.cloud_vm_clusters[0].iam_roles #=> Array
2287
+ # resp.cloud_vm_clusters[0].iam_roles[0].iam_role_arn #=> String
2288
+ # resp.cloud_vm_clusters[0].iam_roles[0].status #=> String, one of "ASSOCIATING", "DISASSOCIATING", "FAILED", "CONNECTED", "DISCONNECTED", "PARTIALLY_CONNECTED", "UNKNOWN"
2289
+ # resp.cloud_vm_clusters[0].iam_roles[0].status_reason #=> String
2290
+ # resp.cloud_vm_clusters[0].iam_roles[0].aws_integration #=> String, one of "KmsTde"
2154
2291
  #
2155
2292
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListCloudVmClusters AWS API Documentation
2156
2293
  #
@@ -2499,6 +2636,21 @@ module Aws::Odb
2499
2636
  # resp.odb_networks[0].managed_services.s3_access.ipv4_addresses[0] #=> String
2500
2637
  # resp.odb_networks[0].managed_services.s3_access.domain_name #=> String
2501
2638
  # resp.odb_networks[0].managed_services.s3_access.s3_policy_document #=> String
2639
+ # resp.odb_networks[0].managed_services.sts_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
2640
+ # resp.odb_networks[0].managed_services.sts_access.ipv4_addresses #=> Array
2641
+ # resp.odb_networks[0].managed_services.sts_access.ipv4_addresses[0] #=> String
2642
+ # resp.odb_networks[0].managed_services.sts_access.domain_name #=> String
2643
+ # resp.odb_networks[0].managed_services.sts_access.sts_policy_document #=> String
2644
+ # resp.odb_networks[0].managed_services.kms_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
2645
+ # resp.odb_networks[0].managed_services.kms_access.ipv4_addresses #=> Array
2646
+ # resp.odb_networks[0].managed_services.kms_access.ipv4_addresses[0] #=> String
2647
+ # resp.odb_networks[0].managed_services.kms_access.domain_name #=> String
2648
+ # resp.odb_networks[0].managed_services.kms_access.kms_policy_document #=> String
2649
+ # resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access #=> Array
2650
+ # resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].region #=> String
2651
+ # resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses #=> Array
2652
+ # resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses[0] #=> String
2653
+ # resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
2502
2654
  #
2503
2655
  # @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListOdbNetworks AWS API Documentation
2504
2656
  #
@@ -2903,10 +3055,34 @@ module Aws::Odb
2903
3055
  # Specifies the updated configuration for Zero-ETL access from the ODB
2904
3056
  # network.
2905
3057
  #
3058
+ # @option params [String] :sts_access
3059
+ # The Amazon Web Services Security Token Service (STS) access
3060
+ # configuration for the ODB network.
3061
+ #
3062
+ # @option params [String] :kms_access
3063
+ # The Amazon Web Services Key Management Service (KMS) access
3064
+ # configuration for the ODB network.
3065
+ #
2906
3066
  # @option params [String] :s3_policy_document
2907
3067
  # Specifies the updated endpoint policy for Amazon S3 access from the
2908
3068
  # ODB network.
2909
3069
  #
3070
+ # @option params [String] :sts_policy_document
3071
+ # The STS policy document that defines permissions for token service
3072
+ # usage within the ODB network.
3073
+ #
3074
+ # @option params [String] :kms_policy_document
3075
+ # The KMS policy document that defines permissions for key usage within
3076
+ # the ODB network.
3077
+ #
3078
+ # @option params [Array<String>] :cross_region_s3_restore_sources_to_enable
3079
+ # The cross-Region Amazon S3 restore sources to enable for the ODB
3080
+ # network.
3081
+ #
3082
+ # @option params [Array<String>] :cross_region_s3_restore_sources_to_disable
3083
+ # The cross-Region Amazon S3 restore sources to disable for the ODB
3084
+ # network.
3085
+ #
2910
3086
  # @return [Types::UpdateOdbNetworkOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2911
3087
  #
2912
3088
  # * {Types::UpdateOdbNetworkOutput#display_name #display_name} => String
@@ -2923,7 +3099,13 @@ module Aws::Odb
2923
3099
  # peered_cidrs_to_be_removed: ["String"],
2924
3100
  # s3_access: "ENABLED", # accepts ENABLED, DISABLED
2925
3101
  # zero_etl_access: "ENABLED", # accepts ENABLED, DISABLED
3102
+ # sts_access: "ENABLED", # accepts ENABLED, DISABLED
3103
+ # kms_access: "ENABLED", # accepts ENABLED, DISABLED
2926
3104
  # s3_policy_document: "PolicyDocument",
3105
+ # sts_policy_document: "PolicyDocument",
3106
+ # kms_policy_document: "PolicyDocument",
3107
+ # cross_region_s3_restore_sources_to_enable: ["String"],
3108
+ # cross_region_s3_restore_sources_to_disable: ["String"],
2927
3109
  # })
2928
3110
  #
2929
3111
  # @example Response structure
@@ -3013,7 +3195,7 @@ module Aws::Odb
3013
3195
  tracer: tracer
3014
3196
  )
3015
3197
  context[:gem_name] = 'aws-sdk-odb'
3016
- context[:gem_version] = '1.8.0'
3198
+ context[:gem_version] = '1.9.0'
3017
3199
  Seahorse::Client::Request.new(handlers, context)
3018
3200
  end
3019
3201
 
@@ -18,6 +18,9 @@ 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
+ AssociateIamRoleToResourceInput = Shapes::StructureShape.new(name: 'AssociateIamRoleToResourceInput')
22
+ AssociateIamRoleToResourceInputResourceArnString = Shapes::StringShape.new(name: 'AssociateIamRoleToResourceInputResourceArnString')
23
+ AssociateIamRoleToResourceOutput = Shapes::StructureShape.new(name: 'AssociateIamRoleToResourceOutput')
21
24
  AutonomousVirtualMachineList = Shapes::ListShape.new(name: 'AutonomousVirtualMachineList')
22
25
  AutonomousVirtualMachineSummary = Shapes::StructureShape.new(name: 'AutonomousVirtualMachineSummary')
23
26
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
@@ -76,6 +79,8 @@ module Aws::Odb
76
79
  CreateOdbPeeringConnectionInput = Shapes::StructureShape.new(name: 'CreateOdbPeeringConnectionInput')
77
80
  CreateOdbPeeringConnectionInputClientTokenString = Shapes::StringShape.new(name: 'CreateOdbPeeringConnectionInputClientTokenString')
78
81
  CreateOdbPeeringConnectionOutput = Shapes::StructureShape.new(name: 'CreateOdbPeeringConnectionOutput')
82
+ CrossRegionS3RestoreSourcesAccess = Shapes::StructureShape.new(name: 'CrossRegionS3RestoreSourcesAccess')
83
+ CrossRegionS3RestoreSourcesAccessList = Shapes::ListShape.new(name: 'CrossRegionS3RestoreSourcesAccessList')
79
84
  CustomerContact = Shapes::StructureShape.new(name: 'CustomerContact')
80
85
  CustomerContactEmailString = Shapes::StringShape.new(name: 'CustomerContactEmailString')
81
86
  CustomerContacts = Shapes::ListShape.new(name: 'CustomerContacts')
@@ -107,6 +112,9 @@ module Aws::Odb
107
112
  DeleteOdbNetworkOutput = Shapes::StructureShape.new(name: 'DeleteOdbNetworkOutput')
108
113
  DeleteOdbPeeringConnectionInput = Shapes::StructureShape.new(name: 'DeleteOdbPeeringConnectionInput')
109
114
  DeleteOdbPeeringConnectionOutput = Shapes::StructureShape.new(name: 'DeleteOdbPeeringConnectionOutput')
115
+ DisassociateIamRoleFromResourceInput = Shapes::StructureShape.new(name: 'DisassociateIamRoleFromResourceInput')
116
+ DisassociateIamRoleFromResourceInputResourceArnString = Shapes::StringShape.new(name: 'DisassociateIamRoleFromResourceInputResourceArnString')
117
+ DisassociateIamRoleFromResourceOutput = Shapes::StructureShape.new(name: 'DisassociateIamRoleFromResourceOutput')
110
118
  DiskRedundancy = Shapes::StringShape.new(name: 'DiskRedundancy')
111
119
  Double = Shapes::FloatShape.new(name: 'Double')
112
120
  ExadataIormConfig = Shapes::StructureShape.new(name: 'ExadataIormConfig')
@@ -132,11 +140,15 @@ module Aws::Odb
132
140
  GiVersionList = Shapes::ListShape.new(name: 'GiVersionList')
133
141
  GiVersionSummary = Shapes::StructureShape.new(name: 'GiVersionSummary')
134
142
  HoursOfDay = Shapes::ListShape.new(name: 'HoursOfDay')
143
+ IamRole = Shapes::StructureShape.new(name: 'IamRole')
144
+ IamRoleList = Shapes::ListShape.new(name: 'IamRoleList')
145
+ IamRoleStatus = Shapes::StringShape.new(name: 'IamRoleStatus')
135
146
  InitializeServiceInput = Shapes::StructureShape.new(name: 'InitializeServiceInput')
136
147
  InitializeServiceOutput = Shapes::StructureShape.new(name: 'InitializeServiceOutput')
137
148
  Integer = Shapes::IntegerShape.new(name: 'Integer')
138
149
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
139
150
  IormLifecycleState = Shapes::StringShape.new(name: 'IormLifecycleState')
151
+ KmsAccess = Shapes::StructureShape.new(name: 'KmsAccess')
140
152
  LicenseModel = Shapes::StringShape.new(name: 'LicenseModel')
141
153
  ListAutonomousVirtualMachinesInput = Shapes::StructureShape.new(name: 'ListAutonomousVirtualMachinesInput')
142
154
  ListAutonomousVirtualMachinesInputMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAutonomousVirtualMachinesInputMaxResultsInteger')
@@ -202,6 +214,7 @@ module Aws::Odb
202
214
  OciDnsForwardingConfig = Shapes::StructureShape.new(name: 'OciDnsForwardingConfig')
203
215
  OciDnsForwardingConfigDomainNameString = Shapes::StringShape.new(name: 'OciDnsForwardingConfigDomainNameString')
204
216
  OciDnsForwardingConfigList = Shapes::ListShape.new(name: 'OciDnsForwardingConfigList')
217
+ OciIdentityDomain = Shapes::StructureShape.new(name: 'OciIdentityDomain')
205
218
  OciOnboardingStatus = Shapes::StringShape.new(name: 'OciOnboardingStatus')
206
219
  OdbNetwork = Shapes::StructureShape.new(name: 'OdbNetwork')
207
220
  OdbNetworkAvailabilityZoneIdString = Shapes::StringShape.new(name: 'OdbNetworkAvailabilityZoneIdString')
@@ -240,6 +253,7 @@ module Aws::Odb
240
253
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
241
254
  ResourceStatus = Shapes::StringShape.new(name: 'ResourceStatus')
242
255
  ResponseTagMap = Shapes::MapShape.new(name: 'ResponseTagMap')
256
+ RoleArn = Shapes::StringShape.new(name: 'RoleArn')
243
257
  S3Access = Shapes::StructureShape.new(name: 'S3Access')
244
258
  SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
245
259
  SensitiveStringList = Shapes::ListShape.new(name: 'SensitiveStringList')
@@ -252,6 +266,8 @@ module Aws::Odb
252
266
  StopDbNodeOutput = Shapes::StructureShape.new(name: 'StopDbNodeOutput')
253
267
  String = Shapes::StringShape.new(name: 'String')
254
268
  StringList = Shapes::ListShape.new(name: 'StringList')
269
+ StsAccess = Shapes::StructureShape.new(name: 'StsAccess')
270
+ SupportedAwsIntegration = Shapes::StringShape.new(name: 'SupportedAwsIntegration')
255
271
  SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
256
272
  SystemVersionList = Shapes::ListShape.new(name: 'SystemVersionList')
257
273
  SystemVersionSummary = Shapes::StructureShape.new(name: 'SystemVersionSummary')
@@ -285,6 +301,13 @@ module Aws::Odb
285
301
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
286
302
  AccessDeniedException.struct_class = Types::AccessDeniedException
287
303
 
304
+ AssociateIamRoleToResourceInput.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "iamRoleArn"))
305
+ AssociateIamRoleToResourceInput.add_member(:aws_integration, Shapes::ShapeRef.new(shape: SupportedAwsIntegration, required: true, location_name: "awsIntegration"))
306
+ AssociateIamRoleToResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AssociateIamRoleToResourceInputResourceArnString, required: true, location_name: "resourceArn"))
307
+ AssociateIamRoleToResourceInput.struct_class = Types::AssociateIamRoleToResourceInput
308
+
309
+ AssociateIamRoleToResourceOutput.struct_class = Types::AssociateIamRoleToResourceOutput
310
+
288
311
  AutonomousVirtualMachineList.member = Shapes::ShapeRef.new(shape: AutonomousVirtualMachineSummary)
289
312
 
290
313
  AutonomousVirtualMachineSummary.add_member(:autonomous_virtual_machine_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "autonomousVirtualMachineId"))
@@ -543,6 +566,7 @@ module Aws::Odb
543
566
  CloudVmCluster.add_member(:odb_network_id, Shapes::ShapeRef.new(shape: ResourceIdOrArn, location_name: "odbNetworkId"))
544
567
  CloudVmCluster.add_member(:percent_progress, Shapes::ShapeRef.new(shape: Float, location_name: "percentProgress"))
545
568
  CloudVmCluster.add_member(:compute_model, Shapes::ShapeRef.new(shape: ComputeModel, location_name: "computeModel"))
569
+ CloudVmCluster.add_member(:iam_roles, Shapes::ShapeRef.new(shape: IamRoleList, location_name: "iamRoles"))
546
570
  CloudVmCluster.struct_class = Types::CloudVmCluster
547
571
 
548
572
  CloudVmClusterList.member = Shapes::ShapeRef.new(shape: CloudVmClusterSummary)
@@ -587,6 +611,7 @@ module Aws::Odb
587
611
  CloudVmClusterSummary.add_member(:odb_network_id, Shapes::ShapeRef.new(shape: ResourceIdOrArn, location_name: "odbNetworkId"))
588
612
  CloudVmClusterSummary.add_member(:percent_progress, Shapes::ShapeRef.new(shape: Float, location_name: "percentProgress"))
589
613
  CloudVmClusterSummary.add_member(:compute_model, Shapes::ShapeRef.new(shape: ComputeModel, location_name: "computeModel"))
614
+ CloudVmClusterSummary.add_member(:iam_roles, Shapes::ShapeRef.new(shape: IamRoleList, location_name: "iamRoles"))
590
615
  CloudVmClusterSummary.struct_class = Types::CloudVmClusterSummary
591
616
 
592
617
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -678,7 +703,12 @@ module Aws::Odb
678
703
  CreateOdbNetworkInput.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateOdbNetworkInputClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
679
704
  CreateOdbNetworkInput.add_member(:s3_access, Shapes::ShapeRef.new(shape: Access, location_name: "s3Access"))
680
705
  CreateOdbNetworkInput.add_member(:zero_etl_access, Shapes::ShapeRef.new(shape: Access, location_name: "zeroEtlAccess"))
706
+ CreateOdbNetworkInput.add_member(:sts_access, Shapes::ShapeRef.new(shape: Access, location_name: "stsAccess"))
707
+ CreateOdbNetworkInput.add_member(:kms_access, Shapes::ShapeRef.new(shape: Access, location_name: "kmsAccess"))
681
708
  CreateOdbNetworkInput.add_member(:s3_policy_document, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "s3PolicyDocument"))
709
+ CreateOdbNetworkInput.add_member(:sts_policy_document, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "stsPolicyDocument"))
710
+ CreateOdbNetworkInput.add_member(:kms_policy_document, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "kmsPolicyDocument"))
711
+ CreateOdbNetworkInput.add_member(:cross_region_s3_restore_sources_to_enable, Shapes::ShapeRef.new(shape: StringList, location_name: "crossRegionS3RestoreSourcesToEnable"))
682
712
  CreateOdbNetworkInput.add_member(:tags, Shapes::ShapeRef.new(shape: RequestTagMap, location_name: "tags"))
683
713
  CreateOdbNetworkInput.struct_class = Types::CreateOdbNetworkInput
684
714
 
@@ -702,6 +732,13 @@ module Aws::Odb
702
732
  CreateOdbPeeringConnectionOutput.add_member(:odb_peering_connection_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "odbPeeringConnectionId"))
703
733
  CreateOdbPeeringConnectionOutput.struct_class = Types::CreateOdbPeeringConnectionOutput
704
734
 
735
+ CrossRegionS3RestoreSourcesAccess.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "region"))
736
+ CrossRegionS3RestoreSourcesAccess.add_member(:ipv4_addresses, Shapes::ShapeRef.new(shape: StringList, location_name: "ipv4Addresses"))
737
+ CrossRegionS3RestoreSourcesAccess.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, location_name: "status"))
738
+ CrossRegionS3RestoreSourcesAccess.struct_class = Types::CrossRegionS3RestoreSourcesAccess
739
+
740
+ CrossRegionS3RestoreSourcesAccessList.member = Shapes::ShapeRef.new(shape: CrossRegionS3RestoreSourcesAccess)
741
+
705
742
  CustomerContact.add_member(:email, Shapes::ShapeRef.new(shape: CustomerContactEmailString, location_name: "email"))
706
743
  CustomerContact.struct_class = Types::CustomerContact
707
744
 
@@ -890,6 +927,13 @@ module Aws::Odb
890
927
 
891
928
  DeleteOdbPeeringConnectionOutput.struct_class = Types::DeleteOdbPeeringConnectionOutput
892
929
 
930
+ DisassociateIamRoleFromResourceInput.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "iamRoleArn"))
931
+ DisassociateIamRoleFromResourceInput.add_member(:aws_integration, Shapes::ShapeRef.new(shape: SupportedAwsIntegration, required: true, location_name: "awsIntegration"))
932
+ DisassociateIamRoleFromResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: DisassociateIamRoleFromResourceInputResourceArnString, required: true, location_name: "resourceArn"))
933
+ DisassociateIamRoleFromResourceInput.struct_class = Types::DisassociateIamRoleFromResourceInput
934
+
935
+ DisassociateIamRoleFromResourceOutput.struct_class = Types::DisassociateIamRoleFromResourceOutput
936
+
893
937
  ExadataIormConfig.add_member(:db_plans, Shapes::ShapeRef.new(shape: DbIormConfigList, location_name: "dbPlans"))
894
938
  ExadataIormConfig.add_member(:lifecycle_details, Shapes::ShapeRef.new(shape: String, location_name: "lifecycleDetails"))
895
939
  ExadataIormConfig.add_member(:lifecycle_state, Shapes::ShapeRef.new(shape: IormLifecycleState, location_name: "lifecycleState"))
@@ -940,6 +984,7 @@ module Aws::Odb
940
984
  GetOciOnboardingStatusOutput.add_member(:status, Shapes::ShapeRef.new(shape: OciOnboardingStatus, location_name: "status"))
941
985
  GetOciOnboardingStatusOutput.add_member(:existing_tenancy_activation_link, Shapes::ShapeRef.new(shape: String, location_name: "existingTenancyActivationLink"))
942
986
  GetOciOnboardingStatusOutput.add_member(:new_tenancy_activation_link, Shapes::ShapeRef.new(shape: String, location_name: "newTenancyActivationLink"))
987
+ GetOciOnboardingStatusOutput.add_member(:oci_identity_domain, Shapes::ShapeRef.new(shape: OciIdentityDomain, location_name: "ociIdentityDomain"))
943
988
  GetOciOnboardingStatusOutput.struct_class = Types::GetOciOnboardingStatusOutput
944
989
 
945
990
  GetOdbNetworkInput.add_member(:odb_network_id, Shapes::ShapeRef.new(shape: ResourceIdOrArn, required: true, location_name: "odbNetworkId"))
@@ -961,6 +1006,15 @@ module Aws::Odb
961
1006
 
962
1007
  HoursOfDay.member = Shapes::ShapeRef.new(shape: Integer)
963
1008
 
1009
+ IamRole.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "iamRoleArn"))
1010
+ IamRole.add_member(:status, Shapes::ShapeRef.new(shape: IamRoleStatus, location_name: "status"))
1011
+ IamRole.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
1012
+ IamRole.add_member(:aws_integration, Shapes::ShapeRef.new(shape: SupportedAwsIntegration, location_name: "awsIntegration"))
1013
+ IamRole.struct_class = Types::IamRole
1014
+
1015
+ IamRoleList.member = Shapes::ShapeRef.new(shape: IamRole)
1016
+
1017
+ InitializeServiceInput.add_member(:oci_identity_domain, Shapes::ShapeRef.new(shape: Boolean, location_name: "ociIdentityDomain"))
964
1018
  InitializeServiceInput.struct_class = Types::InitializeServiceInput
965
1019
 
966
1020
  InitializeServiceOutput.struct_class = Types::InitializeServiceOutput
@@ -969,6 +1023,12 @@ module Aws::Odb
969
1023
  InternalServerException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "retryAfterSeconds"))
970
1024
  InternalServerException.struct_class = Types::InternalServerException
971
1025
 
1026
+ KmsAccess.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, location_name: "status"))
1027
+ KmsAccess.add_member(:ipv4_addresses, Shapes::ShapeRef.new(shape: StringList, location_name: "ipv4Addresses"))
1028
+ KmsAccess.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, location_name: "domainName"))
1029
+ KmsAccess.add_member(:kms_policy_document, Shapes::ShapeRef.new(shape: String, location_name: "kmsPolicyDocument"))
1030
+ KmsAccess.struct_class = Types::KmsAccess
1031
+
972
1032
  ListAutonomousVirtualMachinesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAutonomousVirtualMachinesInputMaxResultsInteger, location_name: "maxResults"))
973
1033
  ListAutonomousVirtualMachinesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ListAutonomousVirtualMachinesInputNextTokenString, location_name: "nextToken"))
974
1034
  ListAutonomousVirtualMachinesInput.add_member(:cloud_autonomous_vm_cluster_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "cloudAutonomousVmClusterId"))
@@ -1097,6 +1157,9 @@ module Aws::Odb
1097
1157
  ManagedServices.add_member(:managed_s3_backup_access, Shapes::ShapeRef.new(shape: ManagedS3BackupAccess, location_name: "managedS3BackupAccess"))
1098
1158
  ManagedServices.add_member(:zero_etl_access, Shapes::ShapeRef.new(shape: ZeroEtlAccess, location_name: "zeroEtlAccess"))
1099
1159
  ManagedServices.add_member(:s3_access, Shapes::ShapeRef.new(shape: S3Access, location_name: "s3Access"))
1160
+ ManagedServices.add_member(:sts_access, Shapes::ShapeRef.new(shape: StsAccess, location_name: "stsAccess"))
1161
+ ManagedServices.add_member(:kms_access, Shapes::ShapeRef.new(shape: KmsAccess, location_name: "kmsAccess"))
1162
+ ManagedServices.add_member(:cross_region_s3_restore_sources_access, Shapes::ShapeRef.new(shape: CrossRegionS3RestoreSourcesAccessList, location_name: "crossRegionS3RestoreSourcesAccess"))
1100
1163
  ManagedServices.struct_class = Types::ManagedServices
1101
1164
 
1102
1165
  Month.add_member(:name, Shapes::ShapeRef.new(shape: MonthName, location_name: "name"))
@@ -1110,6 +1173,14 @@ module Aws::Odb
1110
1173
 
1111
1174
  OciDnsForwardingConfigList.member = Shapes::ShapeRef.new(shape: OciDnsForwardingConfig)
1112
1175
 
1176
+ OciIdentityDomain.add_member(:oci_identity_domain_id, Shapes::ShapeRef.new(shape: String, location_name: "ociIdentityDomainId"))
1177
+ OciIdentityDomain.add_member(:oci_identity_domain_resource_url, Shapes::ShapeRef.new(shape: String, location_name: "ociIdentityDomainResourceUrl"))
1178
+ OciIdentityDomain.add_member(:oci_identity_domain_url, Shapes::ShapeRef.new(shape: String, location_name: "ociIdentityDomainUrl"))
1179
+ OciIdentityDomain.add_member(:status, Shapes::ShapeRef.new(shape: ResourceStatus, location_name: "status"))
1180
+ OciIdentityDomain.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
1181
+ OciIdentityDomain.add_member(:account_setup_cloud_formation_url, Shapes::ShapeRef.new(shape: String, location_name: "accountSetupCloudFormationUrl"))
1182
+ OciIdentityDomain.struct_class = Types::OciIdentityDomain
1183
+
1113
1184
  OdbNetwork.add_member(:odb_network_id, Shapes::ShapeRef.new(shape: ResourceIdOrArn, required: true, location_name: "odbNetworkId"))
1114
1185
  OdbNetwork.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
1115
1186
  OdbNetwork.add_member(:status, Shapes::ShapeRef.new(shape: ResourceStatus, location_name: "status"))
@@ -1246,6 +1317,12 @@ module Aws::Odb
1246
1317
 
1247
1318
  StringList.member = Shapes::ShapeRef.new(shape: String)
1248
1319
 
1320
+ StsAccess.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, location_name: "status"))
1321
+ StsAccess.add_member(:ipv4_addresses, Shapes::ShapeRef.new(shape: StringList, location_name: "ipv4Addresses"))
1322
+ StsAccess.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, location_name: "domainName"))
1323
+ StsAccess.add_member(:sts_policy_document, Shapes::ShapeRef.new(shape: String, location_name: "stsPolicyDocument"))
1324
+ StsAccess.struct_class = Types::StsAccess
1325
+
1249
1326
  SystemVersionList.member = Shapes::ShapeRef.new(shape: SystemVersionSummary)
1250
1327
 
1251
1328
  SystemVersionSummary.add_member(:gi_version, Shapes::ShapeRef.new(shape: String, location_name: "giVersion"))
@@ -1287,7 +1364,13 @@ module Aws::Odb
1287
1364
  UpdateOdbNetworkInput.add_member(:peered_cidrs_to_be_removed, Shapes::ShapeRef.new(shape: StringList, location_name: "peeredCidrsToBeRemoved"))
1288
1365
  UpdateOdbNetworkInput.add_member(:s3_access, Shapes::ShapeRef.new(shape: Access, location_name: "s3Access"))
1289
1366
  UpdateOdbNetworkInput.add_member(:zero_etl_access, Shapes::ShapeRef.new(shape: Access, location_name: "zeroEtlAccess"))
1367
+ UpdateOdbNetworkInput.add_member(:sts_access, Shapes::ShapeRef.new(shape: Access, location_name: "stsAccess"))
1368
+ UpdateOdbNetworkInput.add_member(:kms_access, Shapes::ShapeRef.new(shape: Access, location_name: "kmsAccess"))
1290
1369
  UpdateOdbNetworkInput.add_member(:s3_policy_document, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "s3PolicyDocument"))
1370
+ UpdateOdbNetworkInput.add_member(:sts_policy_document, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "stsPolicyDocument"))
1371
+ UpdateOdbNetworkInput.add_member(:kms_policy_document, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "kmsPolicyDocument"))
1372
+ UpdateOdbNetworkInput.add_member(:cross_region_s3_restore_sources_to_enable, Shapes::ShapeRef.new(shape: StringList, location_name: "crossRegionS3RestoreSourcesToEnable"))
1373
+ UpdateOdbNetworkInput.add_member(:cross_region_s3_restore_sources_to_disable, Shapes::ShapeRef.new(shape: StringList, location_name: "crossRegionS3RestoreSourcesToDisable"))
1291
1374
  UpdateOdbNetworkInput.struct_class = Types::UpdateOdbNetworkInput
1292
1375
 
1293
1376
  UpdateOdbNetworkOutput.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
@@ -1359,6 +1442,20 @@ module Aws::Odb
1359
1442
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1360
1443
  end)
1361
1444
 
1445
+ api.add_operation(:associate_iam_role_to_resource, Seahorse::Model::Operation.new.tap do |o|
1446
+ o.name = "AssociateIamRoleToResource"
1447
+ o.http_method = "POST"
1448
+ o.http_request_uri = "/"
1449
+ o.input = Shapes::ShapeRef.new(shape: AssociateIamRoleToResourceInput)
1450
+ o.output = Shapes::ShapeRef.new(shape: AssociateIamRoleToResourceOutput)
1451
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1452
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1453
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1454
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1455
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1456
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1457
+ end)
1458
+
1362
1459
  api.add_operation(:create_cloud_autonomous_vm_cluster, Seahorse::Model::Operation.new.tap do |o|
1363
1460
  o.name = "CreateCloudAutonomousVmCluster"
1364
1461
  o.http_method = "POST"
@@ -1497,6 +1594,20 @@ module Aws::Odb
1497
1594
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1498
1595
  end)
1499
1596
 
1597
+ api.add_operation(:disassociate_iam_role_from_resource, Seahorse::Model::Operation.new.tap do |o|
1598
+ o.name = "DisassociateIamRoleFromResource"
1599
+ o.http_method = "POST"
1600
+ o.http_request_uri = "/"
1601
+ o.input = Shapes::ShapeRef.new(shape: DisassociateIamRoleFromResourceInput)
1602
+ o.output = Shapes::ShapeRef.new(shape: DisassociateIamRoleFromResourceOutput)
1603
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1604
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1605
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1606
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1607
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1608
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1609
+ end)
1610
+
1500
1611
  api.add_operation(:get_cloud_autonomous_vm_cluster, Seahorse::Model::Operation.new.tap do |o|
1501
1612
  o.name = "GetCloudAutonomousVmCluster"
1502
1613
  o.http_method = "POST"