@aws-sdk/client-application-discovery-service 3.353.0 → 3.354.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/README.md +33 -40
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +26 -2
- package/dist-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +25 -1
- package/dist-es/protocols/Aws_json1_1.js +28 -2
- package/dist-types/ApplicationDiscoveryService.d.ts +33 -40
- package/dist-types/ApplicationDiscoveryServiceClient.d.ts +33 -40
- package/dist-types/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +3 -3
- package/dist-types/commands/BatchDeleteImportDataCommand.d.ts +3 -3
- package/dist-types/commands/CreateApplicationCommand.d.ts +3 -3
- package/dist-types/commands/CreateTagsCommand.d.ts +3 -3
- package/dist-types/commands/DeleteApplicationsCommand.d.ts +3 -3
- package/dist-types/commands/DeleteTagsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeAgentsCommand.d.ts +5 -5
- package/dist-types/commands/DescribeConfigurationsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeContinuousExportsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeExportConfigurationsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -3
- package/dist-types/commands/DescribeImportTasksCommand.d.ts +3 -3
- package/dist-types/commands/DescribeTagsCommand.d.ts +4 -4
- package/dist-types/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +3 -3
- package/dist-types/commands/ExportConfigurationsCommand.d.ts +3 -3
- package/dist-types/commands/GetDiscoverySummaryCommand.d.ts +3 -3
- package/dist-types/commands/ListConfigurationsCommand.d.ts +3 -3
- package/dist-types/commands/ListServerNeighborsCommand.d.ts +3 -3
- package/dist-types/commands/StartContinuousExportCommand.d.ts +3 -3
- package/dist-types/commands/StartDataCollectionByAgentIdsCommand.d.ts +4 -4
- package/dist-types/commands/StartExportTaskCommand.d.ts +46 -10
- package/dist-types/commands/StartImportTaskCommand.d.ts +10 -9
- package/dist-types/commands/StopContinuousExportCommand.d.ts +3 -3
- package/dist-types/commands/StopDataCollectionByAgentIdsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateApplicationCommand.d.ts +3 -3
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/index.d.ts +33 -40
- package/dist-types/models/models_0.d.ts +283 -88
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +61 -1
- package/package.json +9 -9
|
@@ -423,15 +423,75 @@ export interface StartDataCollectionByAgentIdsResponse {
|
|
|
423
423
|
}
|
|
424
424
|
export declare const ExportDataFormat: {
|
|
425
425
|
readonly CSV: "CSV";
|
|
426
|
-
readonly GRAPHML: "GRAPHML";
|
|
427
426
|
};
|
|
428
427
|
export type ExportDataFormat =
|
|
429
428
|
(typeof ExportDataFormat)[keyof typeof ExportDataFormat];
|
|
429
|
+
export interface UsageMetricBasis {
|
|
430
|
+
name?: string;
|
|
431
|
+
percentageAdjust?: number;
|
|
432
|
+
}
|
|
433
|
+
export declare const OfferingClass: {
|
|
434
|
+
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
435
|
+
readonly STANDARD: "STANDARD";
|
|
436
|
+
};
|
|
437
|
+
export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
|
|
438
|
+
export declare const PurchasingOption: {
|
|
439
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
440
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
441
|
+
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
442
|
+
};
|
|
443
|
+
export type PurchasingOption =
|
|
444
|
+
(typeof PurchasingOption)[keyof typeof PurchasingOption];
|
|
445
|
+
export declare const TermLength: {
|
|
446
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
447
|
+
readonly THREE_YEAR: "THREE_YEAR";
|
|
448
|
+
};
|
|
449
|
+
export type TermLength = (typeof TermLength)[keyof typeof TermLength];
|
|
450
|
+
export interface ReservedInstanceOptions {
|
|
451
|
+
purchasingOption: PurchasingOption | string | undefined;
|
|
452
|
+
offeringClass: OfferingClass | string | undefined;
|
|
453
|
+
termLength: TermLength | string | undefined;
|
|
454
|
+
}
|
|
455
|
+
export declare const Tenancy: {
|
|
456
|
+
readonly DEDICATED: "DEDICATED";
|
|
457
|
+
readonly SHARED: "SHARED";
|
|
458
|
+
};
|
|
459
|
+
export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
|
|
460
|
+
export interface Ec2RecommendationsExportPreferences {
|
|
461
|
+
enabled?: boolean;
|
|
462
|
+
cpuPerformanceMetricBasis?: UsageMetricBasis;
|
|
463
|
+
ramPerformanceMetricBasis?: UsageMetricBasis;
|
|
464
|
+
tenancy?: Tenancy | string;
|
|
465
|
+
excludedInstanceTypes?: string[];
|
|
466
|
+
preferredRegion?: string;
|
|
467
|
+
reservedInstanceOptions?: ReservedInstanceOptions;
|
|
468
|
+
}
|
|
469
|
+
export type ExportPreferences =
|
|
470
|
+
| ExportPreferences.Ec2RecommendationsPreferencesMember
|
|
471
|
+
| ExportPreferences.$UnknownMember;
|
|
472
|
+
export declare namespace ExportPreferences {
|
|
473
|
+
interface Ec2RecommendationsPreferencesMember {
|
|
474
|
+
ec2RecommendationsPreferences: Ec2RecommendationsExportPreferences;
|
|
475
|
+
$unknown?: never;
|
|
476
|
+
}
|
|
477
|
+
interface $UnknownMember {
|
|
478
|
+
ec2RecommendationsPreferences?: never;
|
|
479
|
+
$unknown: [string, any];
|
|
480
|
+
}
|
|
481
|
+
interface Visitor<T> {
|
|
482
|
+
ec2RecommendationsPreferences: (
|
|
483
|
+
value: Ec2RecommendationsExportPreferences
|
|
484
|
+
) => T;
|
|
485
|
+
_: (name: string, value: any) => T;
|
|
486
|
+
}
|
|
487
|
+
const visit: <T>(value: ExportPreferences, visitor: Visitor<T>) => T;
|
|
488
|
+
}
|
|
430
489
|
export interface StartExportTaskRequest {
|
|
431
490
|
exportDataFormat?: (ExportDataFormat | string)[];
|
|
432
491
|
filters?: ExportFilter[];
|
|
433
492
|
startTime?: Date;
|
|
434
493
|
endTime?: Date;
|
|
494
|
+
preferences?: ExportPreferences;
|
|
435
495
|
}
|
|
436
496
|
export interface StartExportTaskResponse {
|
|
437
497
|
exportId?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-discovery-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Discovery Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.354.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.354.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.354.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.354.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.353.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.347.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.347.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.347.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.347.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.354.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.347.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.354.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.347.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.352.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.354.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.350.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.347.0",
|
|
43
43
|
"@aws-sdk/types": "3.347.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.353.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.354.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.352.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.347.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.347.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.354.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|