@aws-sdk/client-appfabric 3.533.0 → 3.535.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/AppFabric.d.ts +3 -1
- package/dist-types/AppFabricClient.d.ts +1 -1
- package/dist-types/commands/BatchGetUserAccessTasksCommand.d.ts +2 -1
- package/dist-types/commands/ConnectAppAuthorizationCommand.d.ts +2 -1
- package/dist-types/commands/CreateAppAuthorizationCommand.d.ts +2 -1
- package/dist-types/commands/CreateAppBundleCommand.d.ts +2 -1
- package/dist-types/commands/CreateIngestionCommand.d.ts +2 -1
- package/dist-types/commands/CreateIngestionDestinationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAppAuthorizationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAppBundleCommand.d.ts +2 -1
- package/dist-types/commands/DeleteIngestionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteIngestionDestinationCommand.d.ts +2 -1
- package/dist-types/commands/GetAppAuthorizationCommand.d.ts +2 -1
- package/dist-types/commands/GetAppBundleCommand.d.ts +2 -1
- package/dist-types/commands/GetIngestionCommand.d.ts +2 -1
- package/dist-types/commands/GetIngestionDestinationCommand.d.ts +2 -1
- package/dist-types/commands/ListAppAuthorizationsCommand.d.ts +2 -1
- package/dist-types/commands/ListAppBundlesCommand.d.ts +2 -1
- package/dist-types/commands/ListIngestionDestinationsCommand.d.ts +2 -1
- package/dist-types/commands/ListIngestionsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartIngestionCommand.d.ts +2 -1
- package/dist-types/commands/StartUserAccessTasksCommand.d.ts +2 -1
- package/dist-types/commands/StopIngestionCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAppAuthorizationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateIngestionDestinationCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +223 -223
- package/dist-types/ts3.4/AppFabric.d.ts +2 -0
- package/dist-types/ts3.4/commands/BatchGetUserAccessTasksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ConnectAppAuthorizationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateAppAuthorizationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateAppBundleCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateIngestionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateIngestionDestinationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAppAuthorizationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAppBundleCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteIngestionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteIngestionDestinationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAppAuthorizationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAppBundleCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetIngestionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetIngestionDestinationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAppAuthorizationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAppBundlesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListIngestionDestinationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListIngestionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartIngestionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartUserAccessTasksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopIngestionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateAppAuthorizationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateIngestionDestinationCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -48,6 +48,7 @@ export interface AppFabric {
|
|
|
48
48
|
/**
|
|
49
49
|
* @see {@link CreateAppBundleCommand}
|
|
50
50
|
*/
|
|
51
|
+
createAppBundle(): Promise<CreateAppBundleCommandOutput>;
|
|
51
52
|
createAppBundle(args: CreateAppBundleCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppBundleCommandOutput>;
|
|
52
53
|
createAppBundle(args: CreateAppBundleCommandInput, cb: (err: any, data?: CreateAppBundleCommandOutput) => void): void;
|
|
53
54
|
createAppBundle(args: CreateAppBundleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppBundleCommandOutput) => void): void;
|
|
@@ -120,6 +121,7 @@ export interface AppFabric {
|
|
|
120
121
|
/**
|
|
121
122
|
* @see {@link ListAppBundlesCommand}
|
|
122
123
|
*/
|
|
124
|
+
listAppBundles(): Promise<ListAppBundlesCommandOutput>;
|
|
123
125
|
listAppBundles(args: ListAppBundlesCommandInput, options?: __HttpHandlerOptions): Promise<ListAppBundlesCommandOutput>;
|
|
124
126
|
listAppBundles(args: ListAppBundlesCommandInput, cb: (err: any, data?: ListAppBundlesCommandOutput) => void): void;
|
|
125
127
|
listAppBundles(args: ListAppBundlesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppBundlesCommandOutput) => void): void;
|
|
@@ -185,7 +187,6 @@ export interface AppFabric {
|
|
|
185
187
|
updateIngestionDestination(args: UpdateIngestionDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIngestionDestinationCommandOutput) => void): void;
|
|
186
188
|
}
|
|
187
189
|
/**
|
|
188
|
-
* @public
|
|
189
190
|
* <p>Amazon Web Services AppFabric quickly connects software as a service (SaaS) applications across your
|
|
190
191
|
* organization. This allows IT and security teams to easily manage and secure applications
|
|
191
192
|
* using a standard schema, and employees can complete everyday tasks faster using generative
|
|
@@ -195,6 +196,7 @@ export interface AppFabric {
|
|
|
195
196
|
* information about using the Command Line Interface (CLI) to manage your
|
|
196
197
|
* AppFabric resources, see the <a href="https://docs.aws.amazon.com/cli/latest/reference/appfabric/index.html">AppFabric section of the CLI
|
|
197
198
|
* Reference</a>.</p>
|
|
199
|
+
* @public
|
|
198
200
|
*/
|
|
199
201
|
export declare class AppFabric extends AppFabricClient implements AppFabric {
|
|
200
202
|
}
|
|
@@ -177,7 +177,6 @@ export type AppFabricClientResolvedConfigType = __SmithyResolvedConfiguration<__
|
|
|
177
177
|
export interface AppFabricClientResolvedConfig extends AppFabricClientResolvedConfigType {
|
|
178
178
|
}
|
|
179
179
|
/**
|
|
180
|
-
* @public
|
|
181
180
|
* <p>Amazon Web Services AppFabric quickly connects software as a service (SaaS) applications across your
|
|
182
181
|
* organization. This allows IT and security teams to easily manage and secure applications
|
|
183
182
|
* using a standard schema, and employees can complete everyday tasks faster using generative
|
|
@@ -187,6 +186,7 @@ export interface AppFabricClientResolvedConfig extends AppFabricClientResolvedCo
|
|
|
187
186
|
* information about using the Command Line Interface (CLI) to manage your
|
|
188
187
|
* AppFabric resources, see the <a href="https://docs.aws.amazon.com/cli/latest/reference/appfabric/index.html">AppFabric section of the CLI
|
|
189
188
|
* Reference</a>.</p>
|
|
189
|
+
* @public
|
|
190
190
|
*/
|
|
191
191
|
export declare class AppFabricClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppFabricClientResolvedConfig> {
|
|
192
192
|
/**
|
|
@@ -22,10 +22,10 @@ export interface BatchGetUserAccessTasksCommandOutput extends BatchGetUserAccess
|
|
|
22
22
|
}
|
|
23
23
|
declare const BatchGetUserAccessTasksCommand_base: {
|
|
24
24
|
new (input: BatchGetUserAccessTasksCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetUserAccessTasksCommandInput, BatchGetUserAccessTasksCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: BatchGetUserAccessTasksCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetUserAccessTasksCommandInput, BatchGetUserAccessTasksCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets user access details in a batch request.</p>
|
|
30
30
|
* <p>This action polls data from the tasks that are kicked off by the
|
|
31
31
|
* <code>StartUserAccessTasks</code> action.</p>
|
|
@@ -92,6 +92,7 @@ declare const BatchGetUserAccessTasksCommand_base: {
|
|
|
92
92
|
* @throws {@link AppFabricServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class BatchGetUserAccessTasksCommand extends BatchGetUserAccessTasksCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface ConnectAppAuthorizationCommandOutput extends ConnectAppAuthoriz
|
|
|
22
22
|
}
|
|
23
23
|
declare const ConnectAppAuthorizationCommand_base: {
|
|
24
24
|
new (input: ConnectAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<ConnectAppAuthorizationCommandInput, ConnectAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ConnectAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<ConnectAppAuthorizationCommandInput, ConnectAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to
|
|
30
30
|
* call the APIs of the application.</p>
|
|
31
31
|
* @example
|
|
@@ -85,6 +85,7 @@ declare const ConnectAppAuthorizationCommand_base: {
|
|
|
85
85
|
* @throws {@link AppFabricServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class ConnectAppAuthorizationCommand extends ConnectAppAuthorizationCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateAppAuthorizationCommandOutput extends CreateAppAuthorizat
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateAppAuthorizationCommand_base: {
|
|
24
24
|
new (input: CreateAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAppAuthorizationCommandInput, CreateAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAppAuthorizationCommandInput, CreateAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an app authorization within an app bundle, which allows AppFabric to connect to an
|
|
30
30
|
* application.</p>
|
|
31
31
|
* @example
|
|
@@ -112,6 +112,7 @@ declare const CreateAppAuthorizationCommand_base: {
|
|
|
112
112
|
* @throws {@link AppFabricServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
114
114
|
*
|
|
115
|
+
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class CreateAppAuthorizationCommand extends CreateAppAuthorizationCommand_base {
|
|
117
118
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateAppBundleCommandOutput extends CreateAppBundleResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateAppBundleCommand_base: {
|
|
24
24
|
new (input: CreateAppBundleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAppBundleCommandInput, CreateAppBundleCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [CreateAppBundleCommandInput]): import("@smithy/smithy-client").CommandImpl<CreateAppBundleCommandInput, CreateAppBundleCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an app bundle to collect data from an application using AppFabric.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const CreateAppBundleCommand_base: {
|
|
|
82
82
|
* @throws {@link AppFabricServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class CreateAppBundleCommand extends CreateAppBundleCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateIngestionCommandOutput extends CreateIngestionResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateIngestionCommand_base: {
|
|
24
24
|
new (input: CreateIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIngestionCommandInput, CreateIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIngestionCommandInput, CreateIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a data ingestion for an application.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -91,6 +91,7 @@ declare const CreateIngestionCommand_base: {
|
|
|
91
91
|
* @throws {@link AppFabricServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class CreateIngestionCommand extends CreateIngestionCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateIngestionDestinationCommandOutput extends CreateIngestion
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateIngestionDestinationCommand_base: {
|
|
24
24
|
new (input: CreateIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIngestionDestinationCommandInput, CreateIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIngestionDestinationCommandInput, CreateIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an ingestion destination, which specifies how an application's ingested data is
|
|
30
30
|
* processed by Amazon Web Services AppFabric and where it's delivered.</p>
|
|
31
31
|
* @example
|
|
@@ -126,6 +126,7 @@ declare const CreateIngestionDestinationCommand_base: {
|
|
|
126
126
|
* @throws {@link AppFabricServiceException}
|
|
127
127
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
128
128
|
*
|
|
129
|
+
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class CreateIngestionDestinationCommand extends CreateIngestionDestinationCommand_base {
|
|
131
132
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteAppAuthorizationCommandOutput extends DeleteAppAuthorizat
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteAppAuthorizationCommand_base: {
|
|
24
24
|
new (input: DeleteAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAppAuthorizationCommandInput, DeleteAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAppAuthorizationCommandInput, DeleteAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an app authorization. You must delete the associated ingestion before you can
|
|
30
30
|
* delete an app authorization.</p>
|
|
31
31
|
* @example
|
|
@@ -69,6 +69,7 @@ declare const DeleteAppAuthorizationCommand_base: {
|
|
|
69
69
|
* @throws {@link AppFabricServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteAppAuthorizationCommand extends DeleteAppAuthorizationCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteAppBundleCommandOutput extends DeleteAppBundleResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteAppBundleCommand_base: {
|
|
24
24
|
new (input: DeleteAppBundleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAppBundleCommandInput, DeleteAppBundleCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteAppBundleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAppBundleCommandInput, DeleteAppBundleCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an app bundle. You must delete all associated app authorizations before you can
|
|
30
30
|
* delete an app bundle.</p>
|
|
31
31
|
* @example
|
|
@@ -68,6 +68,7 @@ declare const DeleteAppBundleCommand_base: {
|
|
|
68
68
|
* @throws {@link AppFabricServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class DeleteAppBundleCommand extends DeleteAppBundleCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteIngestionCommandOutput extends DeleteIngestionResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteIngestionCommand_base: {
|
|
24
24
|
new (input: DeleteIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIngestionCommandInput, DeleteIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIngestionCommandInput, DeleteIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an ingestion. You must stop (disable) the ingestion and you must delete all
|
|
30
30
|
* associated ingestion destinations before you can delete an app ingestion.</p>
|
|
31
31
|
* @example
|
|
@@ -69,6 +69,7 @@ declare const DeleteIngestionCommand_base: {
|
|
|
69
69
|
* @throws {@link AppFabricServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteIngestionCommand extends DeleteIngestionCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteIngestionDestinationCommandOutput extends DeleteIngestion
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteIngestionDestinationCommand_base: {
|
|
24
24
|
new (input: DeleteIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIngestionDestinationCommandInput, DeleteIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIngestionDestinationCommandInput, DeleteIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an ingestion destination.</p>
|
|
30
30
|
* <p>This deletes the association between an ingestion and it's destination. It doesn't
|
|
31
31
|
* delete previously ingested data or the storage destination, such as the Amazon S3
|
|
@@ -73,6 +73,7 @@ declare const DeleteIngestionDestinationCommand_base: {
|
|
|
73
73
|
* @throws {@link AppFabricServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DeleteIngestionDestinationCommand extends DeleteIngestionDestinationCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAppAuthorizationCommandOutput extends GetAppAuthorizationRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAppAuthorizationCommand_base: {
|
|
24
24
|
new (input: GetAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<GetAppAuthorizationCommandInput, GetAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<GetAppAuthorizationCommandInput, GetAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about an app authorization.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -84,6 +84,7 @@ declare const GetAppAuthorizationCommand_base: {
|
|
|
84
84
|
* @throws {@link AppFabricServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class GetAppAuthorizationCommand extends GetAppAuthorizationCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAppBundleCommandOutput extends GetAppBundleResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAppBundleCommand_base: {
|
|
24
24
|
new (input: GetAppBundleCommandInput): import("@smithy/smithy-client").CommandImpl<GetAppBundleCommandInput, GetAppBundleCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetAppBundleCommandInput): import("@smithy/smithy-client").CommandImpl<GetAppBundleCommandInput, GetAppBundleCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about an app bundle.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -72,6 +72,7 @@ declare const GetAppBundleCommand_base: {
|
|
|
72
72
|
* @throws {@link AppFabricServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class GetAppBundleCommand extends GetAppBundleCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetIngestionCommandOutput extends GetIngestionResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetIngestionCommand_base: {
|
|
24
24
|
new (input: GetIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<GetIngestionCommandInput, GetIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<GetIngestionCommandInput, GetIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about an ingestion.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const GetIngestionCommand_base: {
|
|
|
79
79
|
* @throws {@link AppFabricServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class GetIngestionCommand extends GetIngestionCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetIngestionDestinationCommandOutput extends GetIngestionDestin
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetIngestionDestinationCommand_base: {
|
|
24
24
|
new (input: GetIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<GetIngestionDestinationCommandInput, GetIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<GetIngestionDestinationCommandInput, GetIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about an ingestion destination.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -97,6 +97,7 @@ declare const GetIngestionDestinationCommand_base: {
|
|
|
97
97
|
* @throws {@link AppFabricServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class GetIngestionDestinationCommand extends GetIngestionDestinationCommand_base {
|
|
102
103
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAppAuthorizationsCommandOutput extends ListAppAuthorization
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAppAuthorizationsCommand_base: {
|
|
24
24
|
new (input: ListAppAuthorizationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAppAuthorizationsCommandInput, ListAppAuthorizationsCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListAppAuthorizationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAppAuthorizationsCommandInput, ListAppAuthorizationsCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all app authorizations configured for an app bundle.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -84,6 +84,7 @@ declare const ListAppAuthorizationsCommand_base: {
|
|
|
84
84
|
* @throws {@link AppFabricServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class ListAppAuthorizationsCommand extends ListAppAuthorizationsCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAppBundlesCommandOutput extends ListAppBundlesResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAppBundlesCommand_base: {
|
|
24
24
|
new (input: ListAppBundlesCommandInput): import("@smithy/smithy-client").CommandImpl<ListAppBundlesCommandInput, ListAppBundlesCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListAppBundlesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAppBundlesCommandInput, ListAppBundlesCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of app bundles.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -72,6 +72,7 @@ declare const ListAppBundlesCommand_base: {
|
|
|
72
72
|
* @throws {@link AppFabricServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class ListAppBundlesCommand extends ListAppBundlesCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListIngestionDestinationsCommandOutput extends ListIngestionDes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListIngestionDestinationsCommand_base: {
|
|
24
24
|
new (input: ListIngestionDestinationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListIngestionDestinationsCommandInput, ListIngestionDestinationsCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListIngestionDestinationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListIngestionDestinationsCommandInput, ListIngestionDestinationsCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all ingestion destinations configured for an ingestion.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const ListIngestionDestinationsCommand_base: {
|
|
|
77
77
|
* @throws {@link AppFabricServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class ListIngestionDestinationsCommand extends ListIngestionDestinationsCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListIngestionsCommandOutput extends ListIngestionsResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListIngestionsCommand_base: {
|
|
24
24
|
new (input: ListIngestionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListIngestionsCommandInput, ListIngestionsCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListIngestionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListIngestionsCommandInput, ListIngestionsCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all ingestions configured for an app bundle.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const ListIngestionsCommand_base: {
|
|
|
79
79
|
* @throws {@link AppFabricServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListIngestionsCommand extends ListIngestionsCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of tags for a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
74
74
|
* @throws {@link AppFabricServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartIngestionCommandOutput extends StartIngestionResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartIngestionCommand_base: {
|
|
24
24
|
new (input: StartIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<StartIngestionCommandInput, StartIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<StartIngestionCommandInput, StartIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Starts (enables) an ingestion, which collects data from an application.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const StartIngestionCommand_base: {
|
|
|
71
71
|
* @throws {@link AppFabricServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class StartIngestionCommand extends StartIngestionCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartUserAccessTasksCommandOutput extends StartUserAccessTasksR
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartUserAccessTasksCommand_base: {
|
|
24
24
|
new (input: StartUserAccessTasksCommandInput): import("@smithy/smithy-client").CommandImpl<StartUserAccessTasksCommandInput, StartUserAccessTasksCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartUserAccessTasksCommandInput): import("@smithy/smithy-client").CommandImpl<StartUserAccessTasksCommandInput, StartUserAccessTasksCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Starts the tasks to search user access status for a specific email address.</p>
|
|
30
30
|
* <p>The tasks are stopped when the user access status data is found. The tasks are
|
|
31
31
|
* terminated when the API calls to the application time out.</p>
|
|
@@ -82,6 +82,7 @@ declare const StartUserAccessTasksCommand_base: {
|
|
|
82
82
|
* @throws {@link AppFabricServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class StartUserAccessTasksCommand extends StartUserAccessTasksCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopIngestionCommandOutput extends StopIngestionResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopIngestionCommand_base: {
|
|
24
24
|
new (input: StopIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<StopIngestionCommandInput, StopIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopIngestionCommandInput): import("@smithy/smithy-client").CommandImpl<StopIngestionCommandInput, StopIngestionCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Stops (disables) an ingestion.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const StopIngestionCommand_base: {
|
|
|
71
71
|
* @throws {@link AppFabricServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class StopIngestionCommand extends StopIngestionCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns one or more tags (key-value pairs) to the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const TagResourceCommand_base: {
|
|
|
73
73
|
* @throws {@link AppFabricServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes a tag or tags from a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const UntagResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link AppFabricServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateAppAuthorizationCommandOutput extends UpdateAppAuthorizat
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateAppAuthorizationCommand_base: {
|
|
24
24
|
new (input: UpdateAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAppAuthorizationCommandInput, UpdateAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateAppAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAppAuthorizationCommandInput, UpdateAppAuthorizationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates an app authorization within an app bundle, which allows AppFabric to connect to an
|
|
30
30
|
* application.</p>
|
|
31
31
|
* <p>If the app authorization was in a <code>connected</code> state, updating the app
|
|
@@ -100,6 +100,7 @@ declare const UpdateAppAuthorizationCommand_base: {
|
|
|
100
100
|
* @throws {@link AppFabricServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class UpdateAppAuthorizationCommand extends UpdateAppAuthorizationCommand_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateIngestionDestinationCommandOutput extends UpdateIngestion
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateIngestionDestinationCommand_base: {
|
|
24
24
|
new (input: UpdateIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIngestionDestinationCommandInput, UpdateIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateIngestionDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIngestionDestinationCommandInput, UpdateIngestionDestinationCommandOutput, AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates an ingestion destination, which specifies how an application's ingested data is
|
|
30
30
|
* processed by Amazon Web Services AppFabric and where it's delivered.</p>
|
|
31
31
|
* @example
|
|
@@ -117,6 +117,7 @@ declare const UpdateIngestionDestinationCommand_base: {
|
|
|
117
117
|
* @throws {@link AppFabricServiceException}
|
|
118
118
|
* <p>Base exception class for all service exceptions from AppFabric service.</p>
|
|
119
119
|
*
|
|
120
|
+
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class UpdateIngestionDestinationCommand extends UpdateIngestionDestinationCommand_base {
|
|
122
123
|
}
|