aws-sdk 2.1111.0 → 2.1114.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 +16 -1
- package/README.md +1 -1
- package/apis/amplifyuibuilder-2021-08-11.min.json +9 -10
- package/apis/apprunner-2020-05-15.min.json +206 -44
- package/apis/apprunner-2020-05-15.paginators.json +5 -0
- package/apis/devops-guru-2020-12-01.min.json +147 -124
- package/apis/fsx-2018-03-01.paginators.json +4 -2
- package/apis/iottwinmaker-2021-11-29.min.json +75 -68
- package/apis/monitoring-2010-08-01.min.json +47 -11
- package/clients/amplifyuibuilder.d.ts +14 -9
- package/clients/apprunner.d.ts +194 -10
- package/clients/cloudwatch.d.ts +43 -11
- package/clients/devopsguru.d.ts +28 -12
- package/clients/ec2.d.ts +1 -1
- package/clients/efs.d.ts +40 -40
- package/clients/fsx.d.ts +7 -7
- package/clients/iottwinmaker.d.ts +15 -7
- package/clients/workspaces.d.ts +4 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +50 -14
- package/dist/aws-sdk.min.js +36 -36
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/fsx.d.ts
CHANGED
|
@@ -694,11 +694,11 @@ declare namespace FSx {
|
|
|
694
694
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
|
695
695
|
DailyAutomaticBackupStartTime?: DailyTime;
|
|
696
696
|
/**
|
|
697
|
-
* Specifies the FSx for ONTAP file system deployment type to use in creating the file system.
|
|
697
|
+
* Specifies the FSx for ONTAP file system deployment type to use in creating the file system. MULTI_AZ_1 - (Default) A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. SINGLE_AZ_1 - A file system configured for Single-AZ redundancy. For information about the use cases for Multi-AZ and Single-AZ deployments, refer to Choosing Multi-AZ or Single-AZ file system deployment.
|
|
698
698
|
*/
|
|
699
699
|
DeploymentType: OntapDeploymentType;
|
|
700
700
|
/**
|
|
701
|
-
* Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range. The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger.
|
|
701
|
+
* (Multi-AZ only) Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range. The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger.
|
|
702
702
|
*/
|
|
703
703
|
EndpointIpAddressRange?: IpAddressRange;
|
|
704
704
|
/**
|
|
@@ -714,7 +714,7 @@ declare namespace FSx {
|
|
|
714
714
|
*/
|
|
715
715
|
PreferredSubnetId?: SubnetId;
|
|
716
716
|
/**
|
|
717
|
-
* Specifies the virtual private cloud (VPC) route tables in which your file system's endpoints will be created. You should specify all VPC route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table.
|
|
717
|
+
* (Multi-AZ only) Specifies the virtual private cloud (VPC) route tables in which your file system's endpoints will be created. You should specify all VPC route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table.
|
|
718
718
|
*/
|
|
719
719
|
RouteTableIds?: RouteTableIds;
|
|
720
720
|
/**
|
|
@@ -1824,17 +1824,17 @@ declare namespace FSx {
|
|
|
1824
1824
|
export type NetworkInterfaceId = string;
|
|
1825
1825
|
export type NetworkInterfaceIds = NetworkInterfaceId[];
|
|
1826
1826
|
export type NextToken = string;
|
|
1827
|
-
export type OntapDeploymentType = "MULTI_AZ_1"|string;
|
|
1827
|
+
export type OntapDeploymentType = "MULTI_AZ_1"|"SINGLE_AZ_1"|string;
|
|
1828
1828
|
export type OntapEndpointIpAddresses = IpAddress[];
|
|
1829
1829
|
export interface OntapFileSystemConfiguration {
|
|
1830
1830
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
|
1831
1831
|
DailyAutomaticBackupStartTime?: DailyTime;
|
|
1832
1832
|
/**
|
|
1833
|
-
*
|
|
1833
|
+
* Specifies the FSx for ONTAP file system deployment type in use in the file system. MULTI_AZ_1 - (Default) A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. SINGLE_AZ_1 - A file system configured for Single-AZ redundancy. For information about the use cases for Multi-AZ and Single-AZ deployments, refer to Choosing Multi-AZ or Single-AZ file system deployment.
|
|
1834
1834
|
*/
|
|
1835
1835
|
DeploymentType?: OntapDeploymentType;
|
|
1836
1836
|
/**
|
|
1837
|
-
* The IP address range in which the endpoints to access your file system are created. The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger. If you do not specify this optional parameter, Amazon FSx will automatically select a CIDR block for you.
|
|
1837
|
+
* (Multi-AZ only) The IP address range in which the endpoints to access your file system are created. The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger. If you do not specify this optional parameter, Amazon FSx will automatically select a CIDR block for you.
|
|
1838
1838
|
*/
|
|
1839
1839
|
EndpointIpAddressRange?: IpAddressRange;
|
|
1840
1840
|
/**
|
|
@@ -1847,7 +1847,7 @@ declare namespace FSx {
|
|
|
1847
1847
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
1848
1848
|
PreferredSubnetId?: SubnetId;
|
|
1849
1849
|
/**
|
|
1850
|
-
* The VPC route tables in which your file system's endpoints are created.
|
|
1850
|
+
* (Multi-AZ only) The VPC route tables in which your file system's endpoints are created.
|
|
1851
1851
|
*/
|
|
1852
1852
|
RouteTableIds?: RouteTableIds;
|
|
1853
1853
|
ThroughputCapacity?: MegabytesPerSecond;
|
|
@@ -20,11 +20,11 @@ declare class IoTTwinMaker extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
batchPutPropertyValues(callback?: (err: AWSError, data: IoTTwinMaker.Types.BatchPutPropertyValuesResponse) => void): Request<IoTTwinMaker.Types.BatchPutPropertyValuesResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Creates a component type.
|
|
23
|
+
* Creates a component type.
|
|
24
24
|
*/
|
|
25
25
|
createComponentType(params: IoTTwinMaker.Types.CreateComponentTypeRequest, callback?: (err: AWSError, data: IoTTwinMaker.Types.CreateComponentTypeResponse) => void): Request<IoTTwinMaker.Types.CreateComponentTypeResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Creates a component type.
|
|
27
|
+
* Creates a component type.
|
|
28
28
|
*/
|
|
29
29
|
createComponentType(callback?: (err: AWSError, data: IoTTwinMaker.Types.CreateComponentTypeResponse) => void): Request<IoTTwinMaker.Types.CreateComponentTypeResponse, AWSError>;
|
|
30
30
|
/**
|
|
@@ -515,7 +515,7 @@ declare namespace IoTTwinMaker {
|
|
|
515
515
|
}
|
|
516
516
|
export interface DataConnector {
|
|
517
517
|
/**
|
|
518
|
-
* A Boolean value that specifies whether the data connector is native to TwinMaker.
|
|
518
|
+
* A Boolean value that specifies whether the data connector is native to IoT TwinMaker.
|
|
519
519
|
*/
|
|
520
520
|
isNative?: Boolean;
|
|
521
521
|
/**
|
|
@@ -886,7 +886,8 @@ declare namespace IoTTwinMaker {
|
|
|
886
886
|
/**
|
|
887
887
|
* The date and time of the latest property value to return.
|
|
888
888
|
*/
|
|
889
|
-
endDateTime
|
|
889
|
+
endDateTime?: Timestamp;
|
|
890
|
+
endTime?: Time;
|
|
890
891
|
/**
|
|
891
892
|
* The ID of the entity.
|
|
892
893
|
*/
|
|
@@ -918,7 +919,8 @@ declare namespace IoTTwinMaker {
|
|
|
918
919
|
/**
|
|
919
920
|
* The date and time of the earliest property value to return.
|
|
920
921
|
*/
|
|
921
|
-
startDateTime
|
|
922
|
+
startDateTime?: Timestamp;
|
|
923
|
+
startTime?: Time;
|
|
922
924
|
/**
|
|
923
925
|
* The ID of the workspace.
|
|
924
926
|
*/
|
|
@@ -1120,6 +1122,10 @@ declare namespace IoTTwinMaker {
|
|
|
1120
1122
|
* The ID of the component type in the entities in the list.
|
|
1121
1123
|
*/
|
|
1122
1124
|
componentTypeId?: ComponentTypeId;
|
|
1125
|
+
/**
|
|
1126
|
+
* The external-Id property of a component. The external-Id property is the primary key of an external storage system.
|
|
1127
|
+
*/
|
|
1128
|
+
externalId?: String;
|
|
1123
1129
|
/**
|
|
1124
1130
|
* The parent of the entities in the list.
|
|
1125
1131
|
*/
|
|
@@ -1365,12 +1371,13 @@ declare namespace IoTTwinMaker {
|
|
|
1365
1371
|
value?: DataValue;
|
|
1366
1372
|
}
|
|
1367
1373
|
export type PropertyResponses = {[key: string]: PropertyResponse};
|
|
1368
|
-
export type PropertyUpdateType = "UPDATE"|"DELETE"|string;
|
|
1374
|
+
export type PropertyUpdateType = "UPDATE"|"DELETE"|"CREATE"|string;
|
|
1369
1375
|
export interface PropertyValue {
|
|
1376
|
+
time?: Time;
|
|
1370
1377
|
/**
|
|
1371
1378
|
* The timestamp of a value for a time series property.
|
|
1372
1379
|
*/
|
|
1373
|
-
timestamp
|
|
1380
|
+
timestamp?: Timestamp;
|
|
1374
1381
|
/**
|
|
1375
1382
|
* An object that specifies a value for a time series property.
|
|
1376
1383
|
*/
|
|
@@ -1481,6 +1488,7 @@ declare namespace IoTTwinMaker {
|
|
|
1481
1488
|
export interface TagResourceResponse {
|
|
1482
1489
|
}
|
|
1483
1490
|
export type TagValue = string;
|
|
1491
|
+
export type Time = string;
|
|
1484
1492
|
export type Timestamp = Date;
|
|
1485
1493
|
export type TwinMakerArn = string;
|
|
1486
1494
|
export type Type = "RELATIONSHIP"|"STRING"|"LONG"|"BOOLEAN"|"INTEGER"|"DOUBLE"|"LIST"|"MAP"|string;
|
package/clients/workspaces.d.ts
CHANGED
|
@@ -606,7 +606,7 @@ declare namespace WorkSpaces {
|
|
|
606
606
|
ClientProperties?: ClientProperties;
|
|
607
607
|
}
|
|
608
608
|
export type ClientUrl = string;
|
|
609
|
-
export type Compute = "VALUE"|"STANDARD"|"PERFORMANCE"|"POWER"|"GRAPHICS"|"POWERPRO"|"GRAPHICSPRO"|string;
|
|
609
|
+
export type Compute = "VALUE"|"STANDARD"|"PERFORMANCE"|"POWER"|"GRAPHICS"|"POWERPRO"|"GRAPHICSPRO"|"GRAPHICS_G4DN"|"GRAPHICSPRO_G4DN"|string;
|
|
610
610
|
export interface ComputeType {
|
|
611
611
|
/**
|
|
612
612
|
* The compute type.
|
|
@@ -1505,7 +1505,7 @@ declare namespace WorkSpaces {
|
|
|
1505
1505
|
*/
|
|
1506
1506
|
Ec2ImageId: Ec2ImageId;
|
|
1507
1507
|
/**
|
|
1508
|
-
* The ingestion process to be used when importing the image, depending on which protocol you want to use for your BYOL Workspace image, either PCoIP or WorkSpaces Streaming Protocol (WSP). To use WSP, specify a value that ends in _WSP. To use PCoIP, specify a value that does not end in _WSP. For non-GPU-enabled
|
|
1508
|
+
* The ingestion process to be used when importing the image, depending on which protocol you want to use for your BYOL Workspace image, either PCoIP or WorkSpaces Streaming Protocol (WSP). To use WSP, specify a value that ends in _WSP. To use PCoIP, specify a value that does not end in _WSP. For non-GPU-enabled images (bundles other than Graphics.g4dn, GraphicsPro.g4dn, Graphics, or GraphicsPro), specify BYOL_REGULAR or BYOL_REGULAR_WSP, depending on the protocol. Use BYOL_GRAPHICS_G4DN ingestion for both Graphics.g4dn and GraphicsPro.g4dn.
|
|
1509
1509
|
*/
|
|
1510
1510
|
IngestionProcess: WorkspaceImageIngestionProcess;
|
|
1511
1511
|
/**
|
|
@@ -1521,7 +1521,7 @@ declare namespace WorkSpaces {
|
|
|
1521
1521
|
*/
|
|
1522
1522
|
Tags?: TagList;
|
|
1523
1523
|
/**
|
|
1524
|
-
* If specified, the version of Microsoft Office to subscribe to. Valid only for Windows 10 BYOL images. For more information about subscribing to Office for BYOL images, see Bring Your Own Windows Desktop Licenses.
|
|
1524
|
+
* If specified, the version of Microsoft Office to subscribe to. Valid only for Windows 10 BYOL images. For more information about subscribing to Office for BYOL images, see Bring Your Own Windows Desktop Licenses. Although this parameter is an array, only one item is allowed at this time Microsoft Office 2016 application subscription through AWS is currently not supported for Graphics.g4dn Bring Your Own License (BYOL) images
|
|
1525
1525
|
*/
|
|
1526
1526
|
Applications?: ApplicationList;
|
|
1527
1527
|
}
|
|
@@ -2370,7 +2370,7 @@ declare namespace WorkSpaces {
|
|
|
2370
2370
|
export type WorkspaceImageErrorCode = string;
|
|
2371
2371
|
export type WorkspaceImageId = string;
|
|
2372
2372
|
export type WorkspaceImageIdList = WorkspaceImageId[];
|
|
2373
|
-
export type WorkspaceImageIngestionProcess = "BYOL_REGULAR"|"BYOL_GRAPHICS"|"BYOL_GRAPHICSPRO"|"BYOL_REGULAR_WSP"|string;
|
|
2373
|
+
export type WorkspaceImageIngestionProcess = "BYOL_REGULAR"|"BYOL_GRAPHICS"|"BYOL_GRAPHICSPRO"|"BYOL_GRAPHICS_G4DN"|"BYOL_REGULAR_WSP"|string;
|
|
2374
2374
|
export type WorkspaceImageList = WorkspaceImage[];
|
|
2375
2375
|
export type WorkspaceImageName = string;
|
|
2376
2376
|
export type WorkspaceImageRequiredTenancy = "DEFAULT"|"DEDICATED"|string;
|