aws-sdk-odb 1.13.0 → 1.14.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 +11 -1
- data/lib/aws-sdk-odb/client_api.rb +2 -0
- data/lib/aws-sdk-odb/types.rb +15 -2
- data/lib/aws-sdk-odb.rb +1 -1
- data/sig/types.rbs +2 -0
- 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: 84cc5bb5348ffc4e77788a151b1ca2a73c6ecc3ba6ea07810bebcf62c8b2e35c
|
|
4
|
+
data.tar.gz: 95857c3d2e0946c8e4da59ceff8eb6c13b9ec64084bebc9cad1b89771bb26d4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b788777c019e882ed474bf056c5764bc73e61a703f1c36cd844decd7ab2c43c144f05f5f1b5eb419e04df973865505d9984e000b432443b36fd18b1ed1730f93
|
|
7
|
+
data.tar.gz: 5dc105f7f1ed06a43a393c39752663f6cc30a2e9a522b3daada80b8ea6cedb261ac2f9a067f4891dabed3ca012c696ea387c29348dad7e5df13e33ef790ea114
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.14.0 (2026-01-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for associating and disassociating IAM roles with Autonomous VM cluster resources through the AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs. The GetCloudAutonomousVmCluster and ListCloudAutonomousVmClusters API responses now include the iamRoles field.
|
|
8
|
+
|
|
4
9
|
1.13.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.14.0
|
data/lib/aws-sdk-odb/client.rb
CHANGED
|
@@ -1441,6 +1441,11 @@ module Aws::Odb
|
|
|
1441
1441
|
# resp.cloud_autonomous_vm_cluster.time_ords_certificate_expires #=> Time
|
|
1442
1442
|
# resp.cloud_autonomous_vm_cluster.time_zone #=> String
|
|
1443
1443
|
# resp.cloud_autonomous_vm_cluster.total_container_databases #=> Integer
|
|
1444
|
+
# resp.cloud_autonomous_vm_cluster.iam_roles #=> Array
|
|
1445
|
+
# resp.cloud_autonomous_vm_cluster.iam_roles[0].iam_role_arn #=> String
|
|
1446
|
+
# resp.cloud_autonomous_vm_cluster.iam_roles[0].status #=> String, one of "ASSOCIATING", "DISASSOCIATING", "FAILED", "CONNECTED", "DISCONNECTED", "PARTIALLY_CONNECTED", "UNKNOWN"
|
|
1447
|
+
# resp.cloud_autonomous_vm_cluster.iam_roles[0].status_reason #=> String
|
|
1448
|
+
# resp.cloud_autonomous_vm_cluster.iam_roles[0].aws_integration #=> String, one of "KmsTde"
|
|
1444
1449
|
#
|
|
1445
1450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/GetCloudAutonomousVmCluster AWS API Documentation
|
|
1446
1451
|
#
|
|
@@ -2102,6 +2107,11 @@ module Aws::Odb
|
|
|
2102
2107
|
# resp.cloud_autonomous_vm_clusters[0].time_ords_certificate_expires #=> Time
|
|
2103
2108
|
# resp.cloud_autonomous_vm_clusters[0].time_zone #=> String
|
|
2104
2109
|
# resp.cloud_autonomous_vm_clusters[0].total_container_databases #=> Integer
|
|
2110
|
+
# resp.cloud_autonomous_vm_clusters[0].iam_roles #=> Array
|
|
2111
|
+
# resp.cloud_autonomous_vm_clusters[0].iam_roles[0].iam_role_arn #=> String
|
|
2112
|
+
# resp.cloud_autonomous_vm_clusters[0].iam_roles[0].status #=> String, one of "ASSOCIATING", "DISASSOCIATING", "FAILED", "CONNECTED", "DISCONNECTED", "PARTIALLY_CONNECTED", "UNKNOWN"
|
|
2113
|
+
# resp.cloud_autonomous_vm_clusters[0].iam_roles[0].status_reason #=> String
|
|
2114
|
+
# resp.cloud_autonomous_vm_clusters[0].iam_roles[0].aws_integration #=> String, one of "KmsTde"
|
|
2105
2115
|
#
|
|
2106
2116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/ListCloudAutonomousVmClusters AWS API Documentation
|
|
2107
2117
|
#
|
|
@@ -3210,7 +3220,7 @@ module Aws::Odb
|
|
|
3210
3220
|
tracer: tracer
|
|
3211
3221
|
)
|
|
3212
3222
|
context[:gem_name] = 'aws-sdk-odb'
|
|
3213
|
-
context[:gem_version] = '1.
|
|
3223
|
+
context[:gem_version] = '1.14.0'
|
|
3214
3224
|
Seahorse::Client::Request.new(handlers, context)
|
|
3215
3225
|
end
|
|
3216
3226
|
|
|
@@ -376,6 +376,7 @@ module Aws::Odb
|
|
|
376
376
|
CloudAutonomousVmCluster.add_member(:time_ords_certificate_expires, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeOrdsCertificateExpires"))
|
|
377
377
|
CloudAutonomousVmCluster.add_member(:time_zone, Shapes::ShapeRef.new(shape: String, location_name: "timeZone"))
|
|
378
378
|
CloudAutonomousVmCluster.add_member(:total_container_databases, Shapes::ShapeRef.new(shape: Integer, location_name: "totalContainerDatabases"))
|
|
379
|
+
CloudAutonomousVmCluster.add_member(:iam_roles, Shapes::ShapeRef.new(shape: IamRoleList, location_name: "iamRoles"))
|
|
379
380
|
CloudAutonomousVmCluster.struct_class = Types::CloudAutonomousVmCluster
|
|
380
381
|
|
|
381
382
|
CloudAutonomousVmClusterList.member = Shapes::ShapeRef.new(shape: CloudAutonomousVmClusterSummary)
|
|
@@ -437,6 +438,7 @@ module Aws::Odb
|
|
|
437
438
|
CloudAutonomousVmClusterSummary.add_member(:time_ords_certificate_expires, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timeOrdsCertificateExpires"))
|
|
438
439
|
CloudAutonomousVmClusterSummary.add_member(:time_zone, Shapes::ShapeRef.new(shape: String, location_name: "timeZone"))
|
|
439
440
|
CloudAutonomousVmClusterSummary.add_member(:total_container_databases, Shapes::ShapeRef.new(shape: Integer, location_name: "totalContainerDatabases"))
|
|
441
|
+
CloudAutonomousVmClusterSummary.add_member(:iam_roles, Shapes::ShapeRef.new(shape: IamRoleList, location_name: "iamRoles"))
|
|
440
442
|
CloudAutonomousVmClusterSummary.struct_class = Types::CloudAutonomousVmClusterSummary
|
|
441
443
|
|
|
442
444
|
CloudExadataInfrastructure.add_member(:cloud_exadata_infrastructure_id, Shapes::ShapeRef.new(shape: ResourceIdOrArn, required: true, location_name: "cloudExadataInfrastructureId"))
|
data/lib/aws-sdk-odb/types.rb
CHANGED
|
@@ -396,6 +396,11 @@ module Aws::Odb
|
|
|
396
396
|
# created with the allocated local storage.
|
|
397
397
|
# @return [Integer]
|
|
398
398
|
#
|
|
399
|
+
# @!attribute [rw] iam_roles
|
|
400
|
+
# The Amazon Web Services Identity and Access Management (IAM) service
|
|
401
|
+
# roles associated with the Autonomous VM cluster.
|
|
402
|
+
# @return [Array<Types::IamRole>]
|
|
403
|
+
#
|
|
399
404
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CloudAutonomousVmCluster AWS API Documentation
|
|
400
405
|
#
|
|
401
406
|
class CloudAutonomousVmCluster < Struct.new(
|
|
@@ -449,7 +454,8 @@ module Aws::Odb
|
|
|
449
454
|
:time_database_ssl_certificate_expires,
|
|
450
455
|
:time_ords_certificate_expires,
|
|
451
456
|
:time_zone,
|
|
452
|
-
:total_container_databases
|
|
457
|
+
:total_container_databases,
|
|
458
|
+
:iam_roles)
|
|
453
459
|
SENSITIVE = []
|
|
454
460
|
include Aws::Structure
|
|
455
461
|
end
|
|
@@ -710,6 +716,12 @@ module Aws::Odb
|
|
|
710
716
|
# created in the Autonomous VM cluster.
|
|
711
717
|
# @return [Integer]
|
|
712
718
|
#
|
|
719
|
+
# @!attribute [rw] iam_roles
|
|
720
|
+
# The Amazon Web Services Identity and Access Management (IAM) service
|
|
721
|
+
# roles associated with the Autonomous VM cluster in the summary
|
|
722
|
+
# information.
|
|
723
|
+
# @return [Array<Types::IamRole>]
|
|
724
|
+
#
|
|
713
725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/odb-2024-08-20/CloudAutonomousVmClusterSummary AWS API Documentation
|
|
714
726
|
#
|
|
715
727
|
class CloudAutonomousVmClusterSummary < Struct.new(
|
|
@@ -763,7 +775,8 @@ module Aws::Odb
|
|
|
763
775
|
:time_database_ssl_certificate_expires,
|
|
764
776
|
:time_ords_certificate_expires,
|
|
765
777
|
:time_zone,
|
|
766
|
-
:total_container_databases
|
|
778
|
+
:total_container_databases,
|
|
779
|
+
:iam_roles)
|
|
767
780
|
SENSITIVE = []
|
|
768
781
|
include Aws::Structure
|
|
769
782
|
end
|
data/lib/aws-sdk-odb.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -100,6 +100,7 @@ module Aws::Odb
|
|
|
100
100
|
attr_accessor time_ords_certificate_expires: ::Time
|
|
101
101
|
attr_accessor time_zone: ::String
|
|
102
102
|
attr_accessor total_container_databases: ::Integer
|
|
103
|
+
attr_accessor iam_roles: ::Array[Types::IamRole]
|
|
103
104
|
SENSITIVE: []
|
|
104
105
|
end
|
|
105
106
|
|
|
@@ -161,6 +162,7 @@ module Aws::Odb
|
|
|
161
162
|
attr_accessor time_ords_certificate_expires: ::Time
|
|
162
163
|
attr_accessor time_zone: ::String
|
|
163
164
|
attr_accessor total_container_databases: ::Integer
|
|
165
|
+
attr_accessor iam_roles: ::Array[Types::IamRole]
|
|
164
166
|
SENSITIVE: []
|
|
165
167
|
end
|
|
166
168
|
|