aws-sdk-odb 1.8.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-odb/client.rb +198 -1
- data/lib/aws-sdk-odb/client_api.rb +119 -0
- data/lib/aws-sdk-odb/types.rb +404 -7
- data/lib/aws-sdk-odb.rb +1 -1
- data/sig/client.rbs +36 -1
- data/sig/types.rbs +89 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 402fd652410116749e1af52ecfba0957f2c7322f9792462d34888726a50e045a
|
|
4
|
+
data.tar.gz: 8ec351dffc9209d63965eb1a58fc3fdb20635c7be9e07a78654fd344384949b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9044d2b81b2e5a8494c438c65d0bce3092c29005b5f16e21a91eb1d8f999d6721c93f039927a93c3a9ad70ee2336170b01a470b75957ed79d06cdd1b581a9166
|
|
7
|
+
data.tar.gz: f7eb5d1227c5cd99fc335319e9379b17086c8c04e227a9c571d2e1f7235da779383242b9f13e9d9ed8ef8dc8b38a91effad1d25219db4f575e36b9a1dc36ae06
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.10.0 (2025-12-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - The following APIs now return CloudExadataInfrastructureArn and OdbNetworkArn fields for improved resource identification and AWS service integration - GetCloudVmCluster, ListCloudVmClusters, GetCloudAutonomousVmCluster, and ListCloudAutonomousVmClusters.
|
|
8
|
+
|
|
9
|
+
1.9.0 (2025-11-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.8.0 (2025-10-23)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.10.0
|
data/lib/aws-sdk-odb/client.rb
CHANGED
|
@@ -508,6 +508,43 @@ 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 Amazon Web Services Identity and
|
|
517
|
+
# Access Management (IAM) service role to associate with the resource.
|
|
518
|
+
#
|
|
519
|
+
# @option params [required, String] :aws_integration
|
|
520
|
+
# The Amazon Web Services integration configuration settings for the
|
|
521
|
+
# Amazon Web Services Identity and Access Management (IAM) service role
|
|
522
|
+
# association.
|
|
523
|
+
#
|
|
524
|
+
# @option params [required, String] :resource_arn
|
|
525
|
+
# The Amazon Resource Name (ARN) of the target resource to associate
|
|
526
|
+
# with the Amazon Web Services Identity and Access Management (IAM)
|
|
527
|
+
# service role.
|
|
528
|
+
#
|
|
529
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
530
|
+
#
|
|
531
|
+
# @example Request syntax with placeholder values
|
|
532
|
+
#
|
|
533
|
+
# resp = client.associate_iam_role_to_resource({
|
|
534
|
+
# iam_role_arn: "RoleArn", # required
|
|
535
|
+
# aws_integration: "KmsTde", # required, accepts KmsTde
|
|
536
|
+
# resource_arn: "AssociateIamRoleToResourceInputResourceArnString", # required
|
|
537
|
+
# })
|
|
538
|
+
#
|
|
539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/AssociateIamRoleToResource AWS API Documentation
|
|
540
|
+
#
|
|
541
|
+
# @overload associate_iam_role_to_resource(params = {})
|
|
542
|
+
# @param [Hash] params ({})
|
|
543
|
+
def associate_iam_role_to_resource(params = {}, options = {})
|
|
544
|
+
req = build_request(:associate_iam_role_to_resource, params)
|
|
545
|
+
req.send_request(options)
|
|
546
|
+
end
|
|
547
|
+
|
|
511
548
|
# Creates a new Autonomous VM cluster in the specified Exadata
|
|
512
549
|
# infrastructure.
|
|
513
550
|
#
|
|
@@ -1016,10 +1053,31 @@ module Aws::Odb
|
|
|
1016
1053
|
# @option params [String] :zero_etl_access
|
|
1017
1054
|
# Specifies the configuration for Zero-ETL access from the ODB network.
|
|
1018
1055
|
#
|
|
1056
|
+
# @option params [String] :sts_access
|
|
1057
|
+
# The Amazon Web Services Security Token Service (STS) access
|
|
1058
|
+
# configuration for the ODB network.
|
|
1059
|
+
#
|
|
1060
|
+
# @option params [String] :kms_access
|
|
1061
|
+
# The Amazon Web Services Key Management Service (KMS) access
|
|
1062
|
+
# configuration for the ODB network.
|
|
1063
|
+
#
|
|
1019
1064
|
# @option params [String] :s3_policy_document
|
|
1020
1065
|
# Specifies the endpoint policy for Amazon S3 access from the ODB
|
|
1021
1066
|
# network.
|
|
1022
1067
|
#
|
|
1068
|
+
# @option params [String] :sts_policy_document
|
|
1069
|
+
# The Amazon Web Services Security Token Service (STS) policy document
|
|
1070
|
+
# that defines permissions for token service usage within the ODB
|
|
1071
|
+
# network.
|
|
1072
|
+
#
|
|
1073
|
+
# @option params [String] :kms_policy_document
|
|
1074
|
+
# The Amazon Web Services Key Management Service (KMS) policy document
|
|
1075
|
+
# that defines permissions for key usage within the ODB network.
|
|
1076
|
+
#
|
|
1077
|
+
# @option params [Array<String>] :cross_region_s3_restore_sources_to_enable
|
|
1078
|
+
# The cross-Region Amazon S3 restore sources to enable for the ODB
|
|
1079
|
+
# network.
|
|
1080
|
+
#
|
|
1023
1081
|
# @option params [Hash<String,String>] :tags
|
|
1024
1082
|
# The list of resource tags to apply to the ODB network.
|
|
1025
1083
|
#
|
|
@@ -1043,7 +1101,12 @@ module Aws::Odb
|
|
|
1043
1101
|
# client_token: "CreateOdbNetworkInputClientTokenString",
|
|
1044
1102
|
# s3_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
1045
1103
|
# zero_etl_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
1104
|
+
# sts_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
1105
|
+
# kms_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
1046
1106
|
# s3_policy_document: "PolicyDocument",
|
|
1107
|
+
# sts_policy_document: "PolicyDocument",
|
|
1108
|
+
# kms_policy_document: "PolicyDocument",
|
|
1109
|
+
# cross_region_s3_restore_sources_to_enable: ["String"],
|
|
1047
1110
|
# tags: {
|
|
1048
1111
|
# "TagKey" => "TagValue",
|
|
1049
1112
|
# },
|
|
@@ -1257,6 +1320,44 @@ module Aws::Odb
|
|
|
1257
1320
|
req.send_request(options)
|
|
1258
1321
|
end
|
|
1259
1322
|
|
|
1323
|
+
# Disassociates an Amazon Web Services Identity and Access Management
|
|
1324
|
+
# (IAM) service role from a specified resource to disable Amazon Web
|
|
1325
|
+
# Services service integration.
|
|
1326
|
+
#
|
|
1327
|
+
# @option params [required, String] :iam_role_arn
|
|
1328
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity and
|
|
1329
|
+
# Access Management (IAM) service role to disassociate from the
|
|
1330
|
+
# resource.
|
|
1331
|
+
#
|
|
1332
|
+
# @option params [required, String] :aws_integration
|
|
1333
|
+
# The Amazon Web Services integration configuration settings for the
|
|
1334
|
+
# Amazon Web Services Identity and Access Management (IAM) service role
|
|
1335
|
+
# disassociation.
|
|
1336
|
+
#
|
|
1337
|
+
# @option params [required, String] :resource_arn
|
|
1338
|
+
# The Amazon Resource Name (ARN) of the target resource to disassociate
|
|
1339
|
+
# from the Amazon Web Services Identity and Access Management (IAM)
|
|
1340
|
+
# service role.
|
|
1341
|
+
#
|
|
1342
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1343
|
+
#
|
|
1344
|
+
# @example Request syntax with placeholder values
|
|
1345
|
+
#
|
|
1346
|
+
# resp = client.disassociate_iam_role_from_resource({
|
|
1347
|
+
# iam_role_arn: "RoleArn", # required
|
|
1348
|
+
# aws_integration: "KmsTde", # required, accepts KmsTde
|
|
1349
|
+
# resource_arn: "DisassociateIamRoleFromResourceInputResourceArnString", # required
|
|
1350
|
+
# })
|
|
1351
|
+
#
|
|
1352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/DisassociateIamRoleFromResource AWS API Documentation
|
|
1353
|
+
#
|
|
1354
|
+
# @overload disassociate_iam_role_from_resource(params = {})
|
|
1355
|
+
# @param [Hash] params ({})
|
|
1356
|
+
def disassociate_iam_role_from_resource(params = {}, options = {})
|
|
1357
|
+
req = build_request(:disassociate_iam_role_from_resource, params)
|
|
1358
|
+
req.send_request(options)
|
|
1359
|
+
end
|
|
1360
|
+
|
|
1260
1361
|
# Gets information about a specific Autonomous VM cluster.
|
|
1261
1362
|
#
|
|
1262
1363
|
# @option params [required, String] :cloud_autonomous_vm_cluster_id
|
|
@@ -1278,12 +1379,14 @@ module Aws::Odb
|
|
|
1278
1379
|
# resp.cloud_autonomous_vm_cluster.cloud_autonomous_vm_cluster_id #=> String
|
|
1279
1380
|
# resp.cloud_autonomous_vm_cluster.cloud_autonomous_vm_cluster_arn #=> String
|
|
1280
1381
|
# resp.cloud_autonomous_vm_cluster.odb_network_id #=> String
|
|
1382
|
+
# resp.cloud_autonomous_vm_cluster.odb_network_arn #=> String
|
|
1281
1383
|
# resp.cloud_autonomous_vm_cluster.oci_resource_anchor_name #=> String
|
|
1282
1384
|
# resp.cloud_autonomous_vm_cluster.percent_progress #=> Float
|
|
1283
1385
|
# resp.cloud_autonomous_vm_cluster.display_name #=> String
|
|
1284
1386
|
# resp.cloud_autonomous_vm_cluster.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
|
|
1285
1387
|
# resp.cloud_autonomous_vm_cluster.status_reason #=> String
|
|
1286
1388
|
# resp.cloud_autonomous_vm_cluster.cloud_exadata_infrastructure_id #=> String
|
|
1389
|
+
# resp.cloud_autonomous_vm_cluster.cloud_exadata_infrastructure_arn #=> String
|
|
1287
1390
|
# resp.cloud_autonomous_vm_cluster.autonomous_data_storage_percentage #=> Float
|
|
1288
1391
|
# resp.cloud_autonomous_vm_cluster.autonomous_data_storage_size_in_t_bs #=> Float
|
|
1289
1392
|
# resp.cloud_autonomous_vm_cluster.available_autonomous_data_storage_size_in_t_bs #=> Float
|
|
@@ -1492,6 +1595,7 @@ module Aws::Odb
|
|
|
1492
1595
|
# resp.cloud_vm_cluster.status_reason #=> String
|
|
1493
1596
|
# resp.cloud_vm_cluster.cloud_vm_cluster_arn #=> String
|
|
1494
1597
|
# resp.cloud_vm_cluster.cloud_exadata_infrastructure_id #=> String
|
|
1598
|
+
# resp.cloud_vm_cluster.cloud_exadata_infrastructure_arn #=> String
|
|
1495
1599
|
# resp.cloud_vm_cluster.cluster_name #=> String
|
|
1496
1600
|
# resp.cloud_vm_cluster.cpu_core_count #=> Integer
|
|
1497
1601
|
# resp.cloud_vm_cluster.data_collection_options.is_diagnostics_events_enabled #=> Boolean
|
|
@@ -1536,8 +1640,14 @@ module Aws::Odb
|
|
|
1536
1640
|
# resp.cloud_vm_cluster.vip_ids #=> Array
|
|
1537
1641
|
# resp.cloud_vm_cluster.vip_ids[0] #=> String
|
|
1538
1642
|
# resp.cloud_vm_cluster.odb_network_id #=> String
|
|
1643
|
+
# resp.cloud_vm_cluster.odb_network_arn #=> String
|
|
1539
1644
|
# resp.cloud_vm_cluster.percent_progress #=> Float
|
|
1540
1645
|
# resp.cloud_vm_cluster.compute_model #=> String, one of "ECPU", "OCPU"
|
|
1646
|
+
# resp.cloud_vm_cluster.iam_roles #=> Array
|
|
1647
|
+
# resp.cloud_vm_cluster.iam_roles[0].iam_role_arn #=> String
|
|
1648
|
+
# resp.cloud_vm_cluster.iam_roles[0].status #=> String, one of "ASSOCIATING", "DISASSOCIATING", "FAILED", "CONNECTED", "DISCONNECTED", "PARTIALLY_CONNECTED", "UNKNOWN"
|
|
1649
|
+
# resp.cloud_vm_cluster.iam_roles[0].status_reason #=> String
|
|
1650
|
+
# resp.cloud_vm_cluster.iam_roles[0].aws_integration #=> String, one of "KmsTde"
|
|
1541
1651
|
#
|
|
1542
1652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetCloudVmCluster AWS API Documentation
|
|
1543
1653
|
#
|
|
@@ -1674,12 +1784,19 @@ module Aws::Odb
|
|
|
1674
1784
|
# * {Types::GetOciOnboardingStatusOutput#status #status} => String
|
|
1675
1785
|
# * {Types::GetOciOnboardingStatusOutput#existing_tenancy_activation_link #existing_tenancy_activation_link} => String
|
|
1676
1786
|
# * {Types::GetOciOnboardingStatusOutput#new_tenancy_activation_link #new_tenancy_activation_link} => String
|
|
1787
|
+
# * {Types::GetOciOnboardingStatusOutput#oci_identity_domain #oci_identity_domain} => Types::OciIdentityDomain
|
|
1677
1788
|
#
|
|
1678
1789
|
# @example Response structure
|
|
1679
1790
|
#
|
|
1680
1791
|
# 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
1792
|
# resp.existing_tenancy_activation_link #=> String
|
|
1682
1793
|
# resp.new_tenancy_activation_link #=> String
|
|
1794
|
+
# resp.oci_identity_domain.oci_identity_domain_id #=> String
|
|
1795
|
+
# resp.oci_identity_domain.oci_identity_domain_resource_url #=> String
|
|
1796
|
+
# resp.oci_identity_domain.oci_identity_domain_url #=> String
|
|
1797
|
+
# resp.oci_identity_domain.status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
|
|
1798
|
+
# resp.oci_identity_domain.status_reason #=> String
|
|
1799
|
+
# resp.oci_identity_domain.account_setup_cloud_formation_url #=> String
|
|
1683
1800
|
#
|
|
1684
1801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOciOnboardingStatus AWS API Documentation
|
|
1685
1802
|
#
|
|
@@ -1746,6 +1863,21 @@ module Aws::Odb
|
|
|
1746
1863
|
# resp.odb_network.managed_services.s3_access.ipv4_addresses[0] #=> String
|
|
1747
1864
|
# resp.odb_network.managed_services.s3_access.domain_name #=> String
|
|
1748
1865
|
# resp.odb_network.managed_services.s3_access.s3_policy_document #=> String
|
|
1866
|
+
# resp.odb_network.managed_services.sts_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
|
|
1867
|
+
# resp.odb_network.managed_services.sts_access.ipv4_addresses #=> Array
|
|
1868
|
+
# resp.odb_network.managed_services.sts_access.ipv4_addresses[0] #=> String
|
|
1869
|
+
# resp.odb_network.managed_services.sts_access.domain_name #=> String
|
|
1870
|
+
# resp.odb_network.managed_services.sts_access.sts_policy_document #=> String
|
|
1871
|
+
# resp.odb_network.managed_services.kms_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
|
|
1872
|
+
# resp.odb_network.managed_services.kms_access.ipv4_addresses #=> Array
|
|
1873
|
+
# resp.odb_network.managed_services.kms_access.ipv4_addresses[0] #=> String
|
|
1874
|
+
# resp.odb_network.managed_services.kms_access.domain_name #=> String
|
|
1875
|
+
# resp.odb_network.managed_services.kms_access.kms_policy_document #=> String
|
|
1876
|
+
# resp.odb_network.managed_services.cross_region_s3_restore_sources_access #=> Array
|
|
1877
|
+
# resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].region #=> String
|
|
1878
|
+
# resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses #=> Array
|
|
1879
|
+
# resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses[0] #=> String
|
|
1880
|
+
# resp.odb_network.managed_services.cross_region_s3_restore_sources_access[0].status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
|
|
1749
1881
|
#
|
|
1750
1882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetOdbNetwork AWS API Documentation
|
|
1751
1883
|
#
|
|
@@ -1798,8 +1930,18 @@ module Aws::Odb
|
|
|
1798
1930
|
|
|
1799
1931
|
# Initializes the ODB service for the first time in an account.
|
|
1800
1932
|
#
|
|
1933
|
+
# @option params [Boolean] :oci_identity_domain
|
|
1934
|
+
# The Oracle Cloud Infrastructure (OCI) identity domain configuration
|
|
1935
|
+
# for service initialization.
|
|
1936
|
+
#
|
|
1801
1937
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1802
1938
|
#
|
|
1939
|
+
# @example Request syntax with placeholder values
|
|
1940
|
+
#
|
|
1941
|
+
# resp = client.initialize_service({
|
|
1942
|
+
# oci_identity_domain: false,
|
|
1943
|
+
# })
|
|
1944
|
+
#
|
|
1803
1945
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/InitializeService AWS API Documentation
|
|
1804
1946
|
#
|
|
1805
1947
|
# @overload initialize_service(params = {})
|
|
@@ -1898,12 +2040,14 @@ module Aws::Odb
|
|
|
1898
2040
|
# resp.cloud_autonomous_vm_clusters[0].cloud_autonomous_vm_cluster_id #=> String
|
|
1899
2041
|
# resp.cloud_autonomous_vm_clusters[0].cloud_autonomous_vm_cluster_arn #=> String
|
|
1900
2042
|
# resp.cloud_autonomous_vm_clusters[0].odb_network_id #=> String
|
|
2043
|
+
# resp.cloud_autonomous_vm_clusters[0].odb_network_arn #=> String
|
|
1901
2044
|
# resp.cloud_autonomous_vm_clusters[0].oci_resource_anchor_name #=> String
|
|
1902
2045
|
# resp.cloud_autonomous_vm_clusters[0].percent_progress #=> Float
|
|
1903
2046
|
# resp.cloud_autonomous_vm_clusters[0].display_name #=> String
|
|
1904
2047
|
# resp.cloud_autonomous_vm_clusters[0].status #=> String, one of "AVAILABLE", "FAILED", "PROVISIONING", "TERMINATED", "TERMINATING", "UPDATING", "MAINTENANCE_IN_PROGRESS"
|
|
1905
2048
|
# resp.cloud_autonomous_vm_clusters[0].status_reason #=> String
|
|
1906
2049
|
# resp.cloud_autonomous_vm_clusters[0].cloud_exadata_infrastructure_id #=> String
|
|
2050
|
+
# resp.cloud_autonomous_vm_clusters[0].cloud_exadata_infrastructure_arn #=> String
|
|
1907
2051
|
# resp.cloud_autonomous_vm_clusters[0].autonomous_data_storage_percentage #=> Float
|
|
1908
2052
|
# resp.cloud_autonomous_vm_clusters[0].autonomous_data_storage_size_in_t_bs #=> Float
|
|
1909
2053
|
# resp.cloud_autonomous_vm_clusters[0].available_autonomous_data_storage_size_in_t_bs #=> Float
|
|
@@ -2105,6 +2249,7 @@ module Aws::Odb
|
|
|
2105
2249
|
# resp.cloud_vm_clusters[0].status_reason #=> String
|
|
2106
2250
|
# resp.cloud_vm_clusters[0].cloud_vm_cluster_arn #=> String
|
|
2107
2251
|
# resp.cloud_vm_clusters[0].cloud_exadata_infrastructure_id #=> String
|
|
2252
|
+
# resp.cloud_vm_clusters[0].cloud_exadata_infrastructure_arn #=> String
|
|
2108
2253
|
# resp.cloud_vm_clusters[0].cluster_name #=> String
|
|
2109
2254
|
# resp.cloud_vm_clusters[0].cpu_core_count #=> Integer
|
|
2110
2255
|
# resp.cloud_vm_clusters[0].data_collection_options.is_diagnostics_events_enabled #=> Boolean
|
|
@@ -2149,8 +2294,14 @@ module Aws::Odb
|
|
|
2149
2294
|
# resp.cloud_vm_clusters[0].vip_ids #=> Array
|
|
2150
2295
|
# resp.cloud_vm_clusters[0].vip_ids[0] #=> String
|
|
2151
2296
|
# resp.cloud_vm_clusters[0].odb_network_id #=> String
|
|
2297
|
+
# resp.cloud_vm_clusters[0].odb_network_arn #=> String
|
|
2152
2298
|
# resp.cloud_vm_clusters[0].percent_progress #=> Float
|
|
2153
2299
|
# resp.cloud_vm_clusters[0].compute_model #=> String, one of "ECPU", "OCPU"
|
|
2300
|
+
# resp.cloud_vm_clusters[0].iam_roles #=> Array
|
|
2301
|
+
# resp.cloud_vm_clusters[0].iam_roles[0].iam_role_arn #=> String
|
|
2302
|
+
# resp.cloud_vm_clusters[0].iam_roles[0].status #=> String, one of "ASSOCIATING", "DISASSOCIATING", "FAILED", "CONNECTED", "DISCONNECTED", "PARTIALLY_CONNECTED", "UNKNOWN"
|
|
2303
|
+
# resp.cloud_vm_clusters[0].iam_roles[0].status_reason #=> String
|
|
2304
|
+
# resp.cloud_vm_clusters[0].iam_roles[0].aws_integration #=> String, one of "KmsTde"
|
|
2154
2305
|
#
|
|
2155
2306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListCloudVmClusters AWS API Documentation
|
|
2156
2307
|
#
|
|
@@ -2499,6 +2650,21 @@ module Aws::Odb
|
|
|
2499
2650
|
# resp.odb_networks[0].managed_services.s3_access.ipv4_addresses[0] #=> String
|
|
2500
2651
|
# resp.odb_networks[0].managed_services.s3_access.domain_name #=> String
|
|
2501
2652
|
# resp.odb_networks[0].managed_services.s3_access.s3_policy_document #=> String
|
|
2653
|
+
# resp.odb_networks[0].managed_services.sts_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
|
|
2654
|
+
# resp.odb_networks[0].managed_services.sts_access.ipv4_addresses #=> Array
|
|
2655
|
+
# resp.odb_networks[0].managed_services.sts_access.ipv4_addresses[0] #=> String
|
|
2656
|
+
# resp.odb_networks[0].managed_services.sts_access.domain_name #=> String
|
|
2657
|
+
# resp.odb_networks[0].managed_services.sts_access.sts_policy_document #=> String
|
|
2658
|
+
# resp.odb_networks[0].managed_services.kms_access.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
|
|
2659
|
+
# resp.odb_networks[0].managed_services.kms_access.ipv4_addresses #=> Array
|
|
2660
|
+
# resp.odb_networks[0].managed_services.kms_access.ipv4_addresses[0] #=> String
|
|
2661
|
+
# resp.odb_networks[0].managed_services.kms_access.domain_name #=> String
|
|
2662
|
+
# resp.odb_networks[0].managed_services.kms_access.kms_policy_document #=> String
|
|
2663
|
+
# resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access #=> Array
|
|
2664
|
+
# resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].region #=> String
|
|
2665
|
+
# resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses #=> Array
|
|
2666
|
+
# resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].ipv4_addresses[0] #=> String
|
|
2667
|
+
# resp.odb_networks[0].managed_services.cross_region_s3_restore_sources_access[0].status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
|
|
2502
2668
|
#
|
|
2503
2669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListOdbNetworks AWS API Documentation
|
|
2504
2670
|
#
|
|
@@ -2903,10 +3069,35 @@ module Aws::Odb
|
|
|
2903
3069
|
# Specifies the updated configuration for Zero-ETL access from the ODB
|
|
2904
3070
|
# network.
|
|
2905
3071
|
#
|
|
3072
|
+
# @option params [String] :sts_access
|
|
3073
|
+
# The Amazon Web Services Security Token Service (STS) access
|
|
3074
|
+
# configuration for the ODB network.
|
|
3075
|
+
#
|
|
3076
|
+
# @option params [String] :kms_access
|
|
3077
|
+
# The Amazon Web Services Key Management Service (KMS) access
|
|
3078
|
+
# configuration for the ODB network.
|
|
3079
|
+
#
|
|
2906
3080
|
# @option params [String] :s3_policy_document
|
|
2907
3081
|
# Specifies the updated endpoint policy for Amazon S3 access from the
|
|
2908
3082
|
# ODB network.
|
|
2909
3083
|
#
|
|
3084
|
+
# @option params [String] :sts_policy_document
|
|
3085
|
+
# The Amazon Web Services Security Token Service (STS) policy document
|
|
3086
|
+
# that defines permissions for token service usage within the ODB
|
|
3087
|
+
# network.
|
|
3088
|
+
#
|
|
3089
|
+
# @option params [String] :kms_policy_document
|
|
3090
|
+
# The Amazon Web Services Key Management Service (KMS) policy document
|
|
3091
|
+
# that defines permissions for key usage within the ODB network.
|
|
3092
|
+
#
|
|
3093
|
+
# @option params [Array<String>] :cross_region_s3_restore_sources_to_enable
|
|
3094
|
+
# The cross-Region Amazon S3 restore sources to enable for the ODB
|
|
3095
|
+
# network.
|
|
3096
|
+
#
|
|
3097
|
+
# @option params [Array<String>] :cross_region_s3_restore_sources_to_disable
|
|
3098
|
+
# The cross-Region Amazon S3 restore sources to disable for the ODB
|
|
3099
|
+
# network.
|
|
3100
|
+
#
|
|
2910
3101
|
# @return [Types::UpdateOdbNetworkOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2911
3102
|
#
|
|
2912
3103
|
# * {Types::UpdateOdbNetworkOutput#display_name #display_name} => String
|
|
@@ -2923,7 +3114,13 @@ module Aws::Odb
|
|
|
2923
3114
|
# peered_cidrs_to_be_removed: ["String"],
|
|
2924
3115
|
# s3_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
2925
3116
|
# zero_etl_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
3117
|
+
# sts_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
3118
|
+
# kms_access: "ENABLED", # accepts ENABLED, DISABLED
|
|
2926
3119
|
# s3_policy_document: "PolicyDocument",
|
|
3120
|
+
# sts_policy_document: "PolicyDocument",
|
|
3121
|
+
# kms_policy_document: "PolicyDocument",
|
|
3122
|
+
# cross_region_s3_restore_sources_to_enable: ["String"],
|
|
3123
|
+
# cross_region_s3_restore_sources_to_disable: ["String"],
|
|
2927
3124
|
# })
|
|
2928
3125
|
#
|
|
2929
3126
|
# @example Response structure
|
|
@@ -3013,7 +3210,7 @@ module Aws::Odb
|
|
|
3013
3210
|
tracer: tracer
|
|
3014
3211
|
)
|
|
3015
3212
|
context[:gem_name] = 'aws-sdk-odb'
|
|
3016
|
-
context[:gem_version] = '1.
|
|
3213
|
+
context[:gem_version] = '1.10.0'
|
|
3017
3214
|
Seahorse::Client::Request.new(handlers, context)
|
|
3018
3215
|
end
|
|
3019
3216
|
|