@aws-sdk/client-security-ir 3.1087.0 → 3.1089.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/SecurityIR.d.ts +84 -110
- package/dist-types/ts3.4/SecurityIRClient.d.ts +11 -38
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchGetMemberAccountDetailsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CancelMembershipCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CloseCaseCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateCaseCommentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetCaseAttachmentDownloadUrlCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetCaseAttachmentUploadUrlCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetCaseCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCaseEditsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCasesCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListCommentsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListInvestigationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SendFeedbackCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateCaseCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateCaseCommentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateCaseStatusCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateMembershipCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateResolverTypeCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +8 -25
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListCasesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { SecurityIRClientResolvedConfig } from "../SecurityIRClient";
|
|
15
|
-
export interface SecurityIRHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SecurityIRHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SecurityIRHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SecurityIRHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SecurityIRClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SecurityIRHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSecurityIRHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SecurityIRClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SecurityIRHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SecurityIRHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SecurityIRHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SecurityIRHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SecurityIRHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSecurityIRHttpAuthSchemeProvider: SecurityIRHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SecurityIRHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: SecurityIRHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./SecurityIRClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
SecurityIRClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchGetMemberAccountDetailsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchGetMemberAccountDetailsCommandInput
|
|
8
|
-
extends BatchGetMemberAccountDetailsRequest {}
|
|
7
|
+
export interface BatchGetMemberAccountDetailsCommandInput extends BatchGetMemberAccountDetailsRequest {}
|
|
9
8
|
export interface BatchGetMemberAccountDetailsCommandOutput
|
|
10
|
-
extends BatchGetMemberAccountDetailsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchGetMemberAccountDetailsResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchGetMemberAccountDetailsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchGetMemberAccountDetailsCommandInput
|
|
12
|
+
input: BatchGetMemberAccountDetailsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchGetMemberAccountDetailsCommandInput,
|
|
17
15
|
BatchGetMemberAccountDetailsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchGetMemberAccountDetailsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchGetMemberAccountDetailsCommandInput
|
|
21
|
+
input: BatchGetMemberAccountDetailsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchGetMemberAccountDetailsCommandInput,
|
|
26
24
|
BatchGetMemberAccountDetailsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CancelMembershipRequest,
|
|
4
|
-
CancelMembershipResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CancelMembershipRequest, CancelMembershipResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CancelMembershipCommandInput extends CancelMembershipRequest {}
|
|
8
|
-
export interface CancelMembershipCommandOutput
|
|
9
|
-
extends CancelMembershipResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CancelMembershipCommandOutput extends CancelMembershipResponse, __MetadataBearer {}
|
|
11
6
|
declare const CancelMembershipCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CancelMembershipCommandInput
|
|
8
|
+
input: CancelMembershipCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CancelMembershipCommandInput,
|
|
16
11
|
CancelMembershipCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CancelMembershipCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CancelMembershipCommandInput
|
|
17
|
+
input: CancelMembershipCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CancelMembershipCommandInput,
|
|
25
20
|
CancelMembershipCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CloseCaseRequest, CloseCaseResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CloseCaseCommandInput extends CloseCaseRequest {}
|
|
5
|
-
export interface CloseCaseCommandOutput
|
|
6
|
-
extends CloseCaseResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CloseCaseCommandOutput extends CloseCaseResponse, __MetadataBearer {}
|
|
8
6
|
declare const CloseCaseCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: CloseCaseCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
CloseCaseCommandInput,
|
|
11
11
|
CloseCaseCommandOutput,
|
|
12
12
|
import("..").SecurityIRClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: CloseCaseCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
CloseCaseCommandInput,
|
|
18
20
|
CloseCaseCommandOutput,
|
|
19
21
|
import("..").SecurityIRClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateCaseRequest, CreateCaseResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateCaseCommandInput extends CreateCaseRequest {}
|
|
5
|
-
export interface CreateCaseCommandOutput
|
|
6
|
-
extends CreateCaseResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateCaseCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateCaseCommandInput
|
|
8
|
+
input: CreateCaseCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateCaseCommandInput,
|
|
13
11
|
CreateCaseCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateCaseCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateCaseCommandInput
|
|
17
|
+
input: CreateCaseCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateCaseCommandInput,
|
|
22
20
|
CreateCaseCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateCaseCommentRequest,
|
|
4
|
-
CreateCaseCommentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateCaseCommentRequest, CreateCaseCommentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateCaseCommentCommandInput
|
|
8
|
-
extends CreateCaseCommentRequest {}
|
|
4
|
+
export interface CreateCaseCommentCommandInput extends CreateCaseCommentRequest {}
|
|
9
5
|
export interface CreateCaseCommentCommandOutput
|
|
10
|
-
extends CreateCaseCommentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateCaseCommentResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateCaseCommentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateCaseCommentCommandInput
|
|
9
|
+
input: CreateCaseCommentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateCaseCommentCommandInput,
|
|
17
12
|
CreateCaseCommentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateCaseCommentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateCaseCommentCommandInput
|
|
18
|
+
input: CreateCaseCommentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateCaseCommentCommandInput,
|
|
26
21
|
CreateCaseCommentCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateMembershipRequest,
|
|
4
|
-
CreateMembershipResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateMembershipRequest, CreateMembershipResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateMembershipCommandInput extends CreateMembershipRequest {}
|
|
8
|
-
export interface CreateMembershipCommandOutput
|
|
9
|
-
extends CreateMembershipResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateMembershipCommandOutput extends CreateMembershipResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateMembershipCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateMembershipCommandInput
|
|
8
|
+
input: CreateMembershipCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateMembershipCommandInput,
|
|
16
11
|
CreateMembershipCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateMembershipCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateMembershipCommandInput
|
|
17
|
+
input: CreateMembershipCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateMembershipCommandInput,
|
|
25
20
|
CreateMembershipCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetCaseAttachmentDownloadUrlResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCaseAttachmentDownloadUrlCommandInput
|
|
8
|
-
extends GetCaseAttachmentDownloadUrlRequest {}
|
|
7
|
+
export interface GetCaseAttachmentDownloadUrlCommandInput extends GetCaseAttachmentDownloadUrlRequest {}
|
|
9
8
|
export interface GetCaseAttachmentDownloadUrlCommandOutput
|
|
10
|
-
extends GetCaseAttachmentDownloadUrlResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetCaseAttachmentDownloadUrlResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetCaseAttachmentDownloadUrlCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetCaseAttachmentDownloadUrlCommandInput
|
|
12
|
+
input: GetCaseAttachmentDownloadUrlCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetCaseAttachmentDownloadUrlCommandInput,
|
|
17
15
|
GetCaseAttachmentDownloadUrlCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetCaseAttachmentDownloadUrlCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetCaseAttachmentDownloadUrlCommandInput
|
|
21
|
+
input: GetCaseAttachmentDownloadUrlCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetCaseAttachmentDownloadUrlCommandInput,
|
|
26
24
|
GetCaseAttachmentDownloadUrlCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetCaseAttachmentUploadUrlResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCaseAttachmentUploadUrlCommandInput
|
|
8
|
-
extends GetCaseAttachmentUploadUrlRequest {}
|
|
7
|
+
export interface GetCaseAttachmentUploadUrlCommandInput extends GetCaseAttachmentUploadUrlRequest {}
|
|
9
8
|
export interface GetCaseAttachmentUploadUrlCommandOutput
|
|
10
|
-
extends GetCaseAttachmentUploadUrlResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetCaseAttachmentUploadUrlResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetCaseAttachmentUploadUrlCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetCaseAttachmentUploadUrlCommandInput
|
|
12
|
+
input: GetCaseAttachmentUploadUrlCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetCaseAttachmentUploadUrlCommandInput,
|
|
17
15
|
GetCaseAttachmentUploadUrlCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetCaseAttachmentUploadUrlCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetCaseAttachmentUploadUrlCommandInput
|
|
21
|
+
input: GetCaseAttachmentUploadUrlCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetCaseAttachmentUploadUrlCommandInput,
|
|
26
24
|
GetCaseAttachmentUploadUrlCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetCaseRequest, GetCaseResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetCaseCommandInput extends GetCaseRequest {}
|
|
5
|
-
export interface GetCaseCommandOutput
|
|
6
|
-
extends GetCaseResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetCaseCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetCaseCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetCaseCommandInput,
|
|
11
11
|
GetCaseCommandOutput,
|
|
12
12
|
import("..").SecurityIRClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetCaseCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetCaseCommandInput,
|
|
18
20
|
GetCaseCommandOutput,
|
|
19
21
|
import("..").SecurityIRClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetMembershipRequest,
|
|
4
|
-
GetMembershipResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetMembershipRequest, GetMembershipResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetMembershipCommandInput extends GetMembershipRequest {}
|
|
8
|
-
export interface GetMembershipCommandOutput
|
|
9
|
-
extends GetMembershipResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetMembershipCommandOutput extends GetMembershipResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetMembershipCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetMembershipCommandInput
|
|
8
|
+
input: GetMembershipCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetMembershipCommandInput,
|
|
16
11
|
GetMembershipCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetMembershipCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetMembershipCommandInput
|
|
17
|
+
input: GetMembershipCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetMembershipCommandInput,
|
|
25
20
|
GetMembershipCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCaseEditsRequest,
|
|
4
|
-
ListCaseEditsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListCaseEditsRequest, ListCaseEditsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListCaseEditsCommandInput extends ListCaseEditsRequest {}
|
|
8
|
-
export interface ListCaseEditsCommandOutput
|
|
9
|
-
extends ListCaseEditsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCaseEditsCommandOutput extends ListCaseEditsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListCaseEditsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListCaseEditsCommandInput
|
|
8
|
+
input: ListCaseEditsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListCaseEditsCommandInput,
|
|
16
11
|
ListCaseEditsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListCaseEditsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListCaseEditsCommandInput
|
|
17
|
+
input: ListCaseEditsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListCaseEditsCommandInput,
|
|
25
20
|
ListCaseEditsCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListCasesRequest, ListCasesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListCasesCommandInput extends ListCasesRequest {}
|
|
5
|
-
export interface ListCasesCommandOutput
|
|
6
|
-
extends ListCasesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCasesCommandOutput extends ListCasesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListCasesCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListCasesCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListCasesCommandInput,
|
|
11
11
|
ListCasesCommandOutput,
|
|
12
12
|
import("..").SecurityIRClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListCommentsRequest, ListCommentsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListCommentsCommandInput extends ListCommentsRequest {}
|
|
5
|
-
export interface ListCommentsCommandOutput
|
|
6
|
-
extends ListCommentsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCommentsCommandOutput extends ListCommentsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListCommentsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListCommentsCommandInput
|
|
8
|
+
input: ListCommentsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListCommentsCommandInput,
|
|
13
11
|
ListCommentsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListCommentsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListCommentsCommandInput
|
|
17
|
+
input: ListCommentsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListCommentsCommandInput,
|
|
22
20
|
ListCommentsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListInvestigationsRequest,
|
|
4
|
-
ListInvestigationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListInvestigationsRequest, ListInvestigationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListInvestigationsCommandInput
|
|
8
|
-
extends ListInvestigationsRequest {}
|
|
4
|
+
export interface ListInvestigationsCommandInput extends ListInvestigationsRequest {}
|
|
9
5
|
export interface ListInvestigationsCommandOutput
|
|
10
|
-
extends ListInvestigationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListInvestigationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListInvestigationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListInvestigationsCommandInput
|
|
9
|
+
input: ListInvestigationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListInvestigationsCommandInput,
|
|
17
12
|
ListInvestigationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListInvestigationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListInvestigationsCommandInput
|
|
18
|
+
input: ListInvestigationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListInvestigationsCommandInput,
|
|
26
21
|
ListInvestigationsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListMembershipsRequest,
|
|
4
|
-
ListMembershipsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListMembershipsRequest, ListMembershipsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListMembershipsCommandInput extends ListMembershipsRequest {}
|
|
8
|
-
export interface ListMembershipsCommandOutput
|
|
9
|
-
extends ListMembershipsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListMembershipsCommandOutput extends ListMembershipsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListMembershipsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListMembershipsCommandInput
|
|
8
|
+
input: ListMembershipsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListMembershipsCommandInput,
|
|
16
11
|
ListMembershipsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SendFeedbackRequest, SendFeedbackResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SendFeedbackCommandInput extends SendFeedbackRequest {}
|
|
5
|
-
export interface SendFeedbackCommandOutput
|
|
6
|
-
extends SendFeedbackResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SendFeedbackCommandOutput extends SendFeedbackResponse, __MetadataBearer {}
|
|
8
6
|
declare const SendFeedbackCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SendFeedbackCommandInput
|
|
8
|
+
input: SendFeedbackCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SendFeedbackCommandInput,
|
|
13
11
|
SendFeedbackCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const SendFeedbackCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: SendFeedbackCommandInput
|
|
17
|
+
input: SendFeedbackCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
SendFeedbackCommandInput,
|
|
22
20
|
SendFeedbackCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
5
|
-
export interface UntagResourceCommandOutput
|
|
6
|
-
extends UntagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const UntagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagResourceCommandInput,
|
|
13
11
|
UntagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagResourceCommandInput,
|
|
22
20
|
UntagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateCaseRequest, UpdateCaseResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateCaseCommandInput extends UpdateCaseRequest {}
|
|
5
|
-
export interface UpdateCaseCommandOutput
|
|
6
|
-
extends UpdateCaseResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateCaseCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateCaseCommandInput
|
|
8
|
+
input: UpdateCaseCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateCaseCommandInput,
|
|
13
11
|
UpdateCaseCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateCaseCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateCaseCommandInput
|
|
17
|
+
input: UpdateCaseCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateCaseCommandInput,
|
|
22
20
|
UpdateCaseCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateCaseCommentRequest,
|
|
4
|
-
UpdateCaseCommentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateCaseCommentRequest, UpdateCaseCommentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateCaseCommentCommandInput
|
|
8
|
-
extends UpdateCaseCommentRequest {}
|
|
4
|
+
export interface UpdateCaseCommentCommandInput extends UpdateCaseCommentRequest {}
|
|
9
5
|
export interface UpdateCaseCommentCommandOutput
|
|
10
|
-
extends UpdateCaseCommentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateCaseCommentResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateCaseCommentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateCaseCommentCommandInput
|
|
9
|
+
input: UpdateCaseCommentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateCaseCommentCommandInput,
|
|
17
12
|
UpdateCaseCommentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateCaseCommentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateCaseCommentCommandInput
|
|
18
|
+
input: UpdateCaseCommentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateCaseCommentCommandInput,
|
|
26
21
|
UpdateCaseCommentCommandOutput,
|