@aws-sdk/client-outposts 3.650.0 → 3.654.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/dist-types/commands/CancelCapacityTaskCommand.d.ts +11 -0
- package/dist-types/commands/CancelOrderCommand.d.ts +11 -0
- package/dist-types/commands/CreateOrderCommand.d.ts +11 -0
- package/dist-types/commands/CreateOutpostCommand.d.ts +11 -0
- package/dist-types/commands/CreateSiteCommand.d.ts +11 -0
- package/dist-types/commands/DeleteOutpostCommand.d.ts +11 -0
- package/dist-types/commands/DeleteSiteCommand.d.ts +11 -0
- package/dist-types/commands/GetCapacityTaskCommand.d.ts +11 -0
- package/dist-types/commands/GetCatalogItemCommand.d.ts +11 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +11 -0
- package/dist-types/commands/GetOrderCommand.d.ts +11 -0
- package/dist-types/commands/GetOutpostCommand.d.ts +11 -0
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +11 -0
- package/dist-types/commands/GetOutpostSupportedInstanceTypesCommand.d.ts +11 -0
- package/dist-types/commands/GetSiteAddressCommand.d.ts +11 -0
- package/dist-types/commands/GetSiteCommand.d.ts +11 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +11 -0
- package/dist-types/commands/ListCapacityTasksCommand.d.ts +11 -0
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +11 -0
- package/dist-types/commands/ListOrdersCommand.d.ts +11 -0
- package/dist-types/commands/ListOutpostsCommand.d.ts +11 -0
- package/dist-types/commands/ListSitesCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/StartCapacityTaskCommand.d.ts +11 -0
- package/dist-types/commands/StartConnectionCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UpdateOutpostCommand.d.ts +11 -0
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +11 -0
- package/dist-types/commands/UpdateSiteCommand.d.ts +11 -0
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +11 -0
- package/dist-types/ts3.4/commands/CancelCapacityTaskCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetCapacityTaskCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetOutpostSupportedInstanceTypesCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListCapacityTasksCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/StartCapacityTaskCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +12 -1
- package/package.json +35 -35
|
@@ -71,4 +71,15 @@ declare const CancelCapacityTaskCommand_base: {
|
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
73
|
export declare class CancelCapacityTaskCommand extends CancelCapacityTaskCommand_base {
|
|
74
|
+
/** @internal type navigation helper, not in runtime. */
|
|
75
|
+
protected static __types: {
|
|
76
|
+
api: {
|
|
77
|
+
input: CancelCapacityTaskInput;
|
|
78
|
+
output: {};
|
|
79
|
+
};
|
|
80
|
+
sdk: {
|
|
81
|
+
input: CancelCapacityTaskCommandInput;
|
|
82
|
+
output: CancelCapacityTaskCommandOutput;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
74
85
|
}
|
|
@@ -70,4 +70,15 @@ declare const CancelOrderCommand_base: {
|
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
72
|
export declare class CancelOrderCommand extends CancelOrderCommand_base {
|
|
73
|
+
/** @internal type navigation helper, not in runtime. */
|
|
74
|
+
protected static __types: {
|
|
75
|
+
api: {
|
|
76
|
+
input: CancelOrderInput;
|
|
77
|
+
output: {};
|
|
78
|
+
};
|
|
79
|
+
sdk: {
|
|
80
|
+
input: CancelOrderCommandInput;
|
|
81
|
+
output: CancelOrderCommandOutput;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
73
84
|
}
|
|
@@ -114,4 +114,15 @@ declare const CreateOrderCommand_base: {
|
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
116
|
export declare class CreateOrderCommand extends CreateOrderCommand_base {
|
|
117
|
+
/** @internal type navigation helper, not in runtime. */
|
|
118
|
+
protected static __types: {
|
|
119
|
+
api: {
|
|
120
|
+
input: CreateOrderInput;
|
|
121
|
+
output: CreateOrderOutput;
|
|
122
|
+
};
|
|
123
|
+
sdk: {
|
|
124
|
+
input: CreateOrderCommandInput;
|
|
125
|
+
output: CreateOrderCommandOutput;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
117
128
|
}
|
|
@@ -99,4 +99,15 @@ declare const CreateOutpostCommand_base: {
|
|
|
99
99
|
* @public
|
|
100
100
|
*/
|
|
101
101
|
export declare class CreateOutpostCommand extends CreateOutpostCommand_base {
|
|
102
|
+
/** @internal type navigation helper, not in runtime. */
|
|
103
|
+
protected static __types: {
|
|
104
|
+
api: {
|
|
105
|
+
input: CreateOutpostInput;
|
|
106
|
+
output: CreateOutpostOutput;
|
|
107
|
+
};
|
|
108
|
+
sdk: {
|
|
109
|
+
input: CreateOutpostCommandInput;
|
|
110
|
+
output: CreateOutpostCommandOutput;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
102
113
|
}
|
|
@@ -138,4 +138,15 @@ declare const CreateSiteCommand_base: {
|
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
140
|
export declare class CreateSiteCommand extends CreateSiteCommand_base {
|
|
141
|
+
/** @internal type navigation helper, not in runtime. */
|
|
142
|
+
protected static __types: {
|
|
143
|
+
api: {
|
|
144
|
+
input: CreateSiteInput;
|
|
145
|
+
output: CreateSiteOutput;
|
|
146
|
+
};
|
|
147
|
+
sdk: {
|
|
148
|
+
input: CreateSiteCommandInput;
|
|
149
|
+
output: CreateSiteCommandOutput;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
141
152
|
}
|
|
@@ -70,4 +70,15 @@ declare const DeleteOutpostCommand_base: {
|
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
72
|
export declare class DeleteOutpostCommand extends DeleteOutpostCommand_base {
|
|
73
|
+
/** @internal type navigation helper, not in runtime. */
|
|
74
|
+
protected static __types: {
|
|
75
|
+
api: {
|
|
76
|
+
input: DeleteOutpostInput;
|
|
77
|
+
output: {};
|
|
78
|
+
};
|
|
79
|
+
sdk: {
|
|
80
|
+
input: DeleteOutpostCommandInput;
|
|
81
|
+
output: DeleteOutpostCommandOutput;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
73
84
|
}
|
|
@@ -70,4 +70,15 @@ declare const DeleteSiteCommand_base: {
|
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
72
|
export declare class DeleteSiteCommand extends DeleteSiteCommand_base {
|
|
73
|
+
/** @internal type navigation helper, not in runtime. */
|
|
74
|
+
protected static __types: {
|
|
75
|
+
api: {
|
|
76
|
+
input: DeleteSiteInput;
|
|
77
|
+
output: {};
|
|
78
|
+
};
|
|
79
|
+
sdk: {
|
|
80
|
+
input: DeleteSiteCommandInput;
|
|
81
|
+
output: DeleteSiteCommandOutput;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
73
84
|
}
|
|
@@ -87,4 +87,15 @@ declare const GetCapacityTaskCommand_base: {
|
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
89
|
export declare class GetCapacityTaskCommand extends GetCapacityTaskCommand_base {
|
|
90
|
+
/** @internal type navigation helper, not in runtime. */
|
|
91
|
+
protected static __types: {
|
|
92
|
+
api: {
|
|
93
|
+
input: GetCapacityTaskInput;
|
|
94
|
+
output: GetCapacityTaskOutput;
|
|
95
|
+
};
|
|
96
|
+
sdk: {
|
|
97
|
+
input: GetCapacityTaskCommandInput;
|
|
98
|
+
output: GetCapacityTaskCommandOutput;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
90
101
|
}
|
|
@@ -84,4 +84,15 @@ declare const GetCatalogItemCommand_base: {
|
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
86
|
export declare class GetCatalogItemCommand extends GetCatalogItemCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: GetCatalogItemInput;
|
|
91
|
+
output: GetCatalogItemOutput;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: GetCatalogItemCommandInput;
|
|
95
|
+
output: GetCatalogItemCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
87
98
|
}
|
|
@@ -89,4 +89,15 @@ declare const GetConnectionCommand_base: {
|
|
|
89
89
|
* @public
|
|
90
90
|
*/
|
|
91
91
|
export declare class GetConnectionCommand extends GetConnectionCommand_base {
|
|
92
|
+
/** @internal type navigation helper, not in runtime. */
|
|
93
|
+
protected static __types: {
|
|
94
|
+
api: {
|
|
95
|
+
input: GetConnectionRequest;
|
|
96
|
+
output: GetConnectionResponse;
|
|
97
|
+
};
|
|
98
|
+
sdk: {
|
|
99
|
+
input: GetConnectionCommandInput;
|
|
100
|
+
output: GetConnectionCommandOutput;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
92
103
|
}
|
|
@@ -97,4 +97,15 @@ declare const GetOrderCommand_base: {
|
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
99
|
export declare class GetOrderCommand extends GetOrderCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: GetOrderInput;
|
|
104
|
+
output: GetOrderOutput;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: GetOrderCommandInput;
|
|
108
|
+
output: GetOrderCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
100
111
|
}
|
|
@@ -84,4 +84,15 @@ declare const GetOutpostCommand_base: {
|
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
86
|
export declare class GetOutpostCommand extends GetOutpostCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: GetOutpostInput;
|
|
91
|
+
output: GetOutpostOutput;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: GetOutpostCommandInput;
|
|
95
|
+
output: GetOutpostCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
87
98
|
}
|
|
@@ -79,4 +79,15 @@ declare const GetOutpostInstanceTypesCommand_base: {
|
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
81
|
export declare class GetOutpostInstanceTypesCommand extends GetOutpostInstanceTypesCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: GetOutpostInstanceTypesInput;
|
|
86
|
+
output: GetOutpostInstanceTypesOutput;
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: GetOutpostInstanceTypesCommandInput;
|
|
90
|
+
output: GetOutpostInstanceTypesCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
82
93
|
}
|
|
@@ -81,4 +81,15 @@ declare const GetOutpostSupportedInstanceTypesCommand_base: {
|
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
83
|
export declare class GetOutpostSupportedInstanceTypesCommand extends GetOutpostSupportedInstanceTypesCommand_base {
|
|
84
|
+
/** @internal type navigation helper, not in runtime. */
|
|
85
|
+
protected static __types: {
|
|
86
|
+
api: {
|
|
87
|
+
input: GetOutpostSupportedInstanceTypesInput;
|
|
88
|
+
output: GetOutpostSupportedInstanceTypesOutput;
|
|
89
|
+
};
|
|
90
|
+
sdk: {
|
|
91
|
+
input: GetOutpostSupportedInstanceTypesCommandInput;
|
|
92
|
+
output: GetOutpostSupportedInstanceTypesCommandOutput;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
84
95
|
}
|
|
@@ -84,4 +84,15 @@ declare const GetSiteAddressCommand_base: {
|
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
86
|
export declare class GetSiteAddressCommand extends GetSiteAddressCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: GetSiteAddressInput;
|
|
91
|
+
output: GetSiteAddressOutput;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: GetSiteAddressCommandInput;
|
|
95
|
+
output: GetSiteAddressCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
87
98
|
}
|
|
@@ -93,4 +93,15 @@ declare const GetSiteCommand_base: {
|
|
|
93
93
|
* @public
|
|
94
94
|
*/
|
|
95
95
|
export declare class GetSiteCommand extends GetSiteCommand_base {
|
|
96
|
+
/** @internal type navigation helper, not in runtime. */
|
|
97
|
+
protected static __types: {
|
|
98
|
+
api: {
|
|
99
|
+
input: GetSiteInput;
|
|
100
|
+
output: GetSiteOutput;
|
|
101
|
+
};
|
|
102
|
+
sdk: {
|
|
103
|
+
input: GetSiteCommandInput;
|
|
104
|
+
output: GetSiteCommandOutput;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
96
107
|
}
|
|
@@ -97,4 +97,15 @@ declare const ListAssetsCommand_base: {
|
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
99
|
export declare class ListAssetsCommand extends ListAssetsCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: ListAssetsInput;
|
|
104
|
+
output: ListAssetsOutput;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: ListAssetsCommandInput;
|
|
108
|
+
output: ListAssetsCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
100
111
|
}
|
|
@@ -88,4 +88,15 @@ declare const ListCapacityTasksCommand_base: {
|
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
90
|
export declare class ListCapacityTasksCommand extends ListCapacityTasksCommand_base {
|
|
91
|
+
/** @internal type navigation helper, not in runtime. */
|
|
92
|
+
protected static __types: {
|
|
93
|
+
api: {
|
|
94
|
+
input: ListCapacityTasksInput;
|
|
95
|
+
output: ListCapacityTasksOutput;
|
|
96
|
+
};
|
|
97
|
+
sdk: {
|
|
98
|
+
input: ListCapacityTasksCommandInput;
|
|
99
|
+
output: ListCapacityTasksCommandOutput;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
91
102
|
}
|
|
@@ -100,4 +100,15 @@ declare const ListCatalogItemsCommand_base: {
|
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
102
|
export declare class ListCatalogItemsCommand extends ListCatalogItemsCommand_base {
|
|
103
|
+
/** @internal type navigation helper, not in runtime. */
|
|
104
|
+
protected static __types: {
|
|
105
|
+
api: {
|
|
106
|
+
input: ListCatalogItemsInput;
|
|
107
|
+
output: ListCatalogItemsOutput;
|
|
108
|
+
};
|
|
109
|
+
sdk: {
|
|
110
|
+
input: ListCatalogItemsCommandInput;
|
|
111
|
+
output: ListCatalogItemsCommandOutput;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
103
114
|
}
|
|
@@ -84,4 +84,15 @@ declare const ListOrdersCommand_base: {
|
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
86
|
export declare class ListOrdersCommand extends ListOrdersCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: ListOrdersInput;
|
|
91
|
+
output: ListOrdersOutput;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: ListOrdersCommandInput;
|
|
95
|
+
output: ListOrdersCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
87
98
|
}
|
|
@@ -97,4 +97,15 @@ declare const ListOutpostsCommand_base: {
|
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
99
|
export declare class ListOutpostsCommand extends ListOutpostsCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: ListOutpostsInput;
|
|
104
|
+
output: ListOutpostsOutput;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: ListOutpostsCommandInput;
|
|
108
|
+
output: ListOutpostsCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
100
111
|
}
|
|
@@ -107,4 +107,15 @@ declare const ListSitesCommand_base: {
|
|
|
107
107
|
* @public
|
|
108
108
|
*/
|
|
109
109
|
export declare class ListSitesCommand extends ListSitesCommand_base {
|
|
110
|
+
/** @internal type navigation helper, not in runtime. */
|
|
111
|
+
protected static __types: {
|
|
112
|
+
api: {
|
|
113
|
+
input: ListSitesInput;
|
|
114
|
+
output: ListSitesOutput;
|
|
115
|
+
};
|
|
116
|
+
sdk: {
|
|
117
|
+
input: ListSitesCommandInput;
|
|
118
|
+
output: ListSitesCommandOutput;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
110
121
|
}
|
|
@@ -68,4 +68,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
68
68
|
* @public
|
|
69
69
|
*/
|
|
70
70
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
71
|
+
/** @internal type navigation helper, not in runtime. */
|
|
72
|
+
protected static __types: {
|
|
73
|
+
api: {
|
|
74
|
+
input: ListTagsForResourceRequest;
|
|
75
|
+
output: ListTagsForResourceResponse;
|
|
76
|
+
};
|
|
77
|
+
sdk: {
|
|
78
|
+
input: ListTagsForResourceCommandInput;
|
|
79
|
+
output: ListTagsForResourceCommandOutput;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
71
82
|
}
|
|
@@ -97,4 +97,15 @@ declare const StartCapacityTaskCommand_base: {
|
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
99
|
export declare class StartCapacityTaskCommand extends StartCapacityTaskCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: StartCapacityTaskInput;
|
|
104
|
+
output: StartCapacityTaskOutput;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: StartCapacityTaskCommandInput;
|
|
108
|
+
output: StartCapacityTaskCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
100
111
|
}
|
|
@@ -83,4 +83,15 @@ declare const StartConnectionCommand_base: {
|
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
85
|
export declare class StartConnectionCommand extends StartConnectionCommand_base {
|
|
86
|
+
/** @internal type navigation helper, not in runtime. */
|
|
87
|
+
protected static __types: {
|
|
88
|
+
api: {
|
|
89
|
+
input: StartConnectionRequest;
|
|
90
|
+
output: StartConnectionResponse;
|
|
91
|
+
};
|
|
92
|
+
sdk: {
|
|
93
|
+
input: StartConnectionCommandInput;
|
|
94
|
+
output: StartConnectionCommandOutput;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
86
97
|
}
|
|
@@ -67,4 +67,15 @@ declare const TagResourceCommand_base: {
|
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
69
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
70
|
+
/** @internal type navigation helper, not in runtime. */
|
|
71
|
+
protected static __types: {
|
|
72
|
+
api: {
|
|
73
|
+
input: TagResourceRequest;
|
|
74
|
+
output: {};
|
|
75
|
+
};
|
|
76
|
+
sdk: {
|
|
77
|
+
input: TagResourceCommandInput;
|
|
78
|
+
output: TagResourceCommandOutput;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
70
81
|
}
|
|
@@ -67,4 +67,15 @@ declare const UntagResourceCommand_base: {
|
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
69
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
70
|
+
/** @internal type navigation helper, not in runtime. */
|
|
71
|
+
protected static __types: {
|
|
72
|
+
api: {
|
|
73
|
+
input: UntagResourceRequest;
|
|
74
|
+
output: {};
|
|
75
|
+
};
|
|
76
|
+
sdk: {
|
|
77
|
+
input: UntagResourceCommandInput;
|
|
78
|
+
output: UntagResourceCommandOutput;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
70
81
|
}
|
|
@@ -90,4 +90,15 @@ declare const UpdateOutpostCommand_base: {
|
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
92
|
export declare class UpdateOutpostCommand extends UpdateOutpostCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: UpdateOutpostInput;
|
|
97
|
+
output: UpdateOutpostOutput;
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: UpdateOutpostCommandInput;
|
|
101
|
+
output: UpdateOutpostCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
93
104
|
}
|
|
@@ -103,4 +103,15 @@ declare const UpdateSiteAddressCommand_base: {
|
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
105
|
export declare class UpdateSiteAddressCommand extends UpdateSiteAddressCommand_base {
|
|
106
|
+
/** @internal type navigation helper, not in runtime. */
|
|
107
|
+
protected static __types: {
|
|
108
|
+
api: {
|
|
109
|
+
input: UpdateSiteAddressInput;
|
|
110
|
+
output: UpdateSiteAddressOutput;
|
|
111
|
+
};
|
|
112
|
+
sdk: {
|
|
113
|
+
input: UpdateSiteAddressCommandInput;
|
|
114
|
+
output: UpdateSiteAddressCommandOutput;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
106
117
|
}
|
|
@@ -99,4 +99,15 @@ declare const UpdateSiteCommand_base: {
|
|
|
99
99
|
* @public
|
|
100
100
|
*/
|
|
101
101
|
export declare class UpdateSiteCommand extends UpdateSiteCommand_base {
|
|
102
|
+
/** @internal type navigation helper, not in runtime. */
|
|
103
|
+
protected static __types: {
|
|
104
|
+
api: {
|
|
105
|
+
input: UpdateSiteInput;
|
|
106
|
+
output: UpdateSiteOutput;
|
|
107
|
+
};
|
|
108
|
+
sdk: {
|
|
109
|
+
input: UpdateSiteCommandInput;
|
|
110
|
+
output: UpdateSiteCommandOutput;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
102
113
|
}
|
|
@@ -110,4 +110,15 @@ declare const UpdateSiteRackPhysicalPropertiesCommand_base: {
|
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
112
|
export declare class UpdateSiteRackPhysicalPropertiesCommand extends UpdateSiteRackPhysicalPropertiesCommand_base {
|
|
113
|
+
/** @internal type navigation helper, not in runtime. */
|
|
114
|
+
protected static __types: {
|
|
115
|
+
api: {
|
|
116
|
+
input: UpdateSiteRackPhysicalPropertiesInput;
|
|
117
|
+
output: UpdateSiteRackPhysicalPropertiesOutput;
|
|
118
|
+
};
|
|
119
|
+
sdk: {
|
|
120
|
+
input: UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
121
|
+
output: UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
113
124
|
}
|
|
@@ -37,4 +37,15 @@ declare const CancelCapacityTaskCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class CancelCapacityTaskCommand extends CancelCapacityTaskCommand_base {
|
|
40
|
+
export declare class CancelCapacityTaskCommand extends CancelCapacityTaskCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CancelCapacityTaskInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CancelCapacityTaskCommandInput;
|
|
48
|
+
output: CancelCapacityTaskCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const CancelOrderCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class CancelOrderCommand extends CancelOrderCommand_base {
|
|
36
|
+
export declare class CancelOrderCommand extends CancelOrderCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CancelOrderInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CancelOrderCommandInput;
|
|
44
|
+
output: CancelOrderCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const CreateOrderCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class CreateOrderCommand extends CreateOrderCommand_base {
|
|
36
|
+
export declare class CreateOrderCommand extends CreateOrderCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateOrderInput;
|
|
40
|
+
output: CreateOrderOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateOrderCommandInput;
|
|
44
|
+
output: CreateOrderCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const CreateOutpostCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class CreateOutpostCommand extends CreateOutpostCommand_base {
|
|
36
|
+
export declare class CreateOutpostCommand extends CreateOutpostCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateOutpostInput;
|
|
40
|
+
output: CreateOutpostOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateOutpostCommandInput;
|
|
44
|
+
output: CreateOutpostCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const CreateSiteCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class CreateSiteCommand extends CreateSiteCommand_base {
|
|
36
|
+
export declare class CreateSiteCommand extends CreateSiteCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateSiteInput;
|
|
40
|
+
output: CreateSiteOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateSiteCommandInput;
|
|
44
|
+
output: CreateSiteCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const DeleteOutpostCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class DeleteOutpostCommand extends DeleteOutpostCommand_base {
|
|
36
|
+
export declare class DeleteOutpostCommand extends DeleteOutpostCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteOutpostInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteOutpostCommandInput;
|
|
44
|
+
output: DeleteOutpostCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const DeleteSiteCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class DeleteSiteCommand extends DeleteSiteCommand_base {
|
|
36
|
+
export declare class DeleteSiteCommand extends DeleteSiteCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteSiteInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteSiteCommandInput;
|
|
44
|
+
output: DeleteSiteCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const GetCapacityTaskCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class GetCapacityTaskCommand extends GetCapacityTaskCommand_base {
|
|
39
|
+
export declare class GetCapacityTaskCommand extends GetCapacityTaskCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetCapacityTaskInput;
|
|
43
|
+
output: GetCapacityTaskOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetCapacityTaskCommandInput;
|
|
47
|
+
output: GetCapacityTaskCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const GetCatalogItemCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class GetCatalogItemCommand extends GetCatalogItemCommand_base {
|
|
36
|
+
export declare class GetCatalogItemCommand extends GetCatalogItemCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetCatalogItemInput;
|
|
40
|
+
output: GetCatalogItemOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetCatalogItemCommandInput;
|
|
44
|
+
output: GetCatalogItemCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const GetConnectionCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class GetConnectionCommand extends GetConnectionCommand_base {
|
|
39
|
+
export declare class GetConnectionCommand extends GetConnectionCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetConnectionRequest;
|
|
43
|
+
output: GetConnectionResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetConnectionCommandInput;
|
|
47
|
+
output: GetConnectionCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const GetOrderCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class GetOrderCommand extends GetOrderCommand_base {
|
|
36
|
+
export declare class GetOrderCommand extends GetOrderCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetOrderInput;
|
|
40
|
+
output: GetOrderOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetOrderCommandInput;
|
|
44
|
+
output: GetOrderCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const GetOutpostCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class GetOutpostCommand extends GetOutpostCommand_base {
|
|
36
|
+
export declare class GetOutpostCommand extends GetOutpostCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetOutpostInput;
|
|
40
|
+
output: GetOutpostOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetOutpostCommandInput;
|
|
44
|
+
output: GetOutpostCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetOutpostInstanceTypesCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetOutpostInstanceTypesCommand extends GetOutpostInstanceTypesCommand_base {
|
|
40
|
+
export declare class GetOutpostInstanceTypesCommand extends GetOutpostInstanceTypesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetOutpostInstanceTypesInput;
|
|
44
|
+
output: GetOutpostInstanceTypesOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetOutpostInstanceTypesCommandInput;
|
|
48
|
+
output: GetOutpostInstanceTypesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetOutpostSupportedInstanceTypesCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetOutpostSupportedInstanceTypesCommand extends GetOutpostSupportedInstanceTypesCommand_base {
|
|
40
|
+
export declare class GetOutpostSupportedInstanceTypesCommand extends GetOutpostSupportedInstanceTypesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetOutpostSupportedInstanceTypesInput;
|
|
44
|
+
output: GetOutpostSupportedInstanceTypesOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetOutpostSupportedInstanceTypesCommandInput;
|
|
48
|
+
output: GetOutpostSupportedInstanceTypesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const GetSiteAddressCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class GetSiteAddressCommand extends GetSiteAddressCommand_base {
|
|
36
|
+
export declare class GetSiteAddressCommand extends GetSiteAddressCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetSiteAddressInput;
|
|
40
|
+
output: GetSiteAddressOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetSiteAddressCommandInput;
|
|
44
|
+
output: GetSiteAddressCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -27,4 +27,15 @@ declare const GetSiteCommand_base: {
|
|
|
27
27
|
>;
|
|
28
28
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
29
|
};
|
|
30
|
-
export declare class GetSiteCommand extends GetSiteCommand_base {
|
|
30
|
+
export declare class GetSiteCommand extends GetSiteCommand_base {
|
|
31
|
+
protected static __types: {
|
|
32
|
+
api: {
|
|
33
|
+
input: GetSiteInput;
|
|
34
|
+
output: GetSiteOutput;
|
|
35
|
+
};
|
|
36
|
+
sdk: {
|
|
37
|
+
input: GetSiteCommandInput;
|
|
38
|
+
output: GetSiteCommandOutput;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const ListAssetsCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class ListAssetsCommand extends ListAssetsCommand_base {
|
|
36
|
+
export declare class ListAssetsCommand extends ListAssetsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListAssetsInput;
|
|
40
|
+
output: ListAssetsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListAssetsCommandInput;
|
|
44
|
+
output: ListAssetsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const ListCapacityTasksCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class ListCapacityTasksCommand extends ListCapacityTasksCommand_base {
|
|
39
|
+
export declare class ListCapacityTasksCommand extends ListCapacityTasksCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListCapacityTasksInput;
|
|
43
|
+
output: ListCapacityTasksOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListCapacityTasksCommandInput;
|
|
47
|
+
output: ListCapacityTasksCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const ListCatalogItemsCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class ListCatalogItemsCommand extends ListCatalogItemsCommand_base {
|
|
39
|
+
export declare class ListCatalogItemsCommand extends ListCatalogItemsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListCatalogItemsInput;
|
|
43
|
+
output: ListCatalogItemsOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListCatalogItemsCommandInput;
|
|
47
|
+
output: ListCatalogItemsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const ListOrdersCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class ListOrdersCommand extends ListOrdersCommand_base {
|
|
36
|
+
export declare class ListOrdersCommand extends ListOrdersCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListOrdersInput;
|
|
40
|
+
output: ListOrdersOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListOrdersCommandInput;
|
|
44
|
+
output: ListOrdersCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const ListOutpostsCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class ListOutpostsCommand extends ListOutpostsCommand_base {
|
|
36
|
+
export declare class ListOutpostsCommand extends ListOutpostsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListOutpostsInput;
|
|
40
|
+
output: ListOutpostsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListOutpostsCommandInput;
|
|
44
|
+
output: ListOutpostsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const ListSitesCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class ListSitesCommand extends ListSitesCommand_base {
|
|
36
|
+
export declare class ListSitesCommand extends ListSitesCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListSitesInput;
|
|
40
|
+
output: ListSitesOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListSitesCommandInput;
|
|
44
|
+
output: ListSitesCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTagsForResourceRequest;
|
|
44
|
+
output: ListTagsForResourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTagsForResourceCommandInput;
|
|
48
|
+
output: ListTagsForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const StartCapacityTaskCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class StartCapacityTaskCommand extends StartCapacityTaskCommand_base {
|
|
39
|
+
export declare class StartCapacityTaskCommand extends StartCapacityTaskCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartCapacityTaskInput;
|
|
43
|
+
output: StartCapacityTaskOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartCapacityTaskCommandInput;
|
|
47
|
+
output: StartCapacityTaskCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const StartConnectionCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class StartConnectionCommand extends StartConnectionCommand_base {
|
|
39
|
+
export declare class StartConnectionCommand extends StartConnectionCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartConnectionRequest;
|
|
43
|
+
output: StartConnectionResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartConnectionCommandInput;
|
|
47
|
+
output: StartConnectionCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const TagResourceCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
36
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: TagResourceRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: TagResourceCommandInput;
|
|
44
|
+
output: TagResourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const UntagResourceCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
39
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UntagResourceRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UntagResourceCommandInput;
|
|
47
|
+
output: UntagResourceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const UpdateOutpostCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class UpdateOutpostCommand extends UpdateOutpostCommand_base {
|
|
36
|
+
export declare class UpdateOutpostCommand extends UpdateOutpostCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdateOutpostInput;
|
|
40
|
+
output: UpdateOutpostOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdateOutpostCommandInput;
|
|
44
|
+
output: UpdateOutpostCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const UpdateSiteAddressCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class UpdateSiteAddressCommand extends UpdateSiteAddressCommand_base {
|
|
39
|
+
export declare class UpdateSiteAddressCommand extends UpdateSiteAddressCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateSiteAddressInput;
|
|
43
|
+
output: UpdateSiteAddressOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateSiteAddressCommandInput;
|
|
47
|
+
output: UpdateSiteAddressCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const UpdateSiteCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class UpdateSiteCommand extends UpdateSiteCommand_base {
|
|
36
|
+
export declare class UpdateSiteCommand extends UpdateSiteCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdateSiteInput;
|
|
40
|
+
output: UpdateSiteOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdateSiteCommandInput;
|
|
44
|
+
output: UpdateSiteCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const UpdateSiteRackPhysicalPropertiesCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class UpdateSiteRackPhysicalPropertiesCommand extends UpdateSiteRackPhysicalPropertiesCommand_base {
|
|
40
|
+
export declare class UpdateSiteRackPhysicalPropertiesCommand extends UpdateSiteRackPhysicalPropertiesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateSiteRackPhysicalPropertiesInput;
|
|
44
|
+
output: UpdateSiteRackPhysicalPropertiesOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
48
|
+
output: UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.654.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-outposts",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.3.
|
|
50
|
-
"@smithy/types": "^3.4.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.654.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.654.0",
|
|
25
|
+
"@aws-sdk/core": "3.654.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.654.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.654.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.654.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.654.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.654.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.654.0",
|
|
32
|
+
"@aws-sdk/types": "3.654.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.654.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.654.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.654.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.8",
|
|
37
|
+
"@smithy/core": "^2.4.3",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.7",
|
|
39
|
+
"@smithy/hash-node": "^3.0.6",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.6",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.8",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.3",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.18",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.6",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.6",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.7",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.2",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.3",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.2",
|
|
50
|
+
"@smithy/types": "^3.4.2",
|
|
51
|
+
"@smithy/url-parser": "^3.0.6",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.18",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.18",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.2",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.6",
|
|
59
|
+
"@smithy/util-retry": "^3.0.6",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|