cdk-lambda-subminute 2.0.484 → 2.0.485
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appconfig-2019-10-09.min.json +77 -16
- package/node_modules/aws-sdk/apis/devicefarm-2015-06-23.examples.json +0 -2
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +6 -5
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +6 -1
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.min.json +903 -0
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/pcs-2023-02-10.waiters2.json +5 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appconfig.d.ts +58 -14
- package/node_modules/aws-sdk/clients/datazone.d.ts +2 -2
- package/node_modules/aws-sdk/clients/devicefarm.d.ts +12 -12
- package/node_modules/aws-sdk/clients/ec2.d.ts +8 -4
- package/node_modules/aws-sdk/clients/internetmonitor.d.ts +2 -2
- package/node_modules/aws-sdk/clients/pcs.d.ts +1009 -0
- package/node_modules/aws-sdk/clients/pcs.js +19 -0
- package/node_modules/aws-sdk/clients/workspaces.d.ts +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +12 -8
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +14 -14
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"pagination": {
|
3
|
+
"ListClusters": {
|
4
|
+
"input_token": "nextToken",
|
5
|
+
"output_token": "nextToken",
|
6
|
+
"limit_key": "maxResults",
|
7
|
+
"result_key": "clusters"
|
8
|
+
},
|
9
|
+
"ListComputeNodeGroups": {
|
10
|
+
"input_token": "nextToken",
|
11
|
+
"output_token": "nextToken",
|
12
|
+
"limit_key": "maxResults",
|
13
|
+
"result_key": "computeNodeGroups"
|
14
|
+
},
|
15
|
+
"ListQueues": {
|
16
|
+
"input_token": "nextToken",
|
17
|
+
"output_token": "nextToken",
|
18
|
+
"limit_key": "maxResults",
|
19
|
+
"result_key": "queues"
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
@@ -383,5 +383,6 @@ module.exports = {
|
|
383
383
|
PcaConnectorScep: require('./pcaconnectorscep'),
|
384
384
|
AppTest: require('./apptest'),
|
385
385
|
QApps: require('./qapps'),
|
386
|
-
SSMQuickSetup: require('./ssmquicksetup')
|
386
|
+
SSMQuickSetup: require('./ssmquicksetup'),
|
387
|
+
PCS: require('./pcs')
|
387
388
|
};
|
@@ -60,43 +60,43 @@ declare class AppConfig extends Service {
|
|
60
60
|
*/
|
61
61
|
createExtensionAssociation(callback?: (err: AWSError, data: AppConfig.Types.ExtensionAssociation) => void): Request<AppConfig.Types.ExtensionAssociation, AWSError>;
|
62
62
|
/**
|
63
|
-
* Creates a new configuration in the AppConfig hosted configuration store.
|
63
|
+
* Creates a new configuration in the AppConfig hosted configuration store. If you're creating a feature flag, we recommend you familiarize yourself with the JSON schema for feature flag data. For more information, see Type reference for AWS.AppConfig.FeatureFlags in the AppConfig User Guide.
|
64
64
|
*/
|
65
65
|
createHostedConfigurationVersion(params: AppConfig.Types.CreateHostedConfigurationVersionRequest, callback?: (err: AWSError, data: AppConfig.Types.HostedConfigurationVersion) => void): Request<AppConfig.Types.HostedConfigurationVersion, AWSError>;
|
66
66
|
/**
|
67
|
-
* Creates a new configuration in the AppConfig hosted configuration store.
|
67
|
+
* Creates a new configuration in the AppConfig hosted configuration store. If you're creating a feature flag, we recommend you familiarize yourself with the JSON schema for feature flag data. For more information, see Type reference for AWS.AppConfig.FeatureFlags in the AppConfig User Guide.
|
68
68
|
*/
|
69
69
|
createHostedConfigurationVersion(callback?: (err: AWSError, data: AppConfig.Types.HostedConfigurationVersion) => void): Request<AppConfig.Types.HostedConfigurationVersion, AWSError>;
|
70
70
|
/**
|
71
|
-
* Deletes an application.
|
71
|
+
* Deletes an application.
|
72
72
|
*/
|
73
73
|
deleteApplication(params: AppConfig.Types.DeleteApplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
74
74
|
/**
|
75
|
-
* Deletes an application.
|
75
|
+
* Deletes an application.
|
76
76
|
*/
|
77
77
|
deleteApplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
78
78
|
/**
|
79
|
-
* Deletes a configuration profile.
|
79
|
+
* Deletes a configuration profile. To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection.
|
80
80
|
*/
|
81
81
|
deleteConfigurationProfile(params: AppConfig.Types.DeleteConfigurationProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
82
82
|
/**
|
83
|
-
* Deletes a configuration profile.
|
83
|
+
* Deletes a configuration profile. To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection.
|
84
84
|
*/
|
85
85
|
deleteConfigurationProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
86
86
|
/**
|
87
|
-
* Deletes a deployment strategy.
|
87
|
+
* Deletes a deployment strategy.
|
88
88
|
*/
|
89
89
|
deleteDeploymentStrategy(params: AppConfig.Types.DeleteDeploymentStrategyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
90
90
|
/**
|
91
|
-
* Deletes a deployment strategy.
|
91
|
+
* Deletes a deployment strategy.
|
92
92
|
*/
|
93
93
|
deleteDeploymentStrategy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
94
94
|
/**
|
95
|
-
* Deletes an environment.
|
95
|
+
* Deletes an environment. To prevent users from unintentionally deleting actively-used environments, enable deletion protection.
|
96
96
|
*/
|
97
97
|
deleteEnvironment(params: AppConfig.Types.DeleteEnvironmentRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
98
98
|
/**
|
99
|
-
* Deletes an environment.
|
99
|
+
* Deletes an environment. To prevent users from unintentionally deleting actively-used environments, enable deletion protection.
|
100
100
|
*/
|
101
101
|
deleteEnvironment(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
102
102
|
/**
|
@@ -123,6 +123,10 @@ declare class AppConfig extends Service {
|
|
123
123
|
* Deletes a version of a configuration from the AppConfig hosted configuration store.
|
124
124
|
*/
|
125
125
|
deleteHostedConfigurationVersion(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
126
|
+
/**
|
127
|
+
* Returns information about the status of the DeletionProtection parameter.
|
128
|
+
*/
|
129
|
+
getAccountSettings(callback?: (err: AWSError, data: AppConfig.Types.AccountSettings) => void): Request<AppConfig.Types.AccountSettings, AWSError>;
|
126
130
|
/**
|
127
131
|
* Retrieves information about an application.
|
128
132
|
*/
|
@@ -299,6 +303,14 @@ declare class AppConfig extends Service {
|
|
299
303
|
* Deletes a tag key and value from an AppConfig resource.
|
300
304
|
*/
|
301
305
|
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
306
|
+
/**
|
307
|
+
* Updates the value of the DeletionProtection parameter.
|
308
|
+
*/
|
309
|
+
updateAccountSettings(params: AppConfig.Types.UpdateAccountSettingsRequest, callback?: (err: AWSError, data: AppConfig.Types.AccountSettings) => void): Request<AppConfig.Types.AccountSettings, AWSError>;
|
310
|
+
/**
|
311
|
+
* Updates the value of the DeletionProtection parameter.
|
312
|
+
*/
|
313
|
+
updateAccountSettings(callback?: (err: AWSError, data: AppConfig.Types.AccountSettings) => void): Request<AppConfig.Types.AccountSettings, AWSError>;
|
302
314
|
/**
|
303
315
|
* Updates an application.
|
304
316
|
*/
|
@@ -357,6 +369,12 @@ declare class AppConfig extends Service {
|
|
357
369
|
validateConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
358
370
|
}
|
359
371
|
declare namespace AppConfig {
|
372
|
+
export interface AccountSettings {
|
373
|
+
/**
|
374
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile or an environment if AppConfig has called either GetLatestConfiguration or for the configuration profile or from the environment during the specified interval. Deletion protection is disabled by default. The default interval for ProtectionPeriodInMinutes is 60.
|
375
|
+
*/
|
376
|
+
DeletionProtection?: DeletionProtectionSettings;
|
377
|
+
}
|
360
378
|
export interface Action {
|
361
379
|
/**
|
362
380
|
* The action name.
|
@@ -720,7 +738,7 @@ declare namespace AppConfig {
|
|
720
738
|
*/
|
721
739
|
Description?: Description;
|
722
740
|
/**
|
723
|
-
* The
|
741
|
+
* The configuration data, as bytes. AppConfig accepts any type of data, including text formats like JSON or TOML, or binary formats like protocol buffers or compressed data.
|
724
742
|
*/
|
725
743
|
Content: _Blob;
|
726
744
|
/**
|
@@ -751,6 +769,10 @@ declare namespace AppConfig {
|
|
751
769
|
* The ID of the configuration profile you want to delete.
|
752
770
|
*/
|
753
771
|
ConfigurationProfileId: Id;
|
772
|
+
/**
|
773
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile if your application has called either GetLatestConfiguration or for the configuration profile during the specified interval. This parameter supports the following values: BYPASS: Instructs AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. APPLY: Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. APPLY also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. ACCOUNT_DEFAULT: The default setting, which instructs AppConfig to implement the deletion protection value specified in the UpdateAccountSettings API.
|
774
|
+
*/
|
775
|
+
DeletionProtectionCheck?: DeletionProtectionCheck;
|
754
776
|
}
|
755
777
|
export interface DeleteDeploymentStrategyRequest {
|
756
778
|
/**
|
@@ -759,14 +781,18 @@ declare namespace AppConfig {
|
|
759
781
|
DeploymentStrategyId: DeploymentStrategyId;
|
760
782
|
}
|
761
783
|
export interface DeleteEnvironmentRequest {
|
784
|
+
/**
|
785
|
+
* The ID of the environment that you want to delete.
|
786
|
+
*/
|
787
|
+
EnvironmentId: Id;
|
762
788
|
/**
|
763
789
|
* The application ID that includes the environment that you want to delete.
|
764
790
|
*/
|
765
791
|
ApplicationId: Id;
|
766
792
|
/**
|
767
|
-
*
|
793
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting an environment if your application called either GetLatestConfiguration or in the environment during the specified interval. This parameter supports the following values: BYPASS: Instructs AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. APPLY: Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. APPLY also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. ACCOUNT_DEFAULT: The default setting, which instructs AppConfig to implement the deletion protection value specified in the UpdateAccountSettings API.
|
768
794
|
*/
|
769
|
-
|
795
|
+
DeletionProtectionCheck?: DeletionProtectionCheck;
|
770
796
|
}
|
771
797
|
export interface DeleteExtensionAssociationRequest {
|
772
798
|
/**
|
@@ -798,6 +824,18 @@ declare namespace AppConfig {
|
|
798
824
|
*/
|
799
825
|
VersionNumber: Integer;
|
800
826
|
}
|
827
|
+
export type DeletionProtectionCheck = "ACCOUNT_DEFAULT"|"APPLY"|"BYPASS"|string;
|
828
|
+
export type DeletionProtectionDuration = number;
|
829
|
+
export interface DeletionProtectionSettings {
|
830
|
+
/**
|
831
|
+
* A parameter that indicates if deletion protection is enabled or not.
|
832
|
+
*/
|
833
|
+
Enabled?: Boolean;
|
834
|
+
/**
|
835
|
+
* The time interval during which AppConfig monitors for calls to GetLatestConfiguration or for a configuration profile or from an environment. AppConfig returns an error if a user calls or for the designated configuration profile or environment. To bypass the error and delete a configuration profile or an environment, specify BYPASS for the DeletionProtectionCheck parameter for either or .
|
836
|
+
*/
|
837
|
+
ProtectionPeriodInMinutes?: DeletionProtectionDuration;
|
838
|
+
}
|
801
839
|
export interface Deployment {
|
802
840
|
/**
|
803
841
|
* The ID of the application that was deployed.
|
@@ -1615,6 +1653,12 @@ declare namespace AppConfig {
|
|
1615
1653
|
*/
|
1616
1654
|
TagKeys: TagKeyList;
|
1617
1655
|
}
|
1656
|
+
export interface UpdateAccountSettingsRequest {
|
1657
|
+
/**
|
1658
|
+
* A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile or an environment if AppConfig has called either GetLatestConfiguration or for the configuration profile or from the environment during the specified interval. Deletion protection is disabled by default. The default interval for ProtectionPeriodInMinutes is 60.
|
1659
|
+
*/
|
1660
|
+
DeletionProtection?: DeletionProtectionSettings;
|
1661
|
+
}
|
1618
1662
|
export interface UpdateApplicationRequest {
|
1619
1663
|
/**
|
1620
1664
|
* The application ID.
|
@@ -1641,7 +1685,7 @@ declare namespace AppConfig {
|
|
1641
1685
|
/**
|
1642
1686
|
* The name of the configuration profile.
|
1643
1687
|
*/
|
1644
|
-
Name?:
|
1688
|
+
Name?: LongName;
|
1645
1689
|
/**
|
1646
1690
|
* A description of the configuration profile.
|
1647
1691
|
*/
|
@@ -252,11 +252,11 @@ declare class DataZone extends Service {
|
|
252
252
|
*/
|
253
253
|
deleteAssetType(callback?: (err: AWSError, data: DataZone.Types.DeleteAssetTypeOutput) => void): Request<DataZone.Types.DeleteAssetTypeOutput, AWSError>;
|
254
254
|
/**
|
255
|
-
* Deletes
|
255
|
+
* Deletes a data product in Amazon DataZone.
|
256
256
|
*/
|
257
257
|
deleteDataProduct(params: DataZone.Types.DeleteDataProductInput, callback?: (err: AWSError, data: DataZone.Types.DeleteDataProductOutput) => void): Request<DataZone.Types.DeleteDataProductOutput, AWSError>;
|
258
258
|
/**
|
259
|
-
* Deletes
|
259
|
+
* Deletes a data product in Amazon DataZone.
|
260
260
|
*/
|
261
261
|
deleteDataProduct(callback?: (err: AWSError, data: DataZone.Types.DeleteDataProductOutput) => void): Request<DataZone.Types.DeleteDataProductOutput, AWSError>;
|
262
262
|
/**
|
@@ -679,7 +679,7 @@ declare namespace DeviceFarm {
|
|
679
679
|
*/
|
680
680
|
name?: Name;
|
681
681
|
/**
|
682
|
-
* The artifact's type. Allowed values include the following: UNKNOWN SCREENSHOT DEVICE_LOG MESSAGE_LOG VIDEO_LOG RESULT_LOG SERVICE_LOG WEBKIT_LOG INSTRUMENTATION_OUTPUT EXERCISER_MONKEY_OUTPUT: the artifact (log) generated by an Android fuzz test.
|
682
|
+
* The artifact's type. Allowed values include the following: UNKNOWN SCREENSHOT DEVICE_LOG MESSAGE_LOG VIDEO_LOG RESULT_LOG SERVICE_LOG WEBKIT_LOG INSTRUMENTATION_OUTPUT EXERCISER_MONKEY_OUTPUT: the artifact (log) generated by an Android fuzz test. APPIUM_SERVER_OUTPUT APPIUM_JAVA_OUTPUT APPIUM_JAVA_XML_OUTPUT APPIUM_PYTHON_OUTPUT APPIUM_PYTHON_XML_OUTPUT APPLICATION_CRASH_REPORT XCTEST_LOG VIDEO CUSTOMER_ARTIFACT CUSTOMER_ARTIFACT_LOG TESTSPEC_OUTPUT
|
683
683
|
*/
|
684
684
|
type?: ArtifactType;
|
685
685
|
/**
|
@@ -990,7 +990,7 @@ declare namespace DeviceFarm {
|
|
990
990
|
*/
|
991
991
|
name: Name;
|
992
992
|
/**
|
993
|
-
* The upload's upload type. Must be one of the following values: ANDROID_APP IOS_APP WEB_APP EXTERNAL_DATA APPIUM_JAVA_JUNIT_TEST_PACKAGE APPIUM_JAVA_TESTNG_TEST_PACKAGE APPIUM_PYTHON_TEST_PACKAGE APPIUM_NODE_TEST_PACKAGE APPIUM_RUBY_TEST_PACKAGE APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE APPIUM_WEB_PYTHON_TEST_PACKAGE APPIUM_WEB_NODE_TEST_PACKAGE APPIUM_WEB_RUBY_TEST_PACKAGE
|
993
|
+
* The upload's upload type. Must be one of the following values: ANDROID_APP IOS_APP WEB_APP EXTERNAL_DATA APPIUM_JAVA_JUNIT_TEST_PACKAGE APPIUM_JAVA_TESTNG_TEST_PACKAGE APPIUM_PYTHON_TEST_PACKAGE APPIUM_NODE_TEST_PACKAGE APPIUM_RUBY_TEST_PACKAGE APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE APPIUM_WEB_PYTHON_TEST_PACKAGE APPIUM_WEB_NODE_TEST_PACKAGE APPIUM_WEB_RUBY_TEST_PACKAGE INSTRUMENTATION_TEST_PACKAGE XCTEST_TEST_PACKAGE XCTEST_UI_TEST_PACKAGE APPIUM_JAVA_JUNIT_TEST_SPEC APPIUM_JAVA_TESTNG_TEST_SPEC APPIUM_PYTHON_TEST_SPEC APPIUM_NODE_TEST_SPEC APPIUM_RUBY_TEST_SPEC APPIUM_WEB_JAVA_JUNIT_TEST_SPEC APPIUM_WEB_JAVA_TESTNG_TEST_SPEC APPIUM_WEB_PYTHON_TEST_SPEC APPIUM_WEB_NODE_TEST_SPEC APPIUM_WEB_RUBY_TEST_SPEC INSTRUMENTATION_TEST_SPEC XCTEST_UI_TEST_SPEC If you call CreateUpload with WEB_APP specified, AWS Device Farm throws an ArgumentException error.
|
994
994
|
*/
|
995
995
|
type: UploadType;
|
996
996
|
/**
|
@@ -1391,7 +1391,7 @@ declare namespace DeviceFarm {
|
|
1391
1391
|
*/
|
1392
1392
|
appArn?: AmazonResourceName;
|
1393
1393
|
/**
|
1394
|
-
* The test type for the specified device pool. Allowed values include the following: BUILTIN_FUZZ.
|
1394
|
+
* The test type for the specified device pool. Allowed values include the following: BUILTIN_FUZZ. APPIUM_JAVA_JUNIT. APPIUM_JAVA_TESTNG. APPIUM_PYTHON. APPIUM_NODE. APPIUM_RUBY. APPIUM_WEB_JAVA_JUNIT. APPIUM_WEB_JAVA_TESTNG. APPIUM_WEB_PYTHON. APPIUM_WEB_NODE. APPIUM_WEB_RUBY. INSTRUMENTATION. XCTEST. XCTEST_UI.
|
1395
1395
|
*/
|
1396
1396
|
testType?: TestType;
|
1397
1397
|
/**
|
@@ -1679,7 +1679,7 @@ declare namespace DeviceFarm {
|
|
1679
1679
|
*/
|
1680
1680
|
name?: Name;
|
1681
1681
|
/**
|
1682
|
-
* The job's type. Allowed values include the following: BUILTIN_FUZZ
|
1682
|
+
* The job's type. Allowed values include the following: BUILTIN_FUZZ APPIUM_JAVA_JUNIT APPIUM_JAVA_TESTNG APPIUM_PYTHON APPIUM_NODE APPIUM_RUBY APPIUM_WEB_JAVA_JUNIT APPIUM_WEB_JAVA_TESTNG APPIUM_WEB_PYTHON APPIUM_WEB_NODE APPIUM_WEB_RUBY INSTRUMENTATION XCTEST XCTEST_UI
|
1683
1683
|
*/
|
1684
1684
|
type?: TestType;
|
1685
1685
|
/**
|
@@ -2211,7 +2211,7 @@ declare namespace DeviceFarm {
|
|
2211
2211
|
*/
|
2212
2212
|
arn: AmazonResourceName;
|
2213
2213
|
/**
|
2214
|
-
* The type of upload. Must be one of the following values: ANDROID_APP IOS_APP WEB_APP EXTERNAL_DATA APPIUM_JAVA_JUNIT_TEST_PACKAGE APPIUM_JAVA_TESTNG_TEST_PACKAGE APPIUM_PYTHON_TEST_PACKAGE APPIUM_NODE_TEST_PACKAGE APPIUM_RUBY_TEST_PACKAGE APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE APPIUM_WEB_PYTHON_TEST_PACKAGE APPIUM_WEB_NODE_TEST_PACKAGE APPIUM_WEB_RUBY_TEST_PACKAGE
|
2214
|
+
* The type of upload. Must be one of the following values: ANDROID_APP IOS_APP WEB_APP EXTERNAL_DATA APPIUM_JAVA_JUNIT_TEST_PACKAGE APPIUM_JAVA_TESTNG_TEST_PACKAGE APPIUM_PYTHON_TEST_PACKAGE APPIUM_NODE_TEST_PACKAGE APPIUM_RUBY_TEST_PACKAGE APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE APPIUM_WEB_PYTHON_TEST_PACKAGE APPIUM_WEB_NODE_TEST_PACKAGE APPIUM_WEB_RUBY_TEST_PACKAGE INSTRUMENTATION_TEST_PACKAGE XCTEST_TEST_PACKAGE XCTEST_UI_TEST_PACKAGE APPIUM_JAVA_JUNIT_TEST_SPEC APPIUM_JAVA_TESTNG_TEST_SPEC APPIUM_PYTHON_TEST_SPEC APPIUM_NODE_TEST_SPEC APPIUM_RUBY_TEST_SPEC APPIUM_WEB_JAVA_JUNIT_TEST_SPEC APPIUM_WEB_JAVA_TESTNG_TEST_SPEC APPIUM_WEB_PYTHON_TEST_SPEC APPIUM_WEB_NODE_TEST_SPEC APPIUM_WEB_RUBY_TEST_SPEC INSTRUMENTATION_TEST_SPEC XCTEST_UI_TEST_SPEC
|
2215
2215
|
*/
|
2216
2216
|
type?: UploadType;
|
2217
2217
|
/**
|
@@ -2672,7 +2672,7 @@ declare namespace DeviceFarm {
|
|
2672
2672
|
*/
|
2673
2673
|
name?: Name;
|
2674
2674
|
/**
|
2675
|
-
* The run's type. Must be one of the following values: BUILTIN_FUZZ
|
2675
|
+
* The run's type. Must be one of the following values: BUILTIN_FUZZ APPIUM_JAVA_JUNIT APPIUM_JAVA_TESTNG APPIUM_PYTHON APPIUM_NODE APPIUM_RUBY APPIUM_WEB_JAVA_JUNIT APPIUM_WEB_JAVA_TESTNG APPIUM_WEB_PYTHON APPIUM_WEB_NODE APPIUM_WEB_RUBY INSTRUMENTATION XCTEST XCTEST_UI
|
2676
2676
|
*/
|
2677
2677
|
type?: TestType;
|
2678
2678
|
/**
|
@@ -2889,7 +2889,7 @@ declare namespace DeviceFarm {
|
|
2889
2889
|
}
|
2890
2890
|
export interface ScheduleRunTest {
|
2891
2891
|
/**
|
2892
|
-
* The test's type. Must be one of the following values: BUILTIN_FUZZ
|
2892
|
+
* The test's type. Must be one of the following values: BUILTIN_FUZZ APPIUM_JAVA_JUNIT APPIUM_JAVA_TESTNG APPIUM_PYTHON APPIUM_NODE APPIUM_RUBY APPIUM_WEB_JAVA_JUNIT APPIUM_WEB_JAVA_TESTNG APPIUM_WEB_PYTHON APPIUM_WEB_NODE APPIUM_WEB_RUBY INSTRUMENTATION XCTEST XCTEST_UI
|
2893
2893
|
*/
|
2894
2894
|
type: TestType;
|
2895
2895
|
/**
|
@@ -2905,7 +2905,7 @@ declare namespace DeviceFarm {
|
|
2905
2905
|
*/
|
2906
2906
|
filter?: Filter;
|
2907
2907
|
/**
|
2908
|
-
* The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by name-value pairs of strings. For all tests: app_performance_monitoring: Performance monitoring is enabled by default. Set this parameter to false to disable it. For
|
2908
|
+
* The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by name-value pairs of strings. For all tests: app_performance_monitoring: Performance monitoring is enabled by default. Set this parameter to false to disable it. For Appium tests (all types): appium_version: The Appium version. Currently supported values are 1.6.5 (and later), latest, and default. latest runs the latest Appium version supported by Device Farm (1.9.1). For default, Device Farm selects a compatible version of Appium for the device. The current behavior is to run 1.7.2 on Android devices and iOS 9 and earlier and 1.7.2 for iOS 10 and later. This behavior is subject to change. For fuzz tests (Android only): event_count: The number of events, between 1 and 10000, that the UI fuzz test should perform. throttle: The time, in ms, between 0 and 1000, that the UI fuzz test should wait between events. seed: A seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences. For Instrumentation: filter: A test filter string. Examples: Running a single test case: com.android.abc.Test1 Running a single test: com.android.abc.Test1#smoke Running multiple tests: com.android.abc.Test1,com.android.abc.Test2 For XCTest and XCTestUI: filter: A test filter string. Examples: Running a single test class: LoginTests Running a multiple test classes: LoginTests,SmokeTests Running a single test: LoginTests/testValid Running multiple tests: LoginTests/testValid,LoginTests/testInvalid
|
2909
2909
|
*/
|
2910
2910
|
parameters?: TestParameters;
|
2911
2911
|
}
|
@@ -2965,7 +2965,7 @@ declare namespace DeviceFarm {
|
|
2965
2965
|
*/
|
2966
2966
|
name?: Name;
|
2967
2967
|
/**
|
2968
|
-
* The suite's type. Must be one of the following values: BUILTIN_FUZZ
|
2968
|
+
* The suite's type. Must be one of the following values: BUILTIN_FUZZ APPIUM_JAVA_JUNIT APPIUM_JAVA_TESTNG APPIUM_PYTHON APPIUM_NODE APPIUM_RUBY APPIUM_WEB_JAVA_JUNIT APPIUM_WEB_JAVA_TESTNG APPIUM_WEB_PYTHON APPIUM_WEB_NODE APPIUM_WEB_RUBY INSTRUMENTATION XCTEST XCTEST_UI
|
2969
2969
|
*/
|
2970
2970
|
type?: TestType;
|
2971
2971
|
/**
|
@@ -3038,7 +3038,7 @@ declare namespace DeviceFarm {
|
|
3038
3038
|
*/
|
3039
3039
|
name?: Name;
|
3040
3040
|
/**
|
3041
|
-
* The test's type. Must be one of the following values: BUILTIN_FUZZ
|
3041
|
+
* The test's type. Must be one of the following values: BUILTIN_FUZZ APPIUM_JAVA_JUNIT APPIUM_JAVA_TESTNG APPIUM_PYTHON APPIUM_NODE APPIUM_RUBY APPIUM_WEB_JAVA_JUNIT APPIUM_WEB_JAVA_TESTNG APPIUM_WEB_PYTHON APPIUM_WEB_NODE APPIUM_WEB_RUBY INSTRUMENTATION XCTEST XCTEST_UI
|
3042
3042
|
*/
|
3043
3043
|
type?: TestType;
|
3044
3044
|
/**
|
@@ -3181,7 +3181,7 @@ declare namespace DeviceFarm {
|
|
3181
3181
|
vpcId: NonEmptyString;
|
3182
3182
|
}
|
3183
3183
|
export type TestParameters = {[key: string]: String};
|
3184
|
-
export type TestType = "BUILTIN_FUZZ"|"
|
3184
|
+
export type TestType = "BUILTIN_FUZZ"|"APPIUM_JAVA_JUNIT"|"APPIUM_JAVA_TESTNG"|"APPIUM_PYTHON"|"APPIUM_NODE"|"APPIUM_RUBY"|"APPIUM_WEB_JAVA_JUNIT"|"APPIUM_WEB_JAVA_TESTNG"|"APPIUM_WEB_PYTHON"|"APPIUM_WEB_NODE"|"APPIUM_WEB_RUBY"|"INSTRUMENTATION"|"XCTEST"|"XCTEST_UI"|string;
|
3185
3185
|
export type Tests = Test[];
|
3186
3186
|
export type TransactionIdentifier = string;
|
3187
3187
|
export interface TrialMinutes {
|
@@ -3473,7 +3473,7 @@ declare namespace DeviceFarm {
|
|
3473
3473
|
*/
|
3474
3474
|
created?: DateTime;
|
3475
3475
|
/**
|
3476
|
-
* The upload's type. Must be one of the following values: ANDROID_APP IOS_APP WEB_APP EXTERNAL_DATA APPIUM_JAVA_JUNIT_TEST_PACKAGE APPIUM_JAVA_TESTNG_TEST_PACKAGE APPIUM_PYTHON_TEST_PACKAGE APPIUM_NODE_TEST_PACKAGE APPIUM_RUBY_TEST_PACKAGE APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE APPIUM_WEB_PYTHON_TEST_PACKAGE APPIUM_WEB_NODE_TEST_PACKAGE APPIUM_WEB_RUBY_TEST_PACKAGE
|
3476
|
+
* The upload's type. Must be one of the following values: ANDROID_APP IOS_APP WEB_APP EXTERNAL_DATA APPIUM_JAVA_JUNIT_TEST_PACKAGE APPIUM_JAVA_TESTNG_TEST_PACKAGE APPIUM_PYTHON_TEST_PACKAGE APPIUM_NODE_TEST_PACKAGE APPIUM_RUBY_TEST_PACKAGE APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE APPIUM_WEB_PYTHON_TEST_PACKAGE APPIUM_WEB_NODE_TEST_PACKAGE APPIUM_WEB_RUBY_TEST_PACKAGE INSTRUMENTATION_TEST_PACKAGE XCTEST_TEST_PACKAGE XCTEST_UI_TEST_PACKAGE APPIUM_JAVA_JUNIT_TEST_SPEC APPIUM_JAVA_TESTNG_TEST_SPEC APPIUM_PYTHON_TEST_SPEC APPIUM_NODE_TEST_SPEC APPIUM_RUBY_TEST_SPEC APPIUM_WEB_JAVA_JUNIT_TEST_SPEC APPIUM_WEB_JAVA_TESTNG_TEST_SPEC APPIUM_WEB_PYTHON_TEST_SPEC APPIUM_WEB_NODE_TEST_SPEC APPIUM_WEB_RUBY_TEST_SPEC INSTRUMENTATION_TEST_SPEC XCTEST_UI_TEST_SPEC
|
3477
3477
|
*/
|
3478
3478
|
type?: UploadType;
|
3479
3479
|
/**
|
@@ -4565,11 +4565,11 @@ declare class EC2 extends Service {
|
|
4565
4565
|
*/
|
4566
4566
|
rebootInstances(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
4567
4567
|
/**
|
4568
|
-
* Registers an AMI. When you're creating an instance-store backed AMI, registering the AMI is the final step in the creation process. For more information about creating AMIs, see Create
|
4568
|
+
* Registers an AMI. When you're creating an instance-store backed AMI, registering the AMI is the final step in the creation process. For more information about creating AMIs, see Create an AMI from a snapshot and Create an instance-store backed AMI in the Amazon EC2 User Guide. For Amazon EBS-backed instances, CreateImage creates and registers the AMI in a single request, so you don't have to register the AMI yourself. We recommend that you always use CreateImage unless you have a specific reason to use RegisterImage. If needed, you can deregister an AMI at any time. Any modifications you make to an AMI backed by an instance store volume invalidates its registration. If you make changes to an image, deregister the previous image and register the new image. Register a snapshot of a root device volume You can use RegisterImage to create an Amazon EBS-backed Linux AMI from a snapshot of a root device volume. You specify the snapshot using a block device mapping. You can't set the encryption state of the volume using the block device mapping. If the snapshot is encrypted, or encryption by default is enabled, the root volume of an instance launched from the AMI is encrypted. For more information, see Create an AMI from a snapshot and Use encryption with Amazon EBS-backed AMIs in the Amazon EC2 User Guide. Amazon Web Services Marketplace product codes If any snapshots have Amazon Web Services Marketplace product codes, they are copied to the new AMI. In most cases, AMIs for Windows, RedHat, SUSE, and SQL Server require correct licensing information to be present on the AMI. For more information, see Understand AMI billing information in the Amazon EC2 User Guide. When creating an AMI from a snapshot, the RegisterImage operation derives the correct billing information from the snapshot's metadata, but this requires the appropriate metadata to be present. To verify if the correct billing information was applied, check the PlatformDetails field on the new AMI. If the field is empty or doesn't match the expected operating system code (for example, Windows, RedHat, SUSE, or SQL), the AMI creation was unsuccessful, and you should discard the AMI and instead create the AMI from an instance using CreateImage. For more information, see Create an AMI from an instance in the Amazon EC2 User Guide. If you purchase a Reserved Instance to apply to an On-Demand Instance that was launched from an AMI with a billing product code, make sure that the Reserved Instance has the matching billing product code. If you purchase a Reserved Instance without the matching billing product code, the Reserved Instance will not be applied to the On-Demand Instance. For information about how to obtain the platform details and billing information of an AMI, see Understand AMI billing information in the Amazon EC2 User Guide.
|
4569
4569
|
*/
|
4570
4570
|
registerImage(params: EC2.Types.RegisterImageRequest, callback?: (err: AWSError, data: EC2.Types.RegisterImageResult) => void): Request<EC2.Types.RegisterImageResult, AWSError>;
|
4571
4571
|
/**
|
4572
|
-
* Registers an AMI. When you're creating an instance-store backed AMI, registering the AMI is the final step in the creation process. For more information about creating AMIs, see Create
|
4572
|
+
* Registers an AMI. When you're creating an instance-store backed AMI, registering the AMI is the final step in the creation process. For more information about creating AMIs, see Create an AMI from a snapshot and Create an instance-store backed AMI in the Amazon EC2 User Guide. For Amazon EBS-backed instances, CreateImage creates and registers the AMI in a single request, so you don't have to register the AMI yourself. We recommend that you always use CreateImage unless you have a specific reason to use RegisterImage. If needed, you can deregister an AMI at any time. Any modifications you make to an AMI backed by an instance store volume invalidates its registration. If you make changes to an image, deregister the previous image and register the new image. Register a snapshot of a root device volume You can use RegisterImage to create an Amazon EBS-backed Linux AMI from a snapshot of a root device volume. You specify the snapshot using a block device mapping. You can't set the encryption state of the volume using the block device mapping. If the snapshot is encrypted, or encryption by default is enabled, the root volume of an instance launched from the AMI is encrypted. For more information, see Create an AMI from a snapshot and Use encryption with Amazon EBS-backed AMIs in the Amazon EC2 User Guide. Amazon Web Services Marketplace product codes If any snapshots have Amazon Web Services Marketplace product codes, they are copied to the new AMI. In most cases, AMIs for Windows, RedHat, SUSE, and SQL Server require correct licensing information to be present on the AMI. For more information, see Understand AMI billing information in the Amazon EC2 User Guide. When creating an AMI from a snapshot, the RegisterImage operation derives the correct billing information from the snapshot's metadata, but this requires the appropriate metadata to be present. To verify if the correct billing information was applied, check the PlatformDetails field on the new AMI. If the field is empty or doesn't match the expected operating system code (for example, Windows, RedHat, SUSE, or SQL), the AMI creation was unsuccessful, and you should discard the AMI and instead create the AMI from an instance using CreateImage. For more information, see Create an AMI from an instance in the Amazon EC2 User Guide. If you purchase a Reserved Instance to apply to an On-Demand Instance that was launched from an AMI with a billing product code, make sure that the Reserved Instance has the matching billing product code. If you purchase a Reserved Instance without the matching billing product code, the Reserved Instance will not be applied to the On-Demand Instance. For information about how to obtain the platform details and billing information of an AMI, see Understand AMI billing information in the Amazon EC2 User Guide.
|
4573
4573
|
*/
|
4574
4574
|
registerImage(callback?: (err: AWSError, data: EC2.Types.RegisterImageResult) => void): Request<EC2.Types.RegisterImageResult, AWSError>;
|
4575
4575
|
/**
|
@@ -5820,6 +5820,10 @@ declare namespace EC2 {
|
|
5820
5820
|
* The tags to assign to the Elastic IP address.
|
5821
5821
|
*/
|
5822
5822
|
TagSpecifications?: TagSpecificationList;
|
5823
|
+
/**
|
5824
|
+
* The ID of an IPAM pool.
|
5825
|
+
*/
|
5826
|
+
IpamPoolId?: IpamPoolId;
|
5823
5827
|
}
|
5824
5828
|
export interface AllocateAddressResult {
|
5825
5829
|
/**
|
@@ -26326,7 +26330,7 @@ declare namespace EC2 {
|
|
26326
26330
|
export type IpamPoolAllocationAllowedCidrs = String[];
|
26327
26331
|
export type IpamPoolAllocationDisallowedCidrs = String[];
|
26328
26332
|
export type IpamPoolAllocationId = string;
|
26329
|
-
export type IpamPoolAllocationResourceType = "ipam-pool"|"vpc"|"ec2-public-ipv4-pool"|"custom"|"subnet"|string;
|
26333
|
+
export type IpamPoolAllocationResourceType = "ipam-pool"|"vpc"|"ec2-public-ipv4-pool"|"custom"|"subnet"|"eip"|string;
|
26330
26334
|
export type IpamPoolAllocationSet = IpamPoolAllocation[];
|
26331
26335
|
export type IpamPoolAwsService = "ec2"|string;
|
26332
26336
|
export interface IpamPoolCidr {
|
@@ -26436,7 +26440,7 @@ declare namespace EC2 {
|
|
26436
26440
|
*/
|
26437
26441
|
EipTags?: IpamPublicAddressTagList;
|
26438
26442
|
}
|
26439
|
-
export type IpamPublicAddressType = "service-managed-ip"|"service-managed-byoip"|"amazon-owned-eip"|"byoip"|"ec2-public-ip"|string;
|
26443
|
+
export type IpamPublicAddressType = "service-managed-ip"|"service-managed-byoip"|"amazon-owned-eip"|"amazon-owned-contig"|"byoip"|"ec2-public-ip"|string;
|
26440
26444
|
export interface IpamResourceCidr {
|
26441
26445
|
/**
|
26442
26446
|
* The IPAM ID for an IPAM resource.
|
@@ -869,7 +869,7 @@ declare namespace InternetMonitor {
|
|
869
869
|
export type QueryMaxResults = number;
|
870
870
|
export type QueryRow = String[];
|
871
871
|
export type QueryStatus = "QUEUED"|"RUNNING"|"SUCCEEDED"|"FAILED"|"CANCELED"|string;
|
872
|
-
export type QueryType = "MEASUREMENTS"|"TOP_LOCATIONS"|"TOP_LOCATION_DETAILS"|string;
|
872
|
+
export type QueryType = "MEASUREMENTS"|"TOP_LOCATIONS"|"TOP_LOCATION_DETAILS"|"OVERALL_TRAFFIC_SUGGESTIONS"|"OVERALL_TRAFFIC_SUGGESTIONS_DETAILS"|string;
|
873
873
|
export type ResourceName = string;
|
874
874
|
export interface RoundTripTime {
|
875
875
|
/**
|
@@ -915,7 +915,7 @@ declare namespace InternetMonitor {
|
|
915
915
|
*/
|
916
916
|
EndTime: SyntheticTimestamp_date_time;
|
917
917
|
/**
|
918
|
-
* The type of query to run. The following are the three types of queries that you can run using the Internet Monitor query interface: MEASUREMENTS: Provides availability score, performance score, total traffic, and round-trip times, at 5 minute intervals. TOP_LOCATIONS: Provides availability score, performance score, total traffic, and time to first byte (TTFB) information, for the top location and ASN combinations that you're monitoring, by traffic volume. TOP_LOCATION_DETAILS: Provides TTFB for Amazon CloudFront, your current configuration, and the best performing EC2 configuration, at 1 hour intervals. For lists of the fields returned with each query type and more information about how each type of query is performed, see Using the Amazon CloudWatch Internet Monitor query interface in the Amazon CloudWatch Internet Monitor User Guide.
|
918
|
+
* The type of query to run. The following are the three types of queries that you can run using the Internet Monitor query interface: MEASUREMENTS: Provides availability score, performance score, total traffic, and round-trip times, at 5 minute intervals. TOP_LOCATIONS: Provides availability score, performance score, total traffic, and time to first byte (TTFB) information, for the top location and ASN combinations that you're monitoring, by traffic volume. TOP_LOCATION_DETAILS: Provides TTFB for Amazon CloudFront, your current configuration, and the best performing EC2 configuration, at 1 hour intervals. OVERALL_TRAFFIC_SUGGESTIONS: Provides TTFB, using a 30-day weighted average, for all traffic in each Amazon Web Services location that is monitored. OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: Provides TTFB, using a 30-day weighted average, for each top location, for a proposed Amazon Web Services location. Must provide a Amazon Web Services location to search. For lists of the fields returned with each query type and more information about how each type of query is performed, see Using the Amazon CloudWatch Internet Monitor query interface in the Amazon CloudWatch Internet Monitor User Guide.
|
919
919
|
*/
|
920
920
|
QueryType: QueryType;
|
921
921
|
/**
|