aws-sdk-odb 1.7.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.
data/sig/types.rbs CHANGED
@@ -21,6 +21,16 @@ module Aws::Odb
21
21
  SENSITIVE: []
22
22
  end
23
23
 
24
+ class AssociateIamRoleToResourceInput
25
+ attr_accessor iam_role_arn: ::String
26
+ attr_accessor aws_integration: ("KmsTde")
27
+ attr_accessor resource_arn: ::String
28
+ SENSITIVE: []
29
+ end
30
+
31
+ class AssociateIamRoleToResourceOutput < Aws::EmptyStructure
32
+ end
33
+
24
34
  class AutonomousVirtualMachineSummary
25
35
  attr_accessor autonomous_virtual_machine_id: ::String
26
36
  attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
@@ -286,6 +296,7 @@ module Aws::Odb
286
296
  attr_accessor odb_network_id: ::String
287
297
  attr_accessor percent_progress: ::Float
288
298
  attr_accessor compute_model: ("ECPU" | "OCPU")
299
+ attr_accessor iam_roles: ::Array[Types::IamRole]
289
300
  SENSITIVE: []
290
301
  end
291
302
 
@@ -330,6 +341,7 @@ module Aws::Odb
330
341
  attr_accessor odb_network_id: ::String
331
342
  attr_accessor percent_progress: ::Float
332
343
  attr_accessor compute_model: ("ECPU" | "OCPU")
344
+ attr_accessor iam_roles: ::Array[Types::IamRole]
333
345
  SENSITIVE: []
334
346
  end
335
347
 
@@ -437,7 +449,12 @@ module Aws::Odb
437
449
  attr_accessor client_token: ::String
438
450
  attr_accessor s3_access: ("ENABLED" | "DISABLED")
439
451
  attr_accessor zero_etl_access: ("ENABLED" | "DISABLED")
452
+ attr_accessor sts_access: ("ENABLED" | "DISABLED")
453
+ attr_accessor kms_access: ("ENABLED" | "DISABLED")
440
454
  attr_accessor s3_policy_document: ::String
455
+ attr_accessor sts_policy_document: ::String
456
+ attr_accessor kms_policy_document: ::String
457
+ attr_accessor cross_region_s3_restore_sources_to_enable: ::Array[::String]
441
458
  attr_accessor tags: ::Hash[::String, ::String]
442
459
  SENSITIVE: []
443
460
  end
@@ -468,6 +485,13 @@ module Aws::Odb
468
485
  SENSITIVE: []
469
486
  end
470
487
 
488
+ class CrossRegionS3RestoreSourcesAccess
489
+ attr_accessor region: ::String
490
+ attr_accessor ipv4_addresses: ::Array[::String]
491
+ attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
492
+ SENSITIVE: []
493
+ end
494
+
471
495
  class CustomerContact
472
496
  attr_accessor email: ::String
473
497
  SENSITIVE: [:email]
@@ -679,6 +703,16 @@ module Aws::Odb
679
703
  class DeleteOdbPeeringConnectionOutput < Aws::EmptyStructure
680
704
  end
681
705
 
706
+ class DisassociateIamRoleFromResourceInput
707
+ attr_accessor iam_role_arn: ::String
708
+ attr_accessor aws_integration: ("KmsTde")
709
+ attr_accessor resource_arn: ::String
710
+ SENSITIVE: []
711
+ end
712
+
713
+ class DisassociateIamRoleFromResourceOutput < Aws::EmptyStructure
714
+ end
715
+
682
716
  class ExadataIormConfig
683
717
  attr_accessor db_plans: ::Array[Types::DbIormConfig]
684
718
  attr_accessor lifecycle_details: ::String
@@ -757,6 +791,7 @@ module Aws::Odb
757
791
  attr_accessor 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")
758
792
  attr_accessor existing_tenancy_activation_link: ::String
759
793
  attr_accessor new_tenancy_activation_link: ::String
794
+ attr_accessor oci_identity_domain: Types::OciIdentityDomain
760
795
  SENSITIVE: []
761
796
  end
762
797
 
@@ -785,7 +820,17 @@ module Aws::Odb
785
820
  SENSITIVE: []
786
821
  end
787
822
 
788
- class InitializeServiceInput < Aws::EmptyStructure
823
+ class IamRole
824
+ attr_accessor iam_role_arn: ::String
825
+ attr_accessor status: ("ASSOCIATING" | "DISASSOCIATING" | "FAILED" | "CONNECTED" | "DISCONNECTED" | "PARTIALLY_CONNECTED" | "UNKNOWN")
826
+ attr_accessor status_reason: ::String
827
+ attr_accessor aws_integration: ("KmsTde")
828
+ SENSITIVE: []
829
+ end
830
+
831
+ class InitializeServiceInput
832
+ attr_accessor oci_identity_domain: bool
833
+ SENSITIVE: []
789
834
  end
790
835
 
791
836
  class InitializeServiceOutput < Aws::EmptyStructure
@@ -797,6 +842,14 @@ module Aws::Odb
797
842
  SENSITIVE: []
798
843
  end
799
844
 
845
+ class KmsAccess
846
+ attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
847
+ attr_accessor ipv4_addresses: ::Array[::String]
848
+ attr_accessor domain_name: ::String
849
+ attr_accessor kms_policy_document: ::String
850
+ SENSITIVE: []
851
+ end
852
+
800
853
  class ListAutonomousVirtualMachinesInput
801
854
  attr_accessor max_results: ::Integer
802
855
  attr_accessor next_token: ::String
@@ -978,6 +1031,9 @@ module Aws::Odb
978
1031
  attr_accessor managed_s3_backup_access: Types::ManagedS3BackupAccess
979
1032
  attr_accessor zero_etl_access: Types::ZeroEtlAccess
980
1033
  attr_accessor s3_access: Types::S3Access
1034
+ attr_accessor sts_access: Types::StsAccess
1035
+ attr_accessor kms_access: Types::KmsAccess
1036
+ attr_accessor cross_region_s3_restore_sources_access: ::Array[Types::CrossRegionS3RestoreSourcesAccess]
981
1037
  SENSITIVE: []
982
1038
  end
983
1039
 
@@ -992,6 +1048,16 @@ module Aws::Odb
992
1048
  SENSITIVE: []
993
1049
  end
994
1050
 
1051
+ class OciIdentityDomain
1052
+ attr_accessor oci_identity_domain_id: ::String
1053
+ attr_accessor oci_identity_domain_resource_url: ::String
1054
+ attr_accessor oci_identity_domain_url: ::String
1055
+ attr_accessor status: ("AVAILABLE" | "FAILED" | "PROVISIONING" | "TERMINATED" | "TERMINATING" | "UPDATING" | "MAINTENANCE_IN_PROGRESS")
1056
+ attr_accessor status_reason: ::String
1057
+ attr_accessor account_setup_cloud_formation_url: ::String
1058
+ SENSITIVE: []
1059
+ end
1060
+
995
1061
  class OdbNetwork
996
1062
  attr_accessor odb_network_id: ::String
997
1063
  attr_accessor display_name: ::String
@@ -1140,6 +1206,14 @@ module Aws::Odb
1140
1206
  SENSITIVE: []
1141
1207
  end
1142
1208
 
1209
+ class StsAccess
1210
+ attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
1211
+ attr_accessor ipv4_addresses: ::Array[::String]
1212
+ attr_accessor domain_name: ::String
1213
+ attr_accessor sts_policy_document: ::String
1214
+ SENSITIVE: []
1215
+ end
1216
+
1143
1217
  class SystemVersionSummary
1144
1218
  attr_accessor gi_version: ::String
1145
1219
  attr_accessor shape: ::String
@@ -1192,7 +1266,13 @@ module Aws::Odb
1192
1266
  attr_accessor peered_cidrs_to_be_removed: ::Array[::String]
1193
1267
  attr_accessor s3_access: ("ENABLED" | "DISABLED")
1194
1268
  attr_accessor zero_etl_access: ("ENABLED" | "DISABLED")
1269
+ attr_accessor sts_access: ("ENABLED" | "DISABLED")
1270
+ attr_accessor kms_access: ("ENABLED" | "DISABLED")
1195
1271
  attr_accessor s3_policy_document: ::String
1272
+ attr_accessor sts_policy_document: ::String
1273
+ attr_accessor kms_policy_document: ::String
1274
+ attr_accessor cross_region_s3_restore_sources_to_enable: ::Array[::String]
1275
+ attr_accessor cross_region_s3_restore_sources_to_disable: ::Array[::String]
1196
1276
  SENSITIVE: []
1197
1277
  end
1198
1278
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-odb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement