aws-sdk 2.813.0 → 2.814.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.
- package/CHANGELOG.md +7 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +11 -0
- package/apis/rds-2014-10-31.min.json +192 -172
- package/clients/ec2.d.ts +13 -1
- package/clients/rds.d.ts +41 -14
- package/dist/aws-sdk-core-react-native.js +6 -1
- package/dist/aws-sdk-react-native.js +13 -3
- package/dist/aws-sdk.js +211 -175
- package/dist/aws-sdk.min.js +53 -53
- package/lib/core.js +1 -1
- package/lib/util.js +5 -0
- package/package.json +1 -1
package/clients/ec2.d.ts
CHANGED
|
@@ -7995,7 +7995,7 @@ declare namespace EC2 {
|
|
|
7995
7995
|
*/
|
|
7996
7996
|
TagSpecifications?: TagSpecificationList;
|
|
7997
7997
|
/**
|
|
7998
|
-
* Indicates whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Instances built on the Nitro System in the same Availability Zone. This parameter is supported with io1 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.
|
|
7998
|
+
* Indicates whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Instances built on the Nitro System in the same Availability Zone. This parameter is supported with io1 and io2 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.
|
|
7999
7999
|
*/
|
|
8000
8000
|
MultiAttachEnabled?: Boolean;
|
|
8001
8001
|
/**
|
|
@@ -19901,6 +19901,10 @@ declare namespace EC2 {
|
|
|
19901
19901
|
* The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 1,000. Default: If no throughput value is specified, the existing value is retained. Valid Range: Minimum value of 125. Maximum value of 1000.
|
|
19902
19902
|
*/
|
|
19903
19903
|
Throughput?: Integer;
|
|
19904
|
+
/**
|
|
19905
|
+
* Specifies whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Nitro-based instances in the same Availability Zone. This parameter is supported with io1 and io2 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.
|
|
19906
|
+
*/
|
|
19907
|
+
MultiAttachEnabled?: Boolean;
|
|
19904
19908
|
}
|
|
19905
19909
|
export interface ModifyVolumeResult {
|
|
19906
19910
|
/**
|
|
@@ -26900,6 +26904,10 @@ declare namespace EC2 {
|
|
|
26900
26904
|
* The target throughput of the volume, in MiB/s.
|
|
26901
26905
|
*/
|
|
26902
26906
|
TargetThroughput?: Integer;
|
|
26907
|
+
/**
|
|
26908
|
+
* The target setting for Amazon EBS Multi-Attach.
|
|
26909
|
+
*/
|
|
26910
|
+
TargetMultiAttachEnabled?: Boolean;
|
|
26903
26911
|
/**
|
|
26904
26912
|
* The original size of the volume, in GiB.
|
|
26905
26913
|
*/
|
|
@@ -26916,6 +26924,10 @@ declare namespace EC2 {
|
|
|
26916
26924
|
* The original throughput of the volume, in MiB/s.
|
|
26917
26925
|
*/
|
|
26918
26926
|
OriginalThroughput?: Integer;
|
|
26927
|
+
/**
|
|
26928
|
+
* The original setting for Amazon EBS Multi-Attach.
|
|
26929
|
+
*/
|
|
26930
|
+
OriginalMultiAttachEnabled?: Boolean;
|
|
26919
26931
|
/**
|
|
26920
26932
|
* The modification progress, from 0 to 100 percent complete.
|
|
26921
26933
|
*/
|
package/clients/rds.d.ts
CHANGED
|
@@ -1355,6 +1355,25 @@ declare namespace RDS {
|
|
|
1355
1355
|
*/
|
|
1356
1356
|
DisableLogTypes?: LogTypeList;
|
|
1357
1357
|
}
|
|
1358
|
+
export interface ClusterPendingModifiedValues {
|
|
1359
|
+
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
|
|
1360
|
+
/**
|
|
1361
|
+
* The DBClusterIdentifier for the DB cluster.
|
|
1362
|
+
*/
|
|
1363
|
+
DBClusterIdentifier?: String;
|
|
1364
|
+
/**
|
|
1365
|
+
* The master credentials for the DB cluster.
|
|
1366
|
+
*/
|
|
1367
|
+
MasterUserPassword?: String;
|
|
1368
|
+
/**
|
|
1369
|
+
* Whether mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.
|
|
1370
|
+
*/
|
|
1371
|
+
IAMDatabaseAuthenticationEnabled?: BooleanOptional;
|
|
1372
|
+
/**
|
|
1373
|
+
* The database engine version.
|
|
1374
|
+
*/
|
|
1375
|
+
EngineVersion?: String;
|
|
1376
|
+
}
|
|
1358
1377
|
export interface ConnectionPoolConfiguration {
|
|
1359
1378
|
/**
|
|
1360
1379
|
* The maximum size of the connection pool for each target in a target group. For Aurora MySQL, it is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. Default: 100 Constraints: between 1 and 100
|
|
@@ -1749,7 +1768,7 @@ declare namespace RDS {
|
|
|
1749
1768
|
}
|
|
1750
1769
|
export interface CreateDBInstanceMessage {
|
|
1751
1770
|
/**
|
|
1752
|
-
* The meaning of this parameter differs according to the database engine you use. MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified,
|
|
1771
|
+
* The meaning of this parameter differs according to the database engine you use. MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine Oracle The Oracle System ID (SID) of the created DB instance. If you specify null, the default value ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters SQL Server Not applicable. Must be null. Amazon Aurora The name of the database to create when the primary instance of the DB cluster is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Can't be a word reserved by the specified database engine
|
|
1753
1772
|
*/
|
|
1754
1773
|
DBName?: String;
|
|
1755
1774
|
/**
|
|
@@ -2008,7 +2027,7 @@ declare namespace RDS {
|
|
|
2008
2027
|
*/
|
|
2009
2028
|
MonitoringRoleArn?: String;
|
|
2010
2029
|
/**
|
|
2011
|
-
* The AWS KMS key identifier for an encrypted read replica. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS CMK. If you create an encrypted read replica in the same AWS Region as the source DB instance, then
|
|
2030
|
+
* The AWS KMS key identifier for an encrypted read replica. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS CMK. If you create an encrypted read replica in the same AWS Region as the source DB instance, then do not specify a value for this parameter. A read replica in the same Region is always encrypted with the same AWS KMS CMK as the source DB instance. If you create an encrypted read replica in a different AWS Region, then you must specify a AWS KMS key identifier for the destination AWS Region. AWS KMS CMKs are specific to the AWS Region that they are created in, and you can't use CMKs from one AWS Region in another AWS Region. You can't create an encrypted read replica from an unencrypted DB instance.
|
|
2012
2031
|
*/
|
|
2013
2032
|
KmsKeyId?: String;
|
|
2014
2033
|
/**
|
|
@@ -2527,6 +2546,10 @@ declare namespace RDS {
|
|
|
2527
2546
|
* Specifies whether you have requested to enable write forwarding for a secondary cluster in an Aurora global database. Because write forwarding takes time to enable, check the value of GlobalWriteForwardingStatus to confirm that the request has completed before using the write forwarding feature for this cluster.
|
|
2528
2547
|
*/
|
|
2529
2548
|
GlobalWriteForwardingRequested?: BooleanOptional;
|
|
2549
|
+
/**
|
|
2550
|
+
* Specifies that changes to the DB cluster are pending. This element is only included when changes are pending. Specific changes are identified by subelements.
|
|
2551
|
+
*/
|
|
2552
|
+
PendingModifiedValues?: ClusterPendingModifiedValues;
|
|
2530
2553
|
}
|
|
2531
2554
|
export interface DBClusterBacktrack {
|
|
2532
2555
|
/**
|
|
@@ -6432,31 +6455,31 @@ declare namespace RDS {
|
|
|
6432
6455
|
}
|
|
6433
6456
|
export interface PendingModifiedValues {
|
|
6434
6457
|
/**
|
|
6435
|
-
*
|
|
6458
|
+
* The name of the compute and memory capacity class for the DB instance.
|
|
6436
6459
|
*/
|
|
6437
6460
|
DBInstanceClass?: String;
|
|
6438
6461
|
/**
|
|
6439
|
-
*
|
|
6462
|
+
* The allocated storage size for the DB instance specified in gibibytes .
|
|
6440
6463
|
*/
|
|
6441
6464
|
AllocatedStorage?: IntegerOptional;
|
|
6442
6465
|
/**
|
|
6443
|
-
*
|
|
6466
|
+
* The master credentials for the DB instance.
|
|
6444
6467
|
*/
|
|
6445
6468
|
MasterUserPassword?: String;
|
|
6446
6469
|
/**
|
|
6447
|
-
*
|
|
6470
|
+
* The port for the DB instance.
|
|
6448
6471
|
*/
|
|
6449
6472
|
Port?: IntegerOptional;
|
|
6450
6473
|
/**
|
|
6451
|
-
*
|
|
6474
|
+
* The number of days for which automated backups are retained.
|
|
6452
6475
|
*/
|
|
6453
6476
|
BackupRetentionPeriod?: IntegerOptional;
|
|
6454
6477
|
/**
|
|
6455
|
-
* Indicates that the Single-AZ DB instance
|
|
6478
|
+
* Indicates that the Single-AZ DB instance will change to a Multi-AZ deployment.
|
|
6456
6479
|
*/
|
|
6457
6480
|
MultiAZ?: BooleanOptional;
|
|
6458
6481
|
/**
|
|
6459
|
-
*
|
|
6482
|
+
* The database engine version.
|
|
6460
6483
|
*/
|
|
6461
6484
|
EngineVersion?: String;
|
|
6462
6485
|
/**
|
|
@@ -6464,23 +6487,23 @@ declare namespace RDS {
|
|
|
6464
6487
|
*/
|
|
6465
6488
|
LicenseModel?: String;
|
|
6466
6489
|
/**
|
|
6467
|
-
*
|
|
6490
|
+
* The Provisioned IOPS value for the DB instance.
|
|
6468
6491
|
*/
|
|
6469
6492
|
Iops?: IntegerOptional;
|
|
6470
6493
|
/**
|
|
6471
|
-
*
|
|
6494
|
+
* The database identifier for the DB instance.
|
|
6472
6495
|
*/
|
|
6473
6496
|
DBInstanceIdentifier?: String;
|
|
6474
6497
|
/**
|
|
6475
|
-
*
|
|
6498
|
+
* The storage type of the DB instance.
|
|
6476
6499
|
*/
|
|
6477
6500
|
StorageType?: String;
|
|
6478
6501
|
/**
|
|
6479
|
-
*
|
|
6502
|
+
* The identifier of the CA certificate for the DB instance.
|
|
6480
6503
|
*/
|
|
6481
6504
|
CACertificateIdentifier?: String;
|
|
6482
6505
|
/**
|
|
6483
|
-
* The
|
|
6506
|
+
* The DB subnet group for the DB instance.
|
|
6484
6507
|
*/
|
|
6485
6508
|
DBSubnetGroupName?: String;
|
|
6486
6509
|
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
|
|
@@ -6488,6 +6511,10 @@ declare namespace RDS {
|
|
|
6488
6511
|
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.
|
|
6489
6512
|
*/
|
|
6490
6513
|
ProcessorFeatures?: ProcessorFeatureList;
|
|
6514
|
+
/**
|
|
6515
|
+
* Whether mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.
|
|
6516
|
+
*/
|
|
6517
|
+
IAMDatabaseAuthenticationEnabled?: BooleanOptional;
|
|
6491
6518
|
}
|
|
6492
6519
|
export interface ProcessorFeature {
|
|
6493
6520
|
/**
|
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
83
83
|
/**
|
|
84
84
|
* @constant
|
|
85
85
|
*/
|
|
86
|
-
VERSION: '2.
|
|
86
|
+
VERSION: '2.814.0',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @api private
|
|
@@ -397,6 +397,11 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
397
397
|
var section = line.match(/^\s*\[([^\[\]]+)\]\s*$/);
|
|
398
398
|
if (section) {
|
|
399
399
|
currentSection = section[1];
|
|
400
|
+
if (currentSection === '__proto__' || currentSection.split(/\s/)[1] === '__proto__') {
|
|
401
|
+
throw util.error(
|
|
402
|
+
new Error('Cannot load profile name \'' + currentSection + '\' from shared ini file.')
|
|
403
|
+
);
|
|
404
|
+
}
|
|
400
405
|
} else if (currentSection) {
|
|
401
406
|
var item = line.match(/^\s*(.+?)\s*=\s*(.+?)\s*$/);
|
|
402
407
|
if (item) {
|