@aws-sdk/client-amplifybackend 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/CloneBackendCommand.d.ts +11 -0
- package/dist-types/commands/CreateBackendAPICommand.d.ts +11 -0
- package/dist-types/commands/CreateBackendAuthCommand.d.ts +11 -0
- package/dist-types/commands/CreateBackendCommand.d.ts +11 -0
- package/dist-types/commands/CreateBackendConfigCommand.d.ts +11 -0
- package/dist-types/commands/CreateBackendStorageCommand.d.ts +11 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +11 -0
- package/dist-types/commands/DeleteBackendAPICommand.d.ts +11 -0
- package/dist-types/commands/DeleteBackendAuthCommand.d.ts +11 -0
- package/dist-types/commands/DeleteBackendCommand.d.ts +11 -0
- package/dist-types/commands/DeleteBackendStorageCommand.d.ts +11 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +11 -0
- package/dist-types/commands/GenerateBackendAPIModelsCommand.d.ts +11 -0
- package/dist-types/commands/GetBackendAPICommand.d.ts +11 -0
- package/dist-types/commands/GetBackendAPIModelsCommand.d.ts +11 -0
- package/dist-types/commands/GetBackendAuthCommand.d.ts +11 -0
- package/dist-types/commands/GetBackendCommand.d.ts +11 -0
- package/dist-types/commands/GetBackendJobCommand.d.ts +11 -0
- package/dist-types/commands/GetBackendStorageCommand.d.ts +11 -0
- package/dist-types/commands/GetTokenCommand.d.ts +11 -0
- package/dist-types/commands/ImportBackendAuthCommand.d.ts +11 -0
- package/dist-types/commands/ImportBackendStorageCommand.d.ts +11 -0
- package/dist-types/commands/ListBackendJobsCommand.d.ts +11 -0
- package/dist-types/commands/ListS3BucketsCommand.d.ts +11 -0
- package/dist-types/commands/RemoveAllBackendsCommand.d.ts +11 -0
- package/dist-types/commands/RemoveBackendConfigCommand.d.ts +11 -0
- package/dist-types/commands/UpdateBackendAPICommand.d.ts +11 -0
- package/dist-types/commands/UpdateBackendAuthCommand.d.ts +11 -0
- package/dist-types/commands/UpdateBackendConfigCommand.d.ts +11 -0
- package/dist-types/commands/UpdateBackendJobCommand.d.ts +11 -0
- package/dist-types/commands/UpdateBackendStorageCommand.d.ts +11 -0
- package/dist-types/ts3.4/commands/CloneBackendCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateBackendAPICommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateBackendAuthCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateBackendCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateBackendConfigCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteBackendAPICommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteBackendAuthCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteBackendCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GenerateBackendAPIModelsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetBackendAPICommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetBackendAPIModelsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetBackendAuthCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetBackendCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetBackendJobCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetTokenCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ImportBackendAuthCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListBackendJobsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/RemoveAllBackendsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/RemoveBackendConfigCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateBackendAPICommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateBackendAuthCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateBackendConfigCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateBackendJobCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +12 -1
- package/package.json +35 -35
|
@@ -76,4 +76,15 @@ declare const CloneBackendCommand_base: {
|
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
78
|
export declare class CloneBackendCommand extends CloneBackendCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: CloneBackendRequest;
|
|
83
|
+
output: CloneBackendResponse;
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: CloneBackendCommandInput;
|
|
87
|
+
output: CloneBackendCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
79
90
|
}
|
|
@@ -112,4 +112,15 @@ declare const CreateBackendAPICommand_base: {
|
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
114
|
export declare class CreateBackendAPICommand extends CreateBackendAPICommand_base {
|
|
115
|
+
/** @internal type navigation helper, not in runtime. */
|
|
116
|
+
protected static __types: {
|
|
117
|
+
api: {
|
|
118
|
+
input: CreateBackendAPIRequest;
|
|
119
|
+
output: CreateBackendAPIResponse;
|
|
120
|
+
};
|
|
121
|
+
sdk: {
|
|
122
|
+
input: CreateBackendAPICommandInput;
|
|
123
|
+
output: CreateBackendAPICommandOutput;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
115
126
|
}
|
|
@@ -159,4 +159,15 @@ declare const CreateBackendAuthCommand_base: {
|
|
|
159
159
|
* @public
|
|
160
160
|
*/
|
|
161
161
|
export declare class CreateBackendAuthCommand extends CreateBackendAuthCommand_base {
|
|
162
|
+
/** @internal type navigation helper, not in runtime. */
|
|
163
|
+
protected static __types: {
|
|
164
|
+
api: {
|
|
165
|
+
input: CreateBackendAuthRequest;
|
|
166
|
+
output: CreateBackendAuthResponse;
|
|
167
|
+
};
|
|
168
|
+
sdk: {
|
|
169
|
+
input: CreateBackendAuthCommandInput;
|
|
170
|
+
output: CreateBackendAuthCommandOutput;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
162
173
|
}
|
|
@@ -78,4 +78,15 @@ declare const CreateBackendCommand_base: {
|
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
80
|
export declare class CreateBackendCommand extends CreateBackendCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: CreateBackendRequest;
|
|
85
|
+
output: CreateBackendResponse;
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: CreateBackendCommandInput;
|
|
89
|
+
output: CreateBackendCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
81
92
|
}
|
|
@@ -73,4 +73,15 @@ declare const CreateBackendConfigCommand_base: {
|
|
|
73
73
|
* @public
|
|
74
74
|
*/
|
|
75
75
|
export declare class CreateBackendConfigCommand extends CreateBackendConfigCommand_base {
|
|
76
|
+
/** @internal type navigation helper, not in runtime. */
|
|
77
|
+
protected static __types: {
|
|
78
|
+
api: {
|
|
79
|
+
input: CreateBackendConfigRequest;
|
|
80
|
+
output: CreateBackendConfigResponse;
|
|
81
|
+
};
|
|
82
|
+
sdk: {
|
|
83
|
+
input: CreateBackendConfigCommandInput;
|
|
84
|
+
output: CreateBackendConfigCommandOutput;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
76
87
|
}
|
|
@@ -86,4 +86,15 @@ declare const CreateBackendStorageCommand_base: {
|
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
88
|
export declare class CreateBackendStorageCommand extends CreateBackendStorageCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: CreateBackendStorageRequest;
|
|
93
|
+
output: CreateBackendStorageResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: CreateBackendStorageCommandInput;
|
|
97
|
+
output: CreateBackendStorageCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
89
100
|
}
|
|
@@ -72,4 +72,15 @@ declare const CreateTokenCommand_base: {
|
|
|
72
72
|
* @public
|
|
73
73
|
*/
|
|
74
74
|
export declare class CreateTokenCommand extends CreateTokenCommand_base {
|
|
75
|
+
/** @internal type navigation helper, not in runtime. */
|
|
76
|
+
protected static __types: {
|
|
77
|
+
api: {
|
|
78
|
+
input: CreateTokenRequest;
|
|
79
|
+
output: CreateTokenResponse;
|
|
80
|
+
};
|
|
81
|
+
sdk: {
|
|
82
|
+
input: CreateTokenCommandInput;
|
|
83
|
+
output: CreateTokenCommandOutput;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
75
86
|
}
|
|
@@ -112,4 +112,15 @@ declare const DeleteBackendAPICommand_base: {
|
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
114
|
export declare class DeleteBackendAPICommand extends DeleteBackendAPICommand_base {
|
|
115
|
+
/** @internal type navigation helper, not in runtime. */
|
|
116
|
+
protected static __types: {
|
|
117
|
+
api: {
|
|
118
|
+
input: DeleteBackendAPIRequest;
|
|
119
|
+
output: DeleteBackendAPIResponse;
|
|
120
|
+
};
|
|
121
|
+
sdk: {
|
|
122
|
+
input: DeleteBackendAPICommandInput;
|
|
123
|
+
output: DeleteBackendAPICommandOutput;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
115
126
|
}
|
|
@@ -76,4 +76,15 @@ declare const DeleteBackendAuthCommand_base: {
|
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
78
|
export declare class DeleteBackendAuthCommand extends DeleteBackendAuthCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: DeleteBackendAuthRequest;
|
|
83
|
+
output: DeleteBackendAuthResponse;
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: DeleteBackendAuthCommandInput;
|
|
87
|
+
output: DeleteBackendAuthCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
79
90
|
}
|
|
@@ -75,4 +75,15 @@ declare const DeleteBackendCommand_base: {
|
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
77
|
export declare class DeleteBackendCommand extends DeleteBackendCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: DeleteBackendRequest;
|
|
82
|
+
output: DeleteBackendResponse;
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: DeleteBackendCommandInput;
|
|
86
|
+
output: DeleteBackendCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
78
89
|
}
|
|
@@ -75,4 +75,15 @@ declare const DeleteBackendStorageCommand_base: {
|
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
77
|
export declare class DeleteBackendStorageCommand extends DeleteBackendStorageCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: DeleteBackendStorageRequest;
|
|
82
|
+
output: DeleteBackendStorageResponse;
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: DeleteBackendStorageCommandInput;
|
|
86
|
+
output: DeleteBackendStorageCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
78
89
|
}
|
|
@@ -70,4 +70,15 @@ declare const DeleteTokenCommand_base: {
|
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
72
|
export declare class DeleteTokenCommand extends DeleteTokenCommand_base {
|
|
73
|
+
/** @internal type navigation helper, not in runtime. */
|
|
74
|
+
protected static __types: {
|
|
75
|
+
api: {
|
|
76
|
+
input: DeleteTokenRequest;
|
|
77
|
+
output: DeleteTokenResponse;
|
|
78
|
+
};
|
|
79
|
+
sdk: {
|
|
80
|
+
input: DeleteTokenCommandInput;
|
|
81
|
+
output: DeleteTokenCommandOutput;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
73
84
|
}
|
|
@@ -76,4 +76,15 @@ declare const GenerateBackendAPIModelsCommand_base: {
|
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
78
|
export declare class GenerateBackendAPIModelsCommand extends GenerateBackendAPIModelsCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: GenerateBackendAPIModelsRequest;
|
|
83
|
+
output: GenerateBackendAPIModelsResponse;
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: GenerateBackendAPIModelsCommandInput;
|
|
87
|
+
output: GenerateBackendAPIModelsCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
79
90
|
}
|
|
@@ -146,4 +146,15 @@ declare const GetBackendAPICommand_base: {
|
|
|
146
146
|
* @public
|
|
147
147
|
*/
|
|
148
148
|
export declare class GetBackendAPICommand extends GetBackendAPICommand_base {
|
|
149
|
+
/** @internal type navigation helper, not in runtime. */
|
|
150
|
+
protected static __types: {
|
|
151
|
+
api: {
|
|
152
|
+
input: GetBackendAPIRequest;
|
|
153
|
+
output: GetBackendAPIResponse;
|
|
154
|
+
};
|
|
155
|
+
sdk: {
|
|
156
|
+
input: GetBackendAPICommandInput;
|
|
157
|
+
output: GetBackendAPICommandOutput;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
149
160
|
}
|
|
@@ -73,4 +73,15 @@ declare const GetBackendAPIModelsCommand_base: {
|
|
|
73
73
|
* @public
|
|
74
74
|
*/
|
|
75
75
|
export declare class GetBackendAPIModelsCommand extends GetBackendAPIModelsCommand_base {
|
|
76
|
+
/** @internal type navigation helper, not in runtime. */
|
|
77
|
+
protected static __types: {
|
|
78
|
+
api: {
|
|
79
|
+
input: GetBackendAPIModelsRequest;
|
|
80
|
+
output: GetBackendAPIModelsResponse;
|
|
81
|
+
};
|
|
82
|
+
sdk: {
|
|
83
|
+
input: GetBackendAPIModelsCommandInput;
|
|
84
|
+
output: GetBackendAPIModelsCommandOutput;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
76
87
|
}
|
|
@@ -157,4 +157,15 @@ declare const GetBackendAuthCommand_base: {
|
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
159
|
export declare class GetBackendAuthCommand extends GetBackendAuthCommand_base {
|
|
160
|
+
/** @internal type navigation helper, not in runtime. */
|
|
161
|
+
protected static __types: {
|
|
162
|
+
api: {
|
|
163
|
+
input: GetBackendAuthRequest;
|
|
164
|
+
output: GetBackendAuthResponse;
|
|
165
|
+
};
|
|
166
|
+
sdk: {
|
|
167
|
+
input: GetBackendAuthCommandInput;
|
|
168
|
+
output: GetBackendAuthCommandOutput;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
160
171
|
}
|
|
@@ -78,4 +78,15 @@ declare const GetBackendCommand_base: {
|
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
80
|
export declare class GetBackendCommand extends GetBackendCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: GetBackendRequest;
|
|
85
|
+
output: GetBackendResponse;
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: GetBackendCommandInput;
|
|
89
|
+
output: GetBackendCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
81
92
|
}
|
|
@@ -78,4 +78,15 @@ declare const GetBackendJobCommand_base: {
|
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
80
|
export declare class GetBackendJobCommand extends GetBackendJobCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: GetBackendJobRequest;
|
|
85
|
+
output: GetBackendJobResponse;
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: GetBackendJobCommandInput;
|
|
89
|
+
output: GetBackendJobCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
81
92
|
}
|
|
@@ -86,4 +86,15 @@ declare const GetBackendStorageCommand_base: {
|
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
88
|
export declare class GetBackendStorageCommand extends GetBackendStorageCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: GetBackendStorageRequest;
|
|
93
|
+
output: GetBackendStorageResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: GetBackendStorageCommandInput;
|
|
97
|
+
output: GetBackendStorageCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
89
100
|
}
|
|
@@ -73,4 +73,15 @@ declare const GetTokenCommand_base: {
|
|
|
73
73
|
* @public
|
|
74
74
|
*/
|
|
75
75
|
export declare class GetTokenCommand extends GetTokenCommand_base {
|
|
76
|
+
/** @internal type navigation helper, not in runtime. */
|
|
77
|
+
protected static __types: {
|
|
78
|
+
api: {
|
|
79
|
+
input: GetTokenRequest;
|
|
80
|
+
output: GetTokenResponse;
|
|
81
|
+
};
|
|
82
|
+
sdk: {
|
|
83
|
+
input: GetTokenCommandInput;
|
|
84
|
+
output: GetTokenCommandOutput;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
76
87
|
}
|
|
@@ -79,4 +79,15 @@ declare const ImportBackendAuthCommand_base: {
|
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
81
|
export declare class ImportBackendAuthCommand extends ImportBackendAuthCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: ImportBackendAuthRequest;
|
|
86
|
+
output: ImportBackendAuthResponse;
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: ImportBackendAuthCommandInput;
|
|
90
|
+
output: ImportBackendAuthCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
82
93
|
}
|
|
@@ -75,4 +75,15 @@ declare const ImportBackendStorageCommand_base: {
|
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
77
|
export declare class ImportBackendStorageCommand extends ImportBackendStorageCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: ImportBackendStorageRequest;
|
|
82
|
+
output: ImportBackendStorageResponse;
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: ImportBackendStorageCommandInput;
|
|
86
|
+
output: ImportBackendStorageCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
78
89
|
}
|
|
@@ -87,4 +87,15 @@ declare const ListBackendJobsCommand_base: {
|
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
89
|
export declare class ListBackendJobsCommand extends ListBackendJobsCommand_base {
|
|
90
|
+
/** @internal type navigation helper, not in runtime. */
|
|
91
|
+
protected static __types: {
|
|
92
|
+
api: {
|
|
93
|
+
input: ListBackendJobsRequest;
|
|
94
|
+
output: ListBackendJobsResponse;
|
|
95
|
+
};
|
|
96
|
+
sdk: {
|
|
97
|
+
input: ListBackendJobsCommandInput;
|
|
98
|
+
output: ListBackendJobsCommandOutput;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
90
101
|
}
|
|
@@ -75,4 +75,15 @@ declare const ListS3BucketsCommand_base: {
|
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
77
|
export declare class ListS3BucketsCommand extends ListS3BucketsCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: ListS3BucketsRequest;
|
|
82
|
+
output: ListS3BucketsResponse;
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: ListS3BucketsCommandInput;
|
|
86
|
+
output: ListS3BucketsCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
78
89
|
}
|
|
@@ -74,4 +74,15 @@ declare const RemoveAllBackendsCommand_base: {
|
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
76
|
export declare class RemoveAllBackendsCommand extends RemoveAllBackendsCommand_base {
|
|
77
|
+
/** @internal type navigation helper, not in runtime. */
|
|
78
|
+
protected static __types: {
|
|
79
|
+
api: {
|
|
80
|
+
input: RemoveAllBackendsRequest;
|
|
81
|
+
output: RemoveAllBackendsResponse;
|
|
82
|
+
};
|
|
83
|
+
sdk: {
|
|
84
|
+
input: RemoveAllBackendsCommandInput;
|
|
85
|
+
output: RemoveAllBackendsCommandOutput;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
77
88
|
}
|
|
@@ -69,4 +69,15 @@ declare const RemoveBackendConfigCommand_base: {
|
|
|
69
69
|
* @public
|
|
70
70
|
*/
|
|
71
71
|
export declare class RemoveBackendConfigCommand extends RemoveBackendConfigCommand_base {
|
|
72
|
+
/** @internal type navigation helper, not in runtime. */
|
|
73
|
+
protected static __types: {
|
|
74
|
+
api: {
|
|
75
|
+
input: RemoveBackendConfigRequest;
|
|
76
|
+
output: RemoveBackendConfigResponse;
|
|
77
|
+
};
|
|
78
|
+
sdk: {
|
|
79
|
+
input: RemoveBackendConfigCommandInput;
|
|
80
|
+
output: RemoveBackendConfigCommandOutput;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
72
83
|
}
|
|
@@ -112,4 +112,15 @@ declare const UpdateBackendAPICommand_base: {
|
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
114
|
export declare class UpdateBackendAPICommand extends UpdateBackendAPICommand_base {
|
|
115
|
+
/** @internal type navigation helper, not in runtime. */
|
|
116
|
+
protected static __types: {
|
|
117
|
+
api: {
|
|
118
|
+
input: UpdateBackendAPIRequest;
|
|
119
|
+
output: UpdateBackendAPIResponse;
|
|
120
|
+
};
|
|
121
|
+
sdk: {
|
|
122
|
+
input: UpdateBackendAPICommandInput;
|
|
123
|
+
output: UpdateBackendAPICommandOutput;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
115
126
|
}
|
|
@@ -153,4 +153,15 @@ declare const UpdateBackendAuthCommand_base: {
|
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
155
|
export declare class UpdateBackendAuthCommand extends UpdateBackendAuthCommand_base {
|
|
156
|
+
/** @internal type navigation helper, not in runtime. */
|
|
157
|
+
protected static __types: {
|
|
158
|
+
api: {
|
|
159
|
+
input: UpdateBackendAuthRequest;
|
|
160
|
+
output: UpdateBackendAuthResponse;
|
|
161
|
+
};
|
|
162
|
+
sdk: {
|
|
163
|
+
input: UpdateBackendAuthCommandInput;
|
|
164
|
+
output: UpdateBackendAuthCommandOutput;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
156
167
|
}
|
|
@@ -83,4 +83,15 @@ declare const UpdateBackendConfigCommand_base: {
|
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
85
|
export declare class UpdateBackendConfigCommand extends UpdateBackendConfigCommand_base {
|
|
86
|
+
/** @internal type navigation helper, not in runtime. */
|
|
87
|
+
protected static __types: {
|
|
88
|
+
api: {
|
|
89
|
+
input: UpdateBackendConfigRequest;
|
|
90
|
+
output: UpdateBackendConfigResponse;
|
|
91
|
+
};
|
|
92
|
+
sdk: {
|
|
93
|
+
input: UpdateBackendConfigCommandInput;
|
|
94
|
+
output: UpdateBackendConfigCommandOutput;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
86
97
|
}
|
|
@@ -80,4 +80,15 @@ declare const UpdateBackendJobCommand_base: {
|
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
82
|
export declare class UpdateBackendJobCommand extends UpdateBackendJobCommand_base {
|
|
83
|
+
/** @internal type navigation helper, not in runtime. */
|
|
84
|
+
protected static __types: {
|
|
85
|
+
api: {
|
|
86
|
+
input: UpdateBackendJobRequest;
|
|
87
|
+
output: UpdateBackendJobResponse;
|
|
88
|
+
};
|
|
89
|
+
sdk: {
|
|
90
|
+
input: UpdateBackendJobCommandInput;
|
|
91
|
+
output: UpdateBackendJobCommandOutput;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
83
94
|
}
|
|
@@ -85,4 +85,15 @@ declare const UpdateBackendStorageCommand_base: {
|
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
87
|
export declare class UpdateBackendStorageCommand extends UpdateBackendStorageCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: UpdateBackendStorageRequest;
|
|
92
|
+
output: UpdateBackendStorageResponse;
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: UpdateBackendStorageCommandInput;
|
|
96
|
+
output: UpdateBackendStorageCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
88
99
|
}
|
|
@@ -33,4 +33,15 @@ declare const CloneBackendCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class CloneBackendCommand extends CloneBackendCommand_base {
|
|
36
|
+
export declare class CloneBackendCommand extends CloneBackendCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CloneBackendRequest;
|
|
40
|
+
output: CloneBackendResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CloneBackendCommandInput;
|
|
44
|
+
output: CloneBackendCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const CreateBackendAPICommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class CreateBackendAPICommand extends CreateBackendAPICommand_base {
|
|
39
|
+
export declare class CreateBackendAPICommand extends CreateBackendAPICommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateBackendAPIRequest;
|
|
43
|
+
output: CreateBackendAPIResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateBackendAPICommandInput;
|
|
47
|
+
output: CreateBackendAPICommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const CreateBackendAuthCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class CreateBackendAuthCommand extends CreateBackendAuthCommand_base {
|
|
40
|
+
export declare class CreateBackendAuthCommand extends CreateBackendAuthCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateBackendAuthRequest;
|
|
44
|
+
output: CreateBackendAuthResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateBackendAuthCommandInput;
|
|
48
|
+
output: CreateBackendAuthCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const CreateBackendCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class CreateBackendCommand extends CreateBackendCommand_base {
|
|
39
|
+
export declare class CreateBackendCommand extends CreateBackendCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateBackendRequest;
|
|
43
|
+
output: CreateBackendResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateBackendCommandInput;
|
|
47
|
+
output: CreateBackendCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const CreateBackendConfigCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class CreateBackendConfigCommand extends CreateBackendConfigCommand_base {
|
|
40
|
+
export declare class CreateBackendConfigCommand extends CreateBackendConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateBackendConfigRequest;
|
|
44
|
+
output: CreateBackendConfigResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateBackendConfigCommandInput;
|
|
48
|
+
output: CreateBackendConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const CreateBackendStorageCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class CreateBackendStorageCommand extends CreateBackendStorageCommand_base {
|
|
40
|
+
export declare class CreateBackendStorageCommand extends CreateBackendStorageCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateBackendStorageRequest;
|
|
44
|
+
output: CreateBackendStorageResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateBackendStorageCommandInput;
|
|
48
|
+
output: CreateBackendStorageCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const CreateTokenCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class CreateTokenCommand extends CreateTokenCommand_base {
|
|
36
|
+
export declare class CreateTokenCommand extends CreateTokenCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateTokenRequest;
|
|
40
|
+
output: CreateTokenResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateTokenCommandInput;
|
|
44
|
+
output: CreateTokenCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const DeleteBackendAPICommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class DeleteBackendAPICommand extends DeleteBackendAPICommand_base {
|
|
39
|
+
export declare class DeleteBackendAPICommand extends DeleteBackendAPICommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteBackendAPIRequest;
|
|
43
|
+
output: DeleteBackendAPIResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteBackendAPICommandInput;
|
|
47
|
+
output: DeleteBackendAPICommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const DeleteBackendAuthCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class DeleteBackendAuthCommand extends DeleteBackendAuthCommand_base {
|
|
40
|
+
export declare class DeleteBackendAuthCommand extends DeleteBackendAuthCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteBackendAuthRequest;
|
|
44
|
+
output: DeleteBackendAuthResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteBackendAuthCommandInput;
|
|
48
|
+
output: DeleteBackendAuthCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const DeleteBackendCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class DeleteBackendCommand extends DeleteBackendCommand_base {
|
|
39
|
+
export declare class DeleteBackendCommand extends DeleteBackendCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteBackendRequest;
|
|
43
|
+
output: DeleteBackendResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteBackendCommandInput;
|
|
47
|
+
output: DeleteBackendCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const DeleteBackendStorageCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class DeleteBackendStorageCommand extends DeleteBackendStorageCommand_base {
|
|
40
|
+
export declare class DeleteBackendStorageCommand extends DeleteBackendStorageCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteBackendStorageRequest;
|
|
44
|
+
output: DeleteBackendStorageResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteBackendStorageCommandInput;
|
|
48
|
+
output: DeleteBackendStorageCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const DeleteTokenCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class DeleteTokenCommand extends DeleteTokenCommand_base {
|
|
36
|
+
export declare class DeleteTokenCommand extends DeleteTokenCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteTokenRequest;
|
|
40
|
+
output: DeleteTokenResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteTokenCommandInput;
|
|
44
|
+
output: DeleteTokenCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GenerateBackendAPIModelsCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GenerateBackendAPIModelsCommand extends GenerateBackendAPIModelsCommand_base {
|
|
40
|
+
export declare class GenerateBackendAPIModelsCommand extends GenerateBackendAPIModelsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GenerateBackendAPIModelsRequest;
|
|
44
|
+
output: GenerateBackendAPIModelsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GenerateBackendAPIModelsCommandInput;
|
|
48
|
+
output: GenerateBackendAPIModelsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const GetBackendAPICommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class GetBackendAPICommand extends GetBackendAPICommand_base {
|
|
39
|
+
export declare class GetBackendAPICommand extends GetBackendAPICommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetBackendAPIRequest;
|
|
43
|
+
output: GetBackendAPIResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetBackendAPICommandInput;
|
|
47
|
+
output: GetBackendAPICommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetBackendAPIModelsCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetBackendAPIModelsCommand extends GetBackendAPIModelsCommand_base {
|
|
40
|
+
export declare class GetBackendAPIModelsCommand extends GetBackendAPIModelsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetBackendAPIModelsRequest;
|
|
44
|
+
output: GetBackendAPIModelsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetBackendAPIModelsCommandInput;
|
|
48
|
+
output: GetBackendAPIModelsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const GetBackendAuthCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class GetBackendAuthCommand extends GetBackendAuthCommand_base {
|
|
39
|
+
export declare class GetBackendAuthCommand extends GetBackendAuthCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetBackendAuthRequest;
|
|
43
|
+
output: GetBackendAuthResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetBackendAuthCommandInput;
|
|
47
|
+
output: GetBackendAuthCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const GetBackendCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class GetBackendCommand extends GetBackendCommand_base {
|
|
36
|
+
export declare class GetBackendCommand extends GetBackendCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetBackendRequest;
|
|
40
|
+
output: GetBackendResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetBackendCommandInput;
|
|
44
|
+
output: GetBackendCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const GetBackendJobCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class GetBackendJobCommand extends GetBackendJobCommand_base {
|
|
39
|
+
export declare class GetBackendJobCommand extends GetBackendJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetBackendJobRequest;
|
|
43
|
+
output: GetBackendJobResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetBackendJobCommandInput;
|
|
47
|
+
output: GetBackendJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetBackendStorageCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetBackendStorageCommand extends GetBackendStorageCommand_base {
|
|
40
|
+
export declare class GetBackendStorageCommand extends GetBackendStorageCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetBackendStorageRequest;
|
|
44
|
+
output: GetBackendStorageResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetBackendStorageCommandInput;
|
|
48
|
+
output: GetBackendStorageCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const GetTokenCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class GetTokenCommand extends GetTokenCommand_base {
|
|
36
|
+
export declare class GetTokenCommand extends GetTokenCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetTokenRequest;
|
|
40
|
+
output: GetTokenResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetTokenCommandInput;
|
|
44
|
+
output: GetTokenCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const ImportBackendAuthCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class ImportBackendAuthCommand extends ImportBackendAuthCommand_base {
|
|
40
|
+
export declare class ImportBackendAuthCommand extends ImportBackendAuthCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ImportBackendAuthRequest;
|
|
44
|
+
output: ImportBackendAuthResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ImportBackendAuthCommandInput;
|
|
48
|
+
output: ImportBackendAuthCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const ImportBackendStorageCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class ImportBackendStorageCommand extends ImportBackendStorageCommand_base {
|
|
40
|
+
export declare class ImportBackendStorageCommand extends ImportBackendStorageCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ImportBackendStorageRequest;
|
|
44
|
+
output: ImportBackendStorageResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ImportBackendStorageCommandInput;
|
|
48
|
+
output: ImportBackendStorageCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const ListBackendJobsCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class ListBackendJobsCommand extends ListBackendJobsCommand_base {
|
|
39
|
+
export declare class ListBackendJobsCommand extends ListBackendJobsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListBackendJobsRequest;
|
|
43
|
+
output: ListBackendJobsResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListBackendJobsCommandInput;
|
|
47
|
+
output: ListBackendJobsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const ListS3BucketsCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class ListS3BucketsCommand extends ListS3BucketsCommand_base {
|
|
39
|
+
export declare class ListS3BucketsCommand extends ListS3BucketsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListS3BucketsRequest;
|
|
43
|
+
output: ListS3BucketsResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListS3BucketsCommandInput;
|
|
47
|
+
output: ListS3BucketsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const RemoveAllBackendsCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class RemoveAllBackendsCommand extends RemoveAllBackendsCommand_base {
|
|
40
|
+
export declare class RemoveAllBackendsCommand extends RemoveAllBackendsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RemoveAllBackendsRequest;
|
|
44
|
+
output: RemoveAllBackendsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RemoveAllBackendsCommandInput;
|
|
48
|
+
output: RemoveAllBackendsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const RemoveBackendConfigCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class RemoveBackendConfigCommand extends RemoveBackendConfigCommand_base {
|
|
40
|
+
export declare class RemoveBackendConfigCommand extends RemoveBackendConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RemoveBackendConfigRequest;
|
|
44
|
+
output: RemoveBackendConfigResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RemoveBackendConfigCommandInput;
|
|
48
|
+
output: RemoveBackendConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const UpdateBackendAPICommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class UpdateBackendAPICommand extends UpdateBackendAPICommand_base {
|
|
39
|
+
export declare class UpdateBackendAPICommand extends UpdateBackendAPICommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateBackendAPIRequest;
|
|
43
|
+
output: UpdateBackendAPIResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateBackendAPICommandInput;
|
|
47
|
+
output: UpdateBackendAPICommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const UpdateBackendAuthCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class UpdateBackendAuthCommand extends UpdateBackendAuthCommand_base {
|
|
40
|
+
export declare class UpdateBackendAuthCommand extends UpdateBackendAuthCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateBackendAuthRequest;
|
|
44
|
+
output: UpdateBackendAuthResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateBackendAuthCommandInput;
|
|
48
|
+
output: UpdateBackendAuthCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const UpdateBackendConfigCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class UpdateBackendConfigCommand extends UpdateBackendConfigCommand_base {
|
|
40
|
+
export declare class UpdateBackendConfigCommand extends UpdateBackendConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateBackendConfigRequest;
|
|
44
|
+
output: UpdateBackendConfigResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateBackendConfigCommandInput;
|
|
48
|
+
output: UpdateBackendConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const UpdateBackendJobCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class UpdateBackendJobCommand extends UpdateBackendJobCommand_base {
|
|
39
|
+
export declare class UpdateBackendJobCommand extends UpdateBackendJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateBackendJobRequest;
|
|
43
|
+
output: UpdateBackendJobResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateBackendJobCommandInput;
|
|
47
|
+
output: UpdateBackendJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const UpdateBackendStorageCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class UpdateBackendStorageCommand extends UpdateBackendStorageCommand_base {
|
|
40
|
+
export declare class UpdateBackendStorageCommand extends UpdateBackendStorageCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateBackendStorageRequest;
|
|
44
|
+
output: UpdateBackendStorageResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateBackendStorageCommandInput;
|
|
48
|
+
output: UpdateBackendStorageCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplifybackend",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplifybackend 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-amplifybackend",
|
|
@@ -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
|
},
|