aws-sdk 2.28.0 → 2.32.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/.changes/2.29.0.json +27 -0
- package/.changes/2.30.0.json +12 -0
- package/.changes/2.31.0.json +27 -0
- package/.changes/2.32.0.json +12 -0
- package/CHANGELOG.md +23 -1
- package/README.md +1 -1
- package/apis/application-autoscaling-2016-02-06.paginators.json +8 -8
- package/apis/cloudtrail-2013-11-01.min.json +7 -0
- package/apis/directconnect-2012-10-25.min.json +8 -4
- package/apis/discovery-2015-11-01.min.json +73 -25
- package/apis/discovery-2015-11-01.paginators.json +4 -0
- package/apis/elasticloadbalancingv2-2015-12-01.waiters2.json +46 -0
- package/apis/lambda-2015-03-31.paginators.json +3 -3
- package/apis/marketplacecommerceanalytics-2015-07-01.paginators.json +4 -0
- package/apis/pinpoint-2016-12-01.min.json +177 -52
- package/clients/applicationautoscaling.d.ts +22 -22
- package/clients/cloudtrail.d.ts +9 -3
- package/clients/codebuild.d.ts +1 -1
- package/clients/discovery.d.ts +104 -50
- package/clients/discovery.js +1 -0
- package/clients/elbv2.d.ts +16 -0
- package/clients/elbv2.js +1 -0
- package/clients/lambda.d.ts +1 -1
- package/clients/marketplacecommerceanalytics.d.ts +2 -2
- package/clients/marketplacecommerceanalytics.js +1 -0
- package/clients/pinpoint.d.ts +145 -13
- package/clients/rekognition.d.ts +4 -4
- package/codecov.yml +9 -0
- package/dist/aws-sdk.js +498 -360
- package/dist/aws-sdk.min.js +42 -42
- package/lib/config.js +8 -7
- package/lib/core.js +1 -1
- package/lib/dynamodb/converter.js +35 -10
- package/lib/model/shape.js +13 -10
- package/lib/param_validator.js +5 -1
- package/lib/protocol/rest.js +7 -1
- package/lib/resource_waiter.js +12 -1
- package/lib/s3/managed_upload.d.ts +14 -10
- package/lib/s3/managed_upload.js +44 -3
- package/lib/service.d.ts +14 -1
- package/lib/service.js +6 -1
- package/lib/services/dynamodb.js +6 -1
- package/lib/services/s3.js +36 -10
- package/lib/signers/v4_credentials.js +2 -2
- package/lib/util.js +1 -1
- package/package.json +4 -4
package/clients/cloudtrail.d.ts
CHANGED
|
@@ -318,7 +318,7 @@ declare namespace CloudTrail {
|
|
|
318
318
|
/**
|
|
319
319
|
* Specifies the name of the trail or trail ARN. If you specify a trail name, the string must meet the following requirements: Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-) Start with a letter or number, and end with a letter or number Be between 3 and 128 characters Have no adjacent periods, underscores or dashes. Names like my-_namespace and my--namespace are invalid. Not be in IP address format (for example, 192.168.5.4) If you specify a trail ARN, it must be in the format: arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail
|
|
320
320
|
*/
|
|
321
|
-
TrailName
|
|
321
|
+
TrailName: String;
|
|
322
322
|
}
|
|
323
323
|
export interface GetEventSelectorsResponse {
|
|
324
324
|
/**
|
|
@@ -441,6 +441,9 @@ declare namespace CloudTrail {
|
|
|
441
441
|
NextToken?: String;
|
|
442
442
|
}
|
|
443
443
|
export interface ListTagsResponse {
|
|
444
|
+
/**
|
|
445
|
+
* A list of resource tags.
|
|
446
|
+
*/
|
|
444
447
|
ResourceTagList?: ResourceTagList;
|
|
445
448
|
/**
|
|
446
449
|
* Reserved for future use.
|
|
@@ -516,11 +519,11 @@ declare namespace CloudTrail {
|
|
|
516
519
|
/**
|
|
517
520
|
* Specifies the name of the trail or trail ARN. If you specify a trail name, the string must meet the following requirements: Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-) Start with a letter or number, and end with a letter or number Be between 3 and 128 characters Have no adjacent periods, underscores or dashes. Names like my-_namespace and my--namespace are invalid. Not be in IP address format (for example, 192.168.5.4) If you specify a trail ARN, it must be in the format: arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail
|
|
518
521
|
*/
|
|
519
|
-
TrailName
|
|
522
|
+
TrailName: String;
|
|
520
523
|
/**
|
|
521
524
|
* Specifies the settings for your event selectors. You can configure up to five event selectors for a trail.
|
|
522
525
|
*/
|
|
523
|
-
EventSelectors
|
|
526
|
+
EventSelectors: EventSelectors;
|
|
524
527
|
}
|
|
525
528
|
export interface PutEventSelectorsResponse {
|
|
526
529
|
/**
|
|
@@ -562,6 +565,9 @@ declare namespace CloudTrail {
|
|
|
562
565
|
* Specifies the ARN of the resource.
|
|
563
566
|
*/
|
|
564
567
|
ResourceId?: String;
|
|
568
|
+
/**
|
|
569
|
+
* A list of tags.
|
|
570
|
+
*/
|
|
565
571
|
TagsList?: TagsList;
|
|
566
572
|
}
|
|
567
573
|
export type ResourceTagList = ResourceTag[];
|
package/clients/codebuild.d.ts
CHANGED
|
@@ -554,7 +554,7 @@ declare namespace CodeBuild {
|
|
|
554
554
|
*/
|
|
555
555
|
type: SourceType;
|
|
556
556
|
/**
|
|
557
|
-
* Information about the location of the source code to be built. Valid values include: For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline will ignore it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value. For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the build spec (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ). For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, the path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip) For source code in a GitHub repository,
|
|
557
|
+
* Information about the location of the source code to be built. Valid values include: For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline will ignore it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value. For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the build spec (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ). For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, the path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip) For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the build spec. Also, you must connect your AWS account to your GitHub account. To do this, use the AWS CodeBuild console to begin creating a build project, and follow the on-screen instructions to complete the connection. (After you have connected to your GitHub account, you do not need to finish creating the build project, and you may then leave the AWS CodeBuild console.) To instruct AWS CodeBuild to then use this connection, in the source object, set the auth object's type value to OAUTH.
|
|
558
558
|
*/
|
|
559
559
|
location?: String;
|
|
560
560
|
/**
|
package/clients/discovery.d.ts
CHANGED
|
@@ -60,21 +60,29 @@ declare class Discovery extends Service {
|
|
|
60
60
|
*/
|
|
61
61
|
describeAgents(callback?: (err: AWSError, data: Discovery.Types.DescribeAgentsResponse) => void): Request<Discovery.Types.DescribeAgentsResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Retrieves attributes for a list of configuration item IDs. All of the supplied IDs must be for the same asset type (server, application, process, or connection). Output fields are specific to the asset type selected. For example, the output for a server configuration item includes a list of attributes about the server, such as host name, operating system, and number of network cards. For a complete list of outputs for each asset type, see
|
|
63
|
+
* Retrieves attributes for a list of configuration item IDs. All of the supplied IDs must be for the same asset type (server, application, process, or connection). Output fields are specific to the asset type selected. For example, the output for a server configuration item includes a list of attributes about the server, such as host name, operating system, and number of network cards. For a complete list of outputs for each asset type, see Using the DescribeConfigurations Action.
|
|
64
64
|
*/
|
|
65
65
|
describeConfigurations(params: Discovery.Types.DescribeConfigurationsRequest, callback?: (err: AWSError, data: Discovery.Types.DescribeConfigurationsResponse) => void): Request<Discovery.Types.DescribeConfigurationsResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Retrieves attributes for a list of configuration item IDs. All of the supplied IDs must be for the same asset type (server, application, process, or connection). Output fields are specific to the asset type selected. For example, the output for a server configuration item includes a list of attributes about the server, such as host name, operating system, and number of network cards. For a complete list of outputs for each asset type, see
|
|
67
|
+
* Retrieves attributes for a list of configuration item IDs. All of the supplied IDs must be for the same asset type (server, application, process, or connection). Output fields are specific to the asset type selected. For example, the output for a server configuration item includes a list of attributes about the server, such as host name, operating system, and number of network cards. For a complete list of outputs for each asset type, see Using the DescribeConfigurations Action.
|
|
68
68
|
*/
|
|
69
69
|
describeConfigurations(callback?: (err: AWSError, data: Discovery.Types.DescribeConfigurationsResponse) => void): Request<Discovery.Types.DescribeConfigurationsResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Retrieves the status of a given export process. You can retrieve status from a maximum of 100 processes.
|
|
71
|
+
* Deprecated. Use DescribeExportTasks instead. Retrieves the status of a given export process. You can retrieve status from a maximum of 100 processes.
|
|
72
72
|
*/
|
|
73
73
|
describeExportConfigurations(params: Discovery.Types.DescribeExportConfigurationsRequest, callback?: (err: AWSError, data: Discovery.Types.DescribeExportConfigurationsResponse) => void): Request<Discovery.Types.DescribeExportConfigurationsResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Retrieves the status of a given export process. You can retrieve status from a maximum of 100 processes.
|
|
75
|
+
* Deprecated. Use DescribeExportTasks instead. Retrieves the status of a given export process. You can retrieve status from a maximum of 100 processes.
|
|
76
76
|
*/
|
|
77
77
|
describeExportConfigurations(callback?: (err: AWSError, data: Discovery.Types.DescribeExportConfigurationsResponse) => void): Request<Discovery.Types.DescribeExportConfigurationsResponse, AWSError>;
|
|
78
|
+
/**
|
|
79
|
+
* Retrieve status of one or more export tasks. You can retrieve the status of up to 100 export tasks.
|
|
80
|
+
*/
|
|
81
|
+
describeExportTasks(params: Discovery.Types.DescribeExportTasksRequest, callback?: (err: AWSError, data: Discovery.Types.DescribeExportTasksResponse) => void): Request<Discovery.Types.DescribeExportTasksResponse, AWSError>;
|
|
82
|
+
/**
|
|
83
|
+
* Retrieve status of one or more export tasks. You can retrieve the status of up to 100 export tasks.
|
|
84
|
+
*/
|
|
85
|
+
describeExportTasks(callback?: (err: AWSError, data: Discovery.Types.DescribeExportTasksResponse) => void): Request<Discovery.Types.DescribeExportTasksResponse, AWSError>;
|
|
78
86
|
/**
|
|
79
87
|
* Retrieves a list of configuration items that are tagged with a specific tag. Or retrieves a list of all tags assigned to a specific configuration item.
|
|
80
88
|
*/
|
|
@@ -92,7 +100,7 @@ declare class Discovery extends Service {
|
|
|
92
100
|
*/
|
|
93
101
|
disassociateConfigurationItemsFromApplication(callback?: (err: AWSError, data: Discovery.Types.DisassociateConfigurationItemsFromApplicationResponse) => void): Request<Discovery.Types.DisassociateConfigurationItemsFromApplicationResponse, AWSError>;
|
|
94
102
|
/**
|
|
95
|
-
* Exports all discovered configuration data to an Amazon S3 bucket or an application that enables you to view and evaluate the data. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID
|
|
103
|
+
* Deprecated. Use StartExportTask instead. Exports all discovered configuration data to an Amazon S3 bucket or an application that enables you to view and evaluate the data. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID that you can query using the DescribeExportConfigurations API. The system imposes a limit of two configuration exports in six hours.
|
|
96
104
|
*/
|
|
97
105
|
exportConfigurations(callback?: (err: AWSError, data: Discovery.Types.ExportConfigurationsResponse) => void): Request<Discovery.Types.ExportConfigurationsResponse, AWSError>;
|
|
98
106
|
/**
|
|
@@ -104,35 +112,43 @@ declare class Discovery extends Service {
|
|
|
104
112
|
*/
|
|
105
113
|
getDiscoverySummary(callback?: (err: AWSError, data: Discovery.Types.GetDiscoverySummaryResponse) => void): Request<Discovery.Types.GetDiscoverySummaryResponse, AWSError>;
|
|
106
114
|
/**
|
|
107
|
-
* Retrieves a list of configuration items according to criteria you specify in a filter. The filter criteria
|
|
115
|
+
* Retrieves a list of configuration items according to criteria that you specify in a filter. The filter criteria identifies the relationship requirements.
|
|
108
116
|
*/
|
|
109
117
|
listConfigurations(params: Discovery.Types.ListConfigurationsRequest, callback?: (err: AWSError, data: Discovery.Types.ListConfigurationsResponse) => void): Request<Discovery.Types.ListConfigurationsResponse, AWSError>;
|
|
110
118
|
/**
|
|
111
|
-
* Retrieves a list of configuration items according to criteria you specify in a filter. The filter criteria
|
|
119
|
+
* Retrieves a list of configuration items according to criteria that you specify in a filter. The filter criteria identifies the relationship requirements.
|
|
112
120
|
*/
|
|
113
121
|
listConfigurations(callback?: (err: AWSError, data: Discovery.Types.ListConfigurationsResponse) => void): Request<Discovery.Types.ListConfigurationsResponse, AWSError>;
|
|
114
122
|
/**
|
|
115
|
-
* Retrieves a list of servers
|
|
123
|
+
* Retrieves a list of servers that are one network hop away from a specified server.
|
|
116
124
|
*/
|
|
117
125
|
listServerNeighbors(params: Discovery.Types.ListServerNeighborsRequest, callback?: (err: AWSError, data: Discovery.Types.ListServerNeighborsResponse) => void): Request<Discovery.Types.ListServerNeighborsResponse, AWSError>;
|
|
118
126
|
/**
|
|
119
|
-
* Retrieves a list of servers
|
|
127
|
+
* Retrieves a list of servers that are one network hop away from a specified server.
|
|
120
128
|
*/
|
|
121
129
|
listServerNeighbors(callback?: (err: AWSError, data: Discovery.Types.ListServerNeighborsResponse) => void): Request<Discovery.Types.ListServerNeighborsResponse, AWSError>;
|
|
122
130
|
/**
|
|
123
|
-
* Instructs the specified agents or
|
|
131
|
+
* Instructs the specified agents or connectors to start collecting data.
|
|
124
132
|
*/
|
|
125
133
|
startDataCollectionByAgentIds(params: Discovery.Types.StartDataCollectionByAgentIdsRequest, callback?: (err: AWSError, data: Discovery.Types.StartDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StartDataCollectionByAgentIdsResponse, AWSError>;
|
|
126
134
|
/**
|
|
127
|
-
* Instructs the specified agents or
|
|
135
|
+
* Instructs the specified agents or connectors to start collecting data.
|
|
128
136
|
*/
|
|
129
137
|
startDataCollectionByAgentIds(callback?: (err: AWSError, data: Discovery.Types.StartDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StartDataCollectionByAgentIdsResponse, AWSError>;
|
|
130
138
|
/**
|
|
131
|
-
*
|
|
139
|
+
* Export the configuration data about discovered configuration items and relationships to an S3 bucket in a specified format.
|
|
140
|
+
*/
|
|
141
|
+
startExportTask(params: Discovery.Types.StartExportTaskRequest, callback?: (err: AWSError, data: Discovery.Types.StartExportTaskResponse) => void): Request<Discovery.Types.StartExportTaskResponse, AWSError>;
|
|
142
|
+
/**
|
|
143
|
+
* Export the configuration data about discovered configuration items and relationships to an S3 bucket in a specified format.
|
|
144
|
+
*/
|
|
145
|
+
startExportTask(callback?: (err: AWSError, data: Discovery.Types.StartExportTaskResponse) => void): Request<Discovery.Types.StartExportTaskResponse, AWSError>;
|
|
146
|
+
/**
|
|
147
|
+
* Instructs the specified agents or connectors to stop collecting data.
|
|
132
148
|
*/
|
|
133
149
|
stopDataCollectionByAgentIds(params: Discovery.Types.StopDataCollectionByAgentIdsRequest, callback?: (err: AWSError, data: Discovery.Types.StopDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StopDataCollectionByAgentIdsResponse, AWSError>;
|
|
134
150
|
/**
|
|
135
|
-
* Instructs the specified agents or
|
|
151
|
+
* Instructs the specified agents or connectors to stop collecting data.
|
|
136
152
|
*/
|
|
137
153
|
stopDataCollectionByAgentIds(callback?: (err: AWSError, data: Discovery.Types.StopDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StopDataCollectionByAgentIdsResponse, AWSError>;
|
|
138
154
|
/**
|
|
@@ -147,11 +163,11 @@ declare class Discovery extends Service {
|
|
|
147
163
|
declare namespace Discovery {
|
|
148
164
|
export interface AgentConfigurationStatus {
|
|
149
165
|
/**
|
|
150
|
-
* The agent/
|
|
166
|
+
* The agent/connector ID.
|
|
151
167
|
*/
|
|
152
168
|
agentId?: String;
|
|
153
169
|
/**
|
|
154
|
-
* Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent/
|
|
170
|
+
* Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent/connector receives this command the next time it polls for a new command.
|
|
155
171
|
*/
|
|
156
172
|
operationSucceeded?: Boolean;
|
|
157
173
|
/**
|
|
@@ -200,17 +216,17 @@ declare namespace Discovery {
|
|
|
200
216
|
*/
|
|
201
217
|
agentType?: String;
|
|
202
218
|
/**
|
|
203
|
-
* Agent's first registration
|
|
219
|
+
* Agent's first registration timestamp in UTC.
|
|
204
220
|
*/
|
|
205
221
|
registeredTime?: String;
|
|
206
222
|
}
|
|
207
223
|
export interface AgentNetworkInfo {
|
|
208
224
|
/**
|
|
209
|
-
* The IP address for the host where the agent/
|
|
225
|
+
* The IP address for the host where the agent/connector resides.
|
|
210
226
|
*/
|
|
211
227
|
ipAddress?: String;
|
|
212
228
|
/**
|
|
213
|
-
* The MAC address for the host where the agent/
|
|
229
|
+
* The MAC address for the host where the agent/connector resides.
|
|
214
230
|
*/
|
|
215
231
|
macAddress?: String;
|
|
216
232
|
}
|
|
@@ -240,19 +256,19 @@ declare namespace Discovery {
|
|
|
240
256
|
export type ConfigurationItemType = "SERVER"|"PROCESS"|"CONNECTION"|"APPLICATION"|string;
|
|
241
257
|
export interface ConfigurationTag {
|
|
242
258
|
/**
|
|
243
|
-
* A type of IT asset
|
|
259
|
+
* A type of IT asset to tag.
|
|
244
260
|
*/
|
|
245
261
|
configurationType?: ConfigurationItemType;
|
|
246
262
|
/**
|
|
247
|
-
* The configuration ID for the item
|
|
263
|
+
* The configuration ID for the item to tag. You can specify a list of keys and values.
|
|
248
264
|
*/
|
|
249
265
|
configurationId?: ConfigurationId;
|
|
250
266
|
/**
|
|
251
|
-
* A type of tag to filter
|
|
267
|
+
* A type of tag on which to filter. For example, serverType.
|
|
252
268
|
*/
|
|
253
269
|
key?: TagKey;
|
|
254
270
|
/**
|
|
255
|
-
* A value to filter
|
|
271
|
+
* A value on which to filter. For example key = serverType and value = web server.
|
|
256
272
|
*/
|
|
257
273
|
value?: TagValue;
|
|
258
274
|
/**
|
|
@@ -378,7 +394,7 @@ declare namespace Discovery {
|
|
|
378
394
|
*/
|
|
379
395
|
agentIds?: AgentIds;
|
|
380
396
|
/**
|
|
381
|
-
* You can filter the request using various logical operators and a key-value format. For example: {"key": "collectionStatus", "value": "STARTED"}
|
|
397
|
+
* You can filter the request using various logical operators and a key-value format. For example: {"key": "collectionStatus", "value": "STARTED"}
|
|
382
398
|
*/
|
|
383
399
|
filters?: Filters;
|
|
384
400
|
/**
|
|
@@ -424,7 +440,7 @@ declare namespace Discovery {
|
|
|
424
440
|
*/
|
|
425
441
|
maxResults?: Integer;
|
|
426
442
|
/**
|
|
427
|
-
* A token to get the next set of results. For example, if you
|
|
443
|
+
* A token to get the next set of results. For example, if you specify 100 IDs for DescribeExportConfigurationsRequest$exportIds but set DescribeExportConfigurationsRequest$maxResults to 10, you get results in a set of 10. Use the token in the query to get the next set of 10.
|
|
428
444
|
*/
|
|
429
445
|
nextToken?: NextToken;
|
|
430
446
|
}
|
|
@@ -434,13 +450,37 @@ declare namespace Discovery {
|
|
|
434
450
|
*/
|
|
435
451
|
exportsInfo?: ExportsInfo;
|
|
436
452
|
/**
|
|
437
|
-
* A token to get the next set of results. For example, if you
|
|
453
|
+
* A token to get the next set of results. For example, if you specify 100 IDs for DescribeExportConfigurationsRequest$exportIds but set DescribeExportConfigurationsRequest$maxResults to 10, you get results in a set of 10. Use the token in the query to get the next set of 10.
|
|
454
|
+
*/
|
|
455
|
+
nextToken?: NextToken;
|
|
456
|
+
}
|
|
457
|
+
export interface DescribeExportTasksRequest {
|
|
458
|
+
/**
|
|
459
|
+
* One or more unique identifiers used to query the status of an export request.
|
|
460
|
+
*/
|
|
461
|
+
exportIds?: ExportIds;
|
|
462
|
+
/**
|
|
463
|
+
* The maximum number of volume results returned by DescribeExportTasks in paginated output. When this parameter is used, DescribeExportTasks only returns maxResults results in a single page along with a nextToken response element.
|
|
464
|
+
*/
|
|
465
|
+
maxResults?: Integer;
|
|
466
|
+
/**
|
|
467
|
+
* The nextToken value returned from a previous paginated DescribeExportTasks request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.
|
|
468
|
+
*/
|
|
469
|
+
nextToken?: NextToken;
|
|
470
|
+
}
|
|
471
|
+
export interface DescribeExportTasksResponse {
|
|
472
|
+
/**
|
|
473
|
+
* Contains one or more sets of export request details. When the status of a request is SUCCEEDED, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.
|
|
474
|
+
*/
|
|
475
|
+
exportsInfo?: ExportsInfo;
|
|
476
|
+
/**
|
|
477
|
+
* The nextToken value to include in a future DescribeExportTasks request. When the results of a DescribeExportTasks request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
|
|
438
478
|
*/
|
|
439
479
|
nextToken?: NextToken;
|
|
440
480
|
}
|
|
441
481
|
export interface DescribeTagsRequest {
|
|
442
482
|
/**
|
|
443
|
-
* You can filter the list using a key-value format. You can separate these items by using logical operators. Allowed filters include tagKey, tagValue, and configurationId.
|
|
483
|
+
* You can filter the list using a key-value format. You can separate these items by using logical operators. Allowed filters include tagKey, tagValue, and configurationId.
|
|
444
484
|
*/
|
|
445
485
|
filters?: TagFilters;
|
|
446
486
|
/**
|
|
@@ -464,11 +504,11 @@ declare namespace Discovery {
|
|
|
464
504
|
}
|
|
465
505
|
export interface DisassociateConfigurationItemsFromApplicationRequest {
|
|
466
506
|
/**
|
|
467
|
-
* Configuration ID of an application from which each item
|
|
507
|
+
* Configuration ID of an application from which each item is disassociated.
|
|
468
508
|
*/
|
|
469
509
|
applicationConfigurationId: ApplicationId;
|
|
470
510
|
/**
|
|
471
|
-
* Configuration ID of each item
|
|
511
|
+
* Configuration ID of each item to be disassociated from an application.
|
|
472
512
|
*/
|
|
473
513
|
configurationIds: ConfigurationIdList;
|
|
474
514
|
}
|
|
@@ -480,6 +520,8 @@ declare namespace Discovery {
|
|
|
480
520
|
*/
|
|
481
521
|
exportId?: ConfigurationsExportId;
|
|
482
522
|
}
|
|
523
|
+
export type ExportDataFormat = "CSV"|"GRAPHML"|string;
|
|
524
|
+
export type ExportDataFormats = ExportDataFormat[];
|
|
483
525
|
export type ExportIds = ConfigurationsExportId[];
|
|
484
526
|
export interface ExportInfo {
|
|
485
527
|
/**
|
|
@@ -499,7 +541,7 @@ declare namespace Discovery {
|
|
|
499
541
|
*/
|
|
500
542
|
configurationsDownloadUrl?: ConfigurationsDownloadUrl;
|
|
501
543
|
/**
|
|
502
|
-
* The time the configuration data export was initiated.
|
|
544
|
+
* The time that the configuration data export was initiated.
|
|
503
545
|
*/
|
|
504
546
|
exportRequestTime: ExportRequestTime;
|
|
505
547
|
}
|
|
@@ -513,7 +555,7 @@ declare namespace Discovery {
|
|
|
513
555
|
*/
|
|
514
556
|
name: String;
|
|
515
557
|
/**
|
|
516
|
-
* A string value
|
|
558
|
+
* A string value on which to filter. For example, if you choose the destinationServer.osVersion filter name, you could specify Ubuntu for the value.
|
|
517
559
|
*/
|
|
518
560
|
values: FilterValues;
|
|
519
561
|
/**
|
|
@@ -529,19 +571,19 @@ declare namespace Discovery {
|
|
|
529
571
|
}
|
|
530
572
|
export interface GetDiscoverySummaryResponse {
|
|
531
573
|
/**
|
|
532
|
-
*
|
|
574
|
+
* The number of servers discovered.
|
|
533
575
|
*/
|
|
534
576
|
servers?: Long;
|
|
535
577
|
/**
|
|
536
|
-
*
|
|
578
|
+
* The number of applications discovered.
|
|
537
579
|
*/
|
|
538
580
|
applications?: Long;
|
|
539
581
|
/**
|
|
540
|
-
*
|
|
582
|
+
* The number of servers mapped to applications.
|
|
541
583
|
*/
|
|
542
584
|
serversMappedToApplications?: Long;
|
|
543
585
|
/**
|
|
544
|
-
*
|
|
586
|
+
* The number of servers mapped to tags.
|
|
545
587
|
*/
|
|
546
588
|
serversMappedtoTags?: Long;
|
|
547
589
|
/**
|
|
@@ -556,7 +598,7 @@ declare namespace Discovery {
|
|
|
556
598
|
export type Integer = number;
|
|
557
599
|
export interface ListConfigurationsRequest {
|
|
558
600
|
/**
|
|
559
|
-
* A valid configuration identified by
|
|
601
|
+
* A valid configuration identified by Application Discovery Service.
|
|
560
602
|
*/
|
|
561
603
|
configurationType: ConfigurationItemType;
|
|
562
604
|
/**
|
|
@@ -572,7 +614,7 @@ declare namespace Discovery {
|
|
|
572
614
|
*/
|
|
573
615
|
nextToken?: NextToken;
|
|
574
616
|
/**
|
|
575
|
-
* Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see
|
|
617
|
+
* Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action.
|
|
576
618
|
*/
|
|
577
619
|
orderBy?: OrderByList;
|
|
578
620
|
}
|
|
@@ -626,23 +668,23 @@ declare namespace Discovery {
|
|
|
626
668
|
export type Message = string;
|
|
627
669
|
export interface NeighborConnectionDetail {
|
|
628
670
|
/**
|
|
629
|
-
* ID of server that opened the network connection.
|
|
671
|
+
* The ID of the server that opened the network connection.
|
|
630
672
|
*/
|
|
631
673
|
sourceServerId: ConfigurationId;
|
|
632
674
|
/**
|
|
633
|
-
* ID of the server that accepted the
|
|
675
|
+
* The ID of the server that accepted the network connection.
|
|
634
676
|
*/
|
|
635
677
|
destinationServerId: ConfigurationId;
|
|
636
678
|
/**
|
|
637
|
-
*
|
|
679
|
+
* The destination network port for the connection.
|
|
638
680
|
*/
|
|
639
681
|
destinationPort?: BoxedInteger;
|
|
640
682
|
/**
|
|
641
|
-
*
|
|
683
|
+
* The network protocol used for the connection.
|
|
642
684
|
*/
|
|
643
685
|
transportProtocol?: String;
|
|
644
686
|
/**
|
|
645
|
-
*
|
|
687
|
+
* The number of open network connections with the neighboring server.
|
|
646
688
|
*/
|
|
647
689
|
connectionsCount: Long;
|
|
648
690
|
}
|
|
@@ -650,7 +692,7 @@ declare namespace Discovery {
|
|
|
650
692
|
export type NextToken = string;
|
|
651
693
|
export interface OrderByElement {
|
|
652
694
|
/**
|
|
653
|
-
*
|
|
695
|
+
* The field on which to order.
|
|
654
696
|
*/
|
|
655
697
|
fieldName: String;
|
|
656
698
|
/**
|
|
@@ -661,46 +703,58 @@ declare namespace Discovery {
|
|
|
661
703
|
export type OrderByList = OrderByElement[];
|
|
662
704
|
export interface StartDataCollectionByAgentIdsRequest {
|
|
663
705
|
/**
|
|
664
|
-
* The IDs of the agents or
|
|
706
|
+
* The IDs of the agents or connectors from which to start collecting data. If you send a request to an agent/connector ID that you do not have permission to contact, according to your AWS account, the service does not throw an exception. Instead, it returns the error in the Description field. If you send a request to multiple agents/connectors and you do not have permission to contact some of those agents/connectors, the system does not throw an exception. Instead, the system shows Failed in the Description field.
|
|
665
707
|
*/
|
|
666
708
|
agentIds: AgentIds;
|
|
667
709
|
}
|
|
668
710
|
export interface StartDataCollectionByAgentIdsResponse {
|
|
669
711
|
/**
|
|
670
|
-
* Information about agents or the
|
|
712
|
+
* Information about agents or the connector that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.
|
|
671
713
|
*/
|
|
672
714
|
agentsConfigurationStatus?: AgentConfigurationStatusList;
|
|
673
715
|
}
|
|
716
|
+
export interface StartExportTaskRequest {
|
|
717
|
+
/**
|
|
718
|
+
* The file format for the returned export data. Default value is CSV.
|
|
719
|
+
*/
|
|
720
|
+
exportDataFormat?: ExportDataFormats;
|
|
721
|
+
}
|
|
722
|
+
export interface StartExportTaskResponse {
|
|
723
|
+
/**
|
|
724
|
+
* A unique identifier used to query the status of an export request.
|
|
725
|
+
*/
|
|
726
|
+
exportId?: ConfigurationsExportId;
|
|
727
|
+
}
|
|
674
728
|
export interface StopDataCollectionByAgentIdsRequest {
|
|
675
729
|
/**
|
|
676
|
-
* The IDs of the agents or
|
|
730
|
+
* The IDs of the agents or connectors from which to stop collecting data.
|
|
677
731
|
*/
|
|
678
732
|
agentIds: AgentIds;
|
|
679
733
|
}
|
|
680
734
|
export interface StopDataCollectionByAgentIdsResponse {
|
|
681
735
|
/**
|
|
682
|
-
* Information about agents or
|
|
736
|
+
* Information about the agents or connector that were instructed to stop collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.
|
|
683
737
|
*/
|
|
684
738
|
agentsConfigurationStatus?: AgentConfigurationStatusList;
|
|
685
739
|
}
|
|
686
740
|
export type String = string;
|
|
687
741
|
export interface Tag {
|
|
688
742
|
/**
|
|
689
|
-
*
|
|
743
|
+
* The type of tag on which to filter.
|
|
690
744
|
*/
|
|
691
745
|
key: TagKey;
|
|
692
746
|
/**
|
|
693
|
-
* A value for a tag key to filter
|
|
747
|
+
* A value for a tag key on which to filter.
|
|
694
748
|
*/
|
|
695
749
|
value: TagValue;
|
|
696
750
|
}
|
|
697
751
|
export interface TagFilter {
|
|
698
752
|
/**
|
|
699
|
-
* A name of
|
|
753
|
+
* A name of the tag filter.
|
|
700
754
|
*/
|
|
701
755
|
name: FilterName;
|
|
702
756
|
/**
|
|
703
|
-
* Values
|
|
757
|
+
* Values for the tag filter.
|
|
704
758
|
*/
|
|
705
759
|
values: FilterValues;
|
|
706
760
|
}
|
package/clients/discovery.js
CHANGED
|
@@ -8,6 +8,7 @@ AWS.Discovery = Service.defineService('discovery', ['2015-11-01']);
|
|
|
8
8
|
Object.defineProperty(apiLoader.services['discovery'], '2015-11-01', {
|
|
9
9
|
get: function get() {
|
|
10
10
|
var model = require('../apis/discovery-2015-11-01.min.json');
|
|
11
|
+
model.paginators = require('../apis/discovery-2015-11-01.paginators.json').pagination;
|
|
11
12
|
return model;
|
|
12
13
|
},
|
|
13
14
|
enumerable: true,
|
package/clients/elbv2.d.ts
CHANGED
|
@@ -251,6 +251,22 @@ declare class ELBv2 extends Service {
|
|
|
251
251
|
* Enables the Availability Zone for the specified subnets for the specified load balancer. The specified subnets replace the previously enabled subnets.
|
|
252
252
|
*/
|
|
253
253
|
setSubnets(callback?: (err: AWSError, data: ELBv2.Types.SetSubnetsOutput) => void): Request<ELBv2.Types.SetSubnetsOutput, AWSError>;
|
|
254
|
+
/**
|
|
255
|
+
* Waits for the loadBalancerExists state by periodically calling the underlying ELBv2.describeLoadBalancersoperation every 15 seconds (at most 40 times).
|
|
256
|
+
*/
|
|
257
|
+
waitFor(state: "loadBalancerExists", params: ELBv2.Types.DescribeLoadBalancersInput, callback?: (err: AWSError, data: ELBv2.Types.DescribeLoadBalancersOutput) => void): Request<ELBv2.Types.DescribeLoadBalancersOutput, AWSError>;
|
|
258
|
+
/**
|
|
259
|
+
* Waits for the loadBalancerExists state by periodically calling the underlying ELBv2.describeLoadBalancersoperation every 15 seconds (at most 40 times).
|
|
260
|
+
*/
|
|
261
|
+
waitFor(state: "loadBalancerExists", callback?: (err: AWSError, data: ELBv2.Types.DescribeLoadBalancersOutput) => void): Request<ELBv2.Types.DescribeLoadBalancersOutput, AWSError>;
|
|
262
|
+
/**
|
|
263
|
+
* Waits for the loadBalancerAvailable state by periodically calling the underlying ELBv2.describeLoadBalancersoperation every 15 seconds (at most 40 times).
|
|
264
|
+
*/
|
|
265
|
+
waitFor(state: "loadBalancerAvailable", params: ELBv2.Types.DescribeLoadBalancersInput, callback?: (err: AWSError, data: ELBv2.Types.DescribeLoadBalancersOutput) => void): Request<ELBv2.Types.DescribeLoadBalancersOutput, AWSError>;
|
|
266
|
+
/**
|
|
267
|
+
* Waits for the loadBalancerAvailable state by periodically calling the underlying ELBv2.describeLoadBalancersoperation every 15 seconds (at most 40 times).
|
|
268
|
+
*/
|
|
269
|
+
waitFor(state: "loadBalancerAvailable", callback?: (err: AWSError, data: ELBv2.Types.DescribeLoadBalancersOutput) => void): Request<ELBv2.Types.DescribeLoadBalancersOutput, AWSError>;
|
|
254
270
|
}
|
|
255
271
|
declare namespace ELBv2 {
|
|
256
272
|
export interface Action {
|
package/clients/elbv2.js
CHANGED
|
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['elbv2'], '2015-12-01', {
|
|
|
9
9
|
get: function get() {
|
|
10
10
|
var model = require('../apis/elasticloadbalancingv2-2015-12-01.min.json');
|
|
11
11
|
model.paginators = require('../apis/elasticloadbalancingv2-2015-12-01.paginators.json').pagination;
|
|
12
|
+
model.waiters = require('../apis/elasticloadbalancingv2-2015-12-01.waiters2.json').waiters;
|
|
12
13
|
return model;
|
|
13
14
|
},
|
|
14
15
|
enumerable: true,
|
package/clients/lambda.d.ts
CHANGED
|
@@ -860,7 +860,7 @@ declare namespace Lambda {
|
|
|
860
860
|
}
|
|
861
861
|
export type ResourceArn = string;
|
|
862
862
|
export type RoleArn = string;
|
|
863
|
-
export type Runtime = "nodejs"|"nodejs4.3"|"java8"|"python2.7"|"dotnetcore1.0"|"nodejs4.3-edge"|string;
|
|
863
|
+
export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"java8"|"python2.7"|"dotnetcore1.0"|"nodejs4.3-edge"|string;
|
|
864
864
|
export type S3Bucket = string;
|
|
865
865
|
export type S3Key = string;
|
|
866
866
|
export type S3ObjectVersion = string;
|
|
@@ -32,14 +32,14 @@ declare namespace MarketplaceCommerceAnalytics {
|
|
|
32
32
|
export type CustomerDefinedValues = {[key: string]: OptionalValue};
|
|
33
33
|
export type DataSetPublicationDate = Date;
|
|
34
34
|
export type DataSetRequestId = string;
|
|
35
|
-
export type DataSetType = "customer_subscriber_hourly_monthly_subscriptions"|"customer_subscriber_annual_subscriptions"|"daily_business_usage_by_instance_type"|"daily_business_fees"|"daily_business_free_trial_conversions"|"daily_business_new_instances"|"daily_business_new_product_subscribers"|"daily_business_canceled_product_subscribers"|"monthly_revenue_billing_and_revenue_data"|"monthly_revenue_annual_subscriptions"|"disbursed_amount_by_product"|"disbursed_amount_by_product_with_uncollected_funds"|"disbursed_amount_by_instance_hours"|"disbursed_amount_by_customer_geo"|"disbursed_amount_by_age_of_uncollected_funds"|"disbursed_amount_by_age_of_disbursed_funds"|"customer_profile_by_industry"|"customer_profile_by_revenue"|"customer_profile_by_geography"|"sales_compensation_billed_revenue"|string;
|
|
35
|
+
export type DataSetType = "customer_subscriber_hourly_monthly_subscriptions"|"customer_subscriber_annual_subscriptions"|"daily_business_usage_by_instance_type"|"daily_business_fees"|"daily_business_free_trial_conversions"|"daily_business_new_instances"|"daily_business_new_product_subscribers"|"daily_business_canceled_product_subscribers"|"monthly_revenue_billing_and_revenue_data"|"monthly_revenue_annual_subscriptions"|"disbursed_amount_by_product"|"disbursed_amount_by_product_with_uncollected_funds"|"disbursed_amount_by_instance_hours"|"disbursed_amount_by_customer_geo"|"disbursed_amount_by_age_of_uncollected_funds"|"disbursed_amount_by_age_of_disbursed_funds"|"customer_profile_by_industry"|"customer_profile_by_revenue"|"customer_profile_by_geography"|"sales_compensation_billed_revenue"|"us_sales_and_use_tax_records"|string;
|
|
36
36
|
export type DestinationS3BucketName = string;
|
|
37
37
|
export type DestinationS3Prefix = string;
|
|
38
38
|
export type ExceptionMessage = string;
|
|
39
39
|
export type FromDate = Date;
|
|
40
40
|
export interface GenerateDataSetRequest {
|
|
41
41
|
/**
|
|
42
|
-
* The desired data set type. customer_subscriber_hourly_monthly_subscriptions - Available daily by 5:00 PM Pacific Time since 2014-07-21. customer_subscriber_annual_subscriptions - Available daily by 5:00 PM Pacific Time since 2014-07-21. daily_business_usage_by_instance_type - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_fees - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_free_trial_conversions - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_new_instances - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_new_product_subscribers - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_canceled_product_subscribers - Available daily by 5:00 PM Pacific Time since 2015-01-26. monthly_revenue_billing_and_revenue_data - Available monthly on the 4th day of the month by 5:00 PM Pacific Time since 2015-02. monthly_revenue_annual_subscriptions - Available monthly on the 4th day of the month by 5:00 PM Pacific Time since 2015-02. disbursed_amount_by_product - Available every 30 days by 5:00 PM Pacific Time since 2015-01-26. disbursed_amount_by_product_with_uncollected_funds -This data set is only available from 2012-04-19 until 2015-01-25. After 2015-01-25, this data set was split into three data sets: disbursed_amount_by_product, disbursed_amount_by_age_of_uncollected_funds, and disbursed_amount_by_age_of_disbursed_funds. disbursed_amount_by_instance_hours - Available every 30 days by 5:00 PM Pacific Time since 2012-09-04. disbursed_amount_by_customer_geo - Available every 30 days by 5:00 PM Pacific Time since 2012-04-19. disbursed_amount_by_age_of_uncollected_funds - Available every 30 days by 5:00 PM Pacific Time since 2015-01-26. disbursed_amount_by_age_of_disbursed_funds - Available every 30 days by 5:00 PM Pacific Time since 2015-01-26. customer_profile_by_industry - Available daily by 5:00 PM Pacific Time since 2015-10-01. customer_profile_by_revenue - Available daily by 5:00 PM Pacific Time since 2015-10-01. customer_profile_by_geography - Available daily by 5:00 PM Pacific Time since 2015-10-01. sales_compensation_billed_revenue - Available monthly on the 4th day of the month by 5:00 PM Pacific Time since 2016-12.
|
|
42
|
+
* The desired data set type. customer_subscriber_hourly_monthly_subscriptions - Available daily by 5:00 PM Pacific Time since 2014-07-21. customer_subscriber_annual_subscriptions - Available daily by 5:00 PM Pacific Time since 2014-07-21. daily_business_usage_by_instance_type - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_fees - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_free_trial_conversions - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_new_instances - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_new_product_subscribers - Available daily by 5:00 PM Pacific Time since 2015-01-26. daily_business_canceled_product_subscribers - Available daily by 5:00 PM Pacific Time since 2015-01-26. monthly_revenue_billing_and_revenue_data - Available monthly on the 4th day of the month by 5:00 PM Pacific Time since 2015-02. monthly_revenue_annual_subscriptions - Available monthly on the 4th day of the month by 5:00 PM Pacific Time since 2015-02. disbursed_amount_by_product - Available every 30 days by 5:00 PM Pacific Time since 2015-01-26. disbursed_amount_by_product_with_uncollected_funds -This data set is only available from 2012-04-19 until 2015-01-25. After 2015-01-25, this data set was split into three data sets: disbursed_amount_by_product, disbursed_amount_by_age_of_uncollected_funds, and disbursed_amount_by_age_of_disbursed_funds. disbursed_amount_by_instance_hours - Available every 30 days by 5:00 PM Pacific Time since 2012-09-04. disbursed_amount_by_customer_geo - Available every 30 days by 5:00 PM Pacific Time since 2012-04-19. disbursed_amount_by_age_of_uncollected_funds - Available every 30 days by 5:00 PM Pacific Time since 2015-01-26. disbursed_amount_by_age_of_disbursed_funds - Available every 30 days by 5:00 PM Pacific Time since 2015-01-26. customer_profile_by_industry - Available daily by 5:00 PM Pacific Time since 2015-10-01. customer_profile_by_revenue - Available daily by 5:00 PM Pacific Time since 2015-10-01. customer_profile_by_geography - Available daily by 5:00 PM Pacific Time since 2015-10-01. sales_compensation_billed_revenue - Available monthly on the 4th day of the month by 5:00 PM Pacific Time since 2016-12. us_sales_and_use_tax_records - Available monthly on the 15th day of the month by 5:00 PM Pacific Time since 2017-02-15.
|
|
43
43
|
*/
|
|
44
44
|
dataSetType: DataSetType;
|
|
45
45
|
/**
|
|
@@ -8,6 +8,7 @@ AWS.MarketplaceCommerceAnalytics = Service.defineService('marketplacecommerceana
|
|
|
8
8
|
Object.defineProperty(apiLoader.services['marketplacecommerceanalytics'], '2015-07-01', {
|
|
9
9
|
get: function get() {
|
|
10
10
|
var model = require('../apis/marketplacecommerceanalytics-2015-07-01.min.json');
|
|
11
|
+
model.paginators = require('../apis/marketplacecommerceanalytics-2015-07-01.paginators.json').pagination;
|
|
11
12
|
return model;
|
|
12
13
|
},
|
|
13
14
|
enumerable: true,
|