@aws-sdk/client-mpa 3.928.0 → 3.930.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 +1068 -1220
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MPAClient.js +2 -0
- package/dist-es/commands/CancelSessionCommand.js +3 -9
- package/dist-es/commands/CreateApprovalTeamCommand.js +3 -10
- package/dist-es/commands/CreateIdentitySourceCommand.js +3 -10
- package/dist-es/commands/DeleteIdentitySourceCommand.js +3 -9
- package/dist-es/commands/DeleteInactiveApprovalTeamVersionCommand.js +3 -9
- package/dist-es/commands/GetApprovalTeamCommand.js +3 -10
- package/dist-es/commands/GetIdentitySourceCommand.js +3 -9
- package/dist-es/commands/GetPolicyVersionCommand.js +3 -10
- package/dist-es/commands/GetResourcePolicyCommand.js +3 -10
- package/dist-es/commands/GetSessionCommand.js +3 -10
- package/dist-es/commands/ListApprovalTeamsCommand.js +3 -10
- package/dist-es/commands/ListIdentitySourcesCommand.js +3 -9
- package/dist-es/commands/ListPoliciesCommand.js +3 -9
- package/dist-es/commands/ListPolicyVersionsCommand.js +3 -9
- package/dist-es/commands/ListResourcePoliciesCommand.js +3 -9
- package/dist-es/commands/ListSessionsCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/StartActiveApprovalTeamDeletionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateApprovalTeamCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -104
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +999 -0
- package/dist-types/MPAClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +16 -64
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +117 -0
- package/dist-types/ts3.4/MPAClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -55
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +124 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -931
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -191
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -257
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CancelSessionCommandInput, CancelSessionCommandOutput } from "./commands/CancelSessionCommand";
|
|
11
11
|
import { CreateApprovalTeamCommandInput, CreateApprovalTeamCommandOutput } from "./commands/CreateApprovalTeamCommand";
|
|
@@ -162,6 +162,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
162
162
|
* Optional extensions
|
|
163
163
|
*/
|
|
164
164
|
extensions?: RuntimeExtension[];
|
|
165
|
+
/**
|
|
166
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
167
|
+
* may be overridden. A default will always be set by the client.
|
|
168
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
169
|
+
* the client.
|
|
170
|
+
* @alpha
|
|
171
|
+
*
|
|
172
|
+
*/
|
|
173
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
165
174
|
/**
|
|
166
175
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
167
176
|
*/
|
|
@@ -63,11 +63,14 @@ export declare namespace ApprovalStrategy {
|
|
|
63
63
|
MofN?: never;
|
|
64
64
|
$unknown: [string, any];
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* @deprecated unused in schema-serde mode.
|
|
68
|
+
*
|
|
69
|
+
*/
|
|
66
70
|
interface Visitor<T> {
|
|
67
71
|
MofN: (value: MofNApprovalStrategy) => T;
|
|
68
72
|
_: (name: string, value: any) => T;
|
|
69
73
|
}
|
|
70
|
-
const visit: <T>(value: ApprovalStrategy, visitor: Visitor<T>) => T;
|
|
71
74
|
}
|
|
72
75
|
/**
|
|
73
76
|
* <p>Contains details for how an approval team grants approval.</p>
|
|
@@ -93,11 +96,14 @@ export declare namespace ApprovalStrategyResponse {
|
|
|
93
96
|
MofN?: never;
|
|
94
97
|
$unknown: [string, any];
|
|
95
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* @deprecated unused in schema-serde mode.
|
|
101
|
+
*
|
|
102
|
+
*/
|
|
96
103
|
interface Visitor<T> {
|
|
97
104
|
MofN: (value: MofNApprovalStrategy) => T;
|
|
98
105
|
_: (name: string, value: any) => T;
|
|
99
106
|
}
|
|
100
|
-
const visit: <T>(value: ApprovalStrategyResponse, visitor: Visitor<T>) => T;
|
|
101
107
|
}
|
|
102
108
|
/**
|
|
103
109
|
* <p>The request cannot be completed because it conflicts with the current state of a resource.</p>
|
|
@@ -992,11 +998,14 @@ export declare namespace IdentitySourceParametersForGet {
|
|
|
992
998
|
IamIdentityCenter?: never;
|
|
993
999
|
$unknown: [string, any];
|
|
994
1000
|
}
|
|
1001
|
+
/**
|
|
1002
|
+
* @deprecated unused in schema-serde mode.
|
|
1003
|
+
*
|
|
1004
|
+
*/
|
|
995
1005
|
interface Visitor<T> {
|
|
996
1006
|
IamIdentityCenter: (value: IamIdentityCenterForGet) => T;
|
|
997
1007
|
_: (name: string, value: any) => T;
|
|
998
1008
|
}
|
|
999
|
-
const visit: <T>(value: IdentitySourceParametersForGet, visitor: Visitor<T>) => T;
|
|
1000
1009
|
}
|
|
1001
1010
|
/**
|
|
1002
1011
|
* @public
|
|
@@ -1126,11 +1135,14 @@ export declare namespace IdentitySourceParametersForList {
|
|
|
1126
1135
|
IamIdentityCenter?: never;
|
|
1127
1136
|
$unknown: [string, any];
|
|
1128
1137
|
}
|
|
1138
|
+
/**
|
|
1139
|
+
* @deprecated unused in schema-serde mode.
|
|
1140
|
+
*
|
|
1141
|
+
*/
|
|
1129
1142
|
interface Visitor<T> {
|
|
1130
1143
|
IamIdentityCenter: (value: IamIdentityCenterForList) => T;
|
|
1131
1144
|
_: (name: string, value: any) => T;
|
|
1132
1145
|
}
|
|
1133
|
-
const visit: <T>(value: IdentitySourceParametersForList, visitor: Visitor<T>) => T;
|
|
1134
1146
|
}
|
|
1135
1147
|
/**
|
|
1136
1148
|
* <p>Contains details for an identity source. For more information, see <a href="https://docs.aws.amazon.com/mpa/latest/userguide/mpa-concepts.html">Identity source</a> in the <i>Multi-party approval User Guide</i>.</p>
|
|
@@ -1885,63 +1897,3 @@ export interface UntagResourceRequest {
|
|
|
1885
1897
|
*/
|
|
1886
1898
|
export interface UntagResourceResponse {
|
|
1887
1899
|
}
|
|
1888
|
-
/**
|
|
1889
|
-
* @internal
|
|
1890
|
-
*/
|
|
1891
|
-
export declare const CreateApprovalTeamRequestFilterSensitiveLog: (obj: CreateApprovalTeamRequest) => any;
|
|
1892
|
-
/**
|
|
1893
|
-
* @internal
|
|
1894
|
-
*/
|
|
1895
|
-
export declare const GetApprovalTeamResponseFilterSensitiveLog: (obj: GetApprovalTeamResponse) => any;
|
|
1896
|
-
/**
|
|
1897
|
-
* @internal
|
|
1898
|
-
*/
|
|
1899
|
-
export declare const ListApprovalTeamsResponseApprovalTeamFilterSensitiveLog: (obj: ListApprovalTeamsResponseApprovalTeam) => any;
|
|
1900
|
-
/**
|
|
1901
|
-
* @internal
|
|
1902
|
-
*/
|
|
1903
|
-
export declare const ListApprovalTeamsResponseFilterSensitiveLog: (obj: ListApprovalTeamsResponse) => any;
|
|
1904
|
-
/**
|
|
1905
|
-
* @internal
|
|
1906
|
-
*/
|
|
1907
|
-
export declare const UpdateApprovalTeamRequestFilterSensitiveLog: (obj: UpdateApprovalTeamRequest) => any;
|
|
1908
|
-
/**
|
|
1909
|
-
* @internal
|
|
1910
|
-
*/
|
|
1911
|
-
export declare const PolicyVersionFilterSensitiveLog: (obj: PolicyVersion) => any;
|
|
1912
|
-
/**
|
|
1913
|
-
* @internal
|
|
1914
|
-
*/
|
|
1915
|
-
export declare const GetPolicyVersionResponseFilterSensitiveLog: (obj: GetPolicyVersionResponse) => any;
|
|
1916
|
-
/**
|
|
1917
|
-
* @internal
|
|
1918
|
-
*/
|
|
1919
|
-
export declare const GetResourcePolicyResponseFilterSensitiveLog: (obj: GetResourcePolicyResponse) => any;
|
|
1920
|
-
/**
|
|
1921
|
-
* @internal
|
|
1922
|
-
*/
|
|
1923
|
-
export declare const CreateIdentitySourceRequestFilterSensitiveLog: (obj: CreateIdentitySourceRequest) => any;
|
|
1924
|
-
/**
|
|
1925
|
-
* @internal
|
|
1926
|
-
*/
|
|
1927
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1928
|
-
/**
|
|
1929
|
-
* @internal
|
|
1930
|
-
*/
|
|
1931
|
-
export declare const GetSessionResponseFilterSensitiveLog: (obj: GetSessionResponse) => any;
|
|
1932
|
-
/**
|
|
1933
|
-
* @internal
|
|
1934
|
-
*/
|
|
1935
|
-
export declare const ListSessionsResponseSessionFilterSensitiveLog: (obj: ListSessionsResponseSession) => any;
|
|
1936
|
-
/**
|
|
1937
|
-
* @internal
|
|
1938
|
-
*/
|
|
1939
|
-
export declare const ListSessionsResponseFilterSensitiveLog: (obj: ListSessionsResponse) => any;
|
|
1940
|
-
/**
|
|
1941
|
-
* @internal
|
|
1942
|
-
*/
|
|
1943
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1944
|
-
/**
|
|
1945
|
-
* @internal
|
|
1946
|
-
*/
|
|
1947
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MPAHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Description: StaticSimpleSchema;
|
|
3
|
+
export declare var PolicyDocument: StaticSimpleSchema;
|
|
4
|
+
export declare var RequesterComment: StaticSimpleSchema;
|
|
5
|
+
export declare var SessionKey: StaticSimpleSchema;
|
|
6
|
+
export declare var SessionValue: StaticSimpleSchema;
|
|
7
|
+
export declare var TagKey: StaticSimpleSchema;
|
|
8
|
+
export declare var TagValue: StaticSimpleSchema;
|
|
9
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
10
|
+
export declare var ApprovalTeamRequestApprover: StaticStructureSchema;
|
|
11
|
+
export declare var CancelSessionRequest: StaticStructureSchema;
|
|
12
|
+
export declare var CancelSessionResponse: StaticStructureSchema;
|
|
13
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
14
|
+
export declare var CreateApprovalTeamRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateApprovalTeamResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateIdentitySourceRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateIdentitySourceResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteIdentitySourceRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteInactiveApprovalTeamVersionRequest: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteInactiveApprovalTeamVersionResponse: StaticStructureSchema;
|
|
21
|
+
export declare var Filter: StaticStructureSchema;
|
|
22
|
+
export declare var GetApprovalTeamRequest: StaticStructureSchema;
|
|
23
|
+
export declare var GetApprovalTeamResponse: StaticStructureSchema;
|
|
24
|
+
export declare var GetApprovalTeamResponseApprover: StaticStructureSchema;
|
|
25
|
+
export declare var GetIdentitySourceRequest: StaticStructureSchema;
|
|
26
|
+
export declare var GetIdentitySourceResponse: StaticStructureSchema;
|
|
27
|
+
export declare var GetPolicyVersionRequest: StaticStructureSchema;
|
|
28
|
+
export declare var GetPolicyVersionResponse: StaticStructureSchema;
|
|
29
|
+
export declare var GetResourcePolicyRequest: StaticStructureSchema;
|
|
30
|
+
export declare var GetResourcePolicyResponse: StaticStructureSchema;
|
|
31
|
+
export declare var GetSessionRequest: StaticStructureSchema;
|
|
32
|
+
export declare var GetSessionResponse: StaticStructureSchema;
|
|
33
|
+
export declare var GetSessionResponseApproverResponse: StaticStructureSchema;
|
|
34
|
+
export declare var IamIdentityCenter: StaticStructureSchema;
|
|
35
|
+
export declare var IamIdentityCenterForGet: StaticStructureSchema;
|
|
36
|
+
export declare var IamIdentityCenterForList: StaticStructureSchema;
|
|
37
|
+
export declare var IdentitySourceForList: StaticStructureSchema;
|
|
38
|
+
export declare var IdentitySourceParameters: StaticStructureSchema;
|
|
39
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
40
|
+
export declare var InvalidParameterException: StaticErrorSchema;
|
|
41
|
+
export declare var ListApprovalTeamsRequest: StaticStructureSchema;
|
|
42
|
+
export declare var ListApprovalTeamsResponse: StaticStructureSchema;
|
|
43
|
+
export declare var ListApprovalTeamsResponseApprovalTeam: StaticStructureSchema;
|
|
44
|
+
export declare var ListIdentitySourcesRequest: StaticStructureSchema;
|
|
45
|
+
export declare var ListIdentitySourcesResponse: StaticStructureSchema;
|
|
46
|
+
export declare var ListPoliciesRequest: StaticStructureSchema;
|
|
47
|
+
export declare var ListPoliciesResponse: StaticStructureSchema;
|
|
48
|
+
export declare var ListPolicyVersionsRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListPolicyVersionsResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ListResourcePoliciesRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListResourcePoliciesResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ListResourcePoliciesResponseResourcePolicy: StaticStructureSchema;
|
|
53
|
+
export declare var ListSessionsRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListSessionsResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListSessionsResponseSession: StaticStructureSchema;
|
|
56
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
58
|
+
export declare var MofNApprovalStrategy: StaticStructureSchema;
|
|
59
|
+
export declare var PendingUpdate: StaticStructureSchema;
|
|
60
|
+
export declare var Policy: StaticStructureSchema;
|
|
61
|
+
export declare var PolicyReference: StaticStructureSchema;
|
|
62
|
+
export declare var PolicyVersion: StaticStructureSchema;
|
|
63
|
+
export declare var PolicyVersionSummary: StaticStructureSchema;
|
|
64
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
65
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
66
|
+
export declare var StartActiveApprovalTeamDeletionRequest: StaticStructureSchema;
|
|
67
|
+
export declare var StartActiveApprovalTeamDeletionResponse: StaticStructureSchema;
|
|
68
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
69
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
70
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
71
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
72
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
73
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateApprovalTeamRequest: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateApprovalTeamResponse: StaticStructureSchema;
|
|
76
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
77
|
+
export declare var __Unit: "unit";
|
|
78
|
+
export declare var MPAServiceException: StaticErrorSchema;
|
|
79
|
+
export declare var ApprovalTeamRequestApprovers: StaticListSchema;
|
|
80
|
+
export declare var Filters: StaticListSchema;
|
|
81
|
+
export declare var GetApprovalTeamResponseApprovers: StaticListSchema;
|
|
82
|
+
export declare var GetSessionResponseApproverResponses: StaticListSchema;
|
|
83
|
+
export declare var IdentitySources: StaticListSchema;
|
|
84
|
+
export declare var ListApprovalTeamsResponseApprovalTeams: StaticListSchema;
|
|
85
|
+
export declare var ListResourcePoliciesResponseResourcePolicies: StaticListSchema;
|
|
86
|
+
export declare var ListSessionsResponseSessions: StaticListSchema;
|
|
87
|
+
export declare var Policies: StaticListSchema;
|
|
88
|
+
export declare var PoliciesReferences: StaticListSchema;
|
|
89
|
+
export declare var PolicyVersions: StaticListSchema;
|
|
90
|
+
export declare var TagKeyList: StaticListSchema;
|
|
91
|
+
export declare var SessionMetadata: StaticMapSchema;
|
|
92
|
+
export declare var Tags: StaticMapSchema;
|
|
93
|
+
export declare var ApprovalStrategy: StaticStructureSchema;
|
|
94
|
+
export declare var ApprovalStrategyResponse: StaticStructureSchema;
|
|
95
|
+
export declare var IdentitySourceParametersForGet: StaticStructureSchema;
|
|
96
|
+
export declare var IdentitySourceParametersForList: StaticStructureSchema;
|
|
97
|
+
export declare var CancelSession: StaticOperationSchema;
|
|
98
|
+
export declare var CreateApprovalTeam: StaticOperationSchema;
|
|
99
|
+
export declare var CreateIdentitySource: StaticOperationSchema;
|
|
100
|
+
export declare var DeleteIdentitySource: StaticOperationSchema;
|
|
101
|
+
export declare var DeleteInactiveApprovalTeamVersion: StaticOperationSchema;
|
|
102
|
+
export declare var GetApprovalTeam: StaticOperationSchema;
|
|
103
|
+
export declare var GetIdentitySource: StaticOperationSchema;
|
|
104
|
+
export declare var GetPolicyVersion: StaticOperationSchema;
|
|
105
|
+
export declare var GetResourcePolicy: StaticOperationSchema;
|
|
106
|
+
export declare var GetSession: StaticOperationSchema;
|
|
107
|
+
export declare var ListApprovalTeams: StaticOperationSchema;
|
|
108
|
+
export declare var ListIdentitySources: StaticOperationSchema;
|
|
109
|
+
export declare var ListPolicies: StaticOperationSchema;
|
|
110
|
+
export declare var ListPolicyVersions: StaticOperationSchema;
|
|
111
|
+
export declare var ListResourcePolicies: StaticOperationSchema;
|
|
112
|
+
export declare var ListSessions: StaticOperationSchema;
|
|
113
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
114
|
+
export declare var StartActiveApprovalTeamDeletion: StaticOperationSchema;
|
|
115
|
+
export declare var TagResource: StaticOperationSchema;
|
|
116
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
117
|
+
export declare var UpdateApprovalTeam: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -204,6 +207,7 @@ export interface ClientDefaults
|
|
|
204
207
|
retryMode?: string | __Provider<string>;
|
|
205
208
|
logger?: __Logger;
|
|
206
209
|
extensions?: RuntimeExtension[];
|
|
210
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
207
211
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
208
212
|
}
|
|
209
213
|
export type MPAClientConfigType = Partial<
|
|
@@ -32,7 +32,6 @@ export declare namespace ApprovalStrategy {
|
|
|
32
32
|
MofN: (value: MofNApprovalStrategy) => T;
|
|
33
33
|
_: (name: string, value: any) => T;
|
|
34
34
|
}
|
|
35
|
-
const visit: <T>(value: ApprovalStrategy, visitor: Visitor<T>) => T;
|
|
36
35
|
}
|
|
37
36
|
export type ApprovalStrategyResponse =
|
|
38
37
|
| ApprovalStrategyResponse.MofNMember
|
|
@@ -50,7 +49,6 @@ export declare namespace ApprovalStrategyResponse {
|
|
|
50
49
|
MofN: (value: MofNApprovalStrategy) => T;
|
|
51
50
|
_: (name: string, value: any) => T;
|
|
52
51
|
}
|
|
53
|
-
const visit: <T>(value: ApprovalStrategyResponse, visitor: Visitor<T>) => T;
|
|
54
52
|
}
|
|
55
53
|
export declare class ConflictException extends __BaseException {
|
|
56
54
|
readonly name: "ConflictException";
|
|
@@ -329,10 +327,6 @@ export declare namespace IdentitySourceParametersForGet {
|
|
|
329
327
|
IamIdentityCenter: (value: IamIdentityCenterForGet) => T;
|
|
330
328
|
_: (name: string, value: any) => T;
|
|
331
329
|
}
|
|
332
|
-
const visit: <T>(
|
|
333
|
-
value: IdentitySourceParametersForGet,
|
|
334
|
-
visitor: Visitor<T>
|
|
335
|
-
) => T;
|
|
336
330
|
}
|
|
337
331
|
export declare const IdentitySourceStatus: {
|
|
338
332
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -384,10 +378,6 @@ export declare namespace IdentitySourceParametersForList {
|
|
|
384
378
|
IamIdentityCenter: (value: IamIdentityCenterForList) => T;
|
|
385
379
|
_: (name: string, value: any) => T;
|
|
386
380
|
}
|
|
387
|
-
const visit: <T>(
|
|
388
|
-
value: IdentitySourceParametersForList,
|
|
389
|
-
visitor: Visitor<T>
|
|
390
|
-
) => T;
|
|
391
381
|
}
|
|
392
382
|
export interface IdentitySourceForList {
|
|
393
383
|
IdentitySourceType?: IdentitySourceType | undefined;
|
|
@@ -598,48 +588,3 @@ export interface UntagResourceRequest {
|
|
|
598
588
|
TagKeys: string[] | undefined;
|
|
599
589
|
}
|
|
600
590
|
export interface UntagResourceResponse {}
|
|
601
|
-
export declare const CreateApprovalTeamRequestFilterSensitiveLog: (
|
|
602
|
-
obj: CreateApprovalTeamRequest
|
|
603
|
-
) => any;
|
|
604
|
-
export declare const GetApprovalTeamResponseFilterSensitiveLog: (
|
|
605
|
-
obj: GetApprovalTeamResponse
|
|
606
|
-
) => any;
|
|
607
|
-
export declare const ListApprovalTeamsResponseApprovalTeamFilterSensitiveLog: (
|
|
608
|
-
obj: ListApprovalTeamsResponseApprovalTeam
|
|
609
|
-
) => any;
|
|
610
|
-
export declare const ListApprovalTeamsResponseFilterSensitiveLog: (
|
|
611
|
-
obj: ListApprovalTeamsResponse
|
|
612
|
-
) => any;
|
|
613
|
-
export declare const UpdateApprovalTeamRequestFilterSensitiveLog: (
|
|
614
|
-
obj: UpdateApprovalTeamRequest
|
|
615
|
-
) => any;
|
|
616
|
-
export declare const PolicyVersionFilterSensitiveLog: (
|
|
617
|
-
obj: PolicyVersion
|
|
618
|
-
) => any;
|
|
619
|
-
export declare const GetPolicyVersionResponseFilterSensitiveLog: (
|
|
620
|
-
obj: GetPolicyVersionResponse
|
|
621
|
-
) => any;
|
|
622
|
-
export declare const GetResourcePolicyResponseFilterSensitiveLog: (
|
|
623
|
-
obj: GetResourcePolicyResponse
|
|
624
|
-
) => any;
|
|
625
|
-
export declare const CreateIdentitySourceRequestFilterSensitiveLog: (
|
|
626
|
-
obj: CreateIdentitySourceRequest
|
|
627
|
-
) => any;
|
|
628
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
629
|
-
obj: ListTagsForResourceResponse
|
|
630
|
-
) => any;
|
|
631
|
-
export declare const GetSessionResponseFilterSensitiveLog: (
|
|
632
|
-
obj: GetSessionResponse
|
|
633
|
-
) => any;
|
|
634
|
-
export declare const ListSessionsResponseSessionFilterSensitiveLog: (
|
|
635
|
-
obj: ListSessionsResponseSession
|
|
636
|
-
) => any;
|
|
637
|
-
export declare const ListSessionsResponseFilterSensitiveLog: (
|
|
638
|
-
obj: ListSessionsResponse
|
|
639
|
-
) => any;
|
|
640
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
641
|
-
obj: TagResourceRequest
|
|
642
|
-
) => any;
|
|
643
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
644
|
-
obj: UntagResourceRequest
|
|
645
|
-
) => any;
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
37
37
|
profile?: string;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
41
45
|
userAgentAppId?:
|
|
42
46
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -36,6 +36,10 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
36
36
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
38
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
40
|
+
import("@smithy/types").HttpRequest,
|
|
41
|
+
import("@smithy/types").HttpResponse
|
|
42
|
+
>;
|
|
39
43
|
defaultsMode:
|
|
40
44
|
| import("@smithy/smithy-client").DefaultsMode
|
|
41
45
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MPAHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var Description: StaticSimpleSchema;
|
|
10
|
+
export declare var PolicyDocument: StaticSimpleSchema;
|
|
11
|
+
export declare var RequesterComment: StaticSimpleSchema;
|
|
12
|
+
export declare var SessionKey: StaticSimpleSchema;
|
|
13
|
+
export declare var SessionValue: StaticSimpleSchema;
|
|
14
|
+
export declare var TagKey: StaticSimpleSchema;
|
|
15
|
+
export declare var TagValue: StaticSimpleSchema;
|
|
16
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
17
|
+
export declare var ApprovalTeamRequestApprover: StaticStructureSchema;
|
|
18
|
+
export declare var CancelSessionRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CancelSessionResponse: StaticStructureSchema;
|
|
20
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
21
|
+
export declare var CreateApprovalTeamRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateApprovalTeamResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateIdentitySourceRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateIdentitySourceResponse: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteIdentitySourceRequest: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteInactiveApprovalTeamVersionRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteInactiveApprovalTeamVersionResponse: StaticStructureSchema;
|
|
28
|
+
export declare var Filter: StaticStructureSchema;
|
|
29
|
+
export declare var GetApprovalTeamRequest: StaticStructureSchema;
|
|
30
|
+
export declare var GetApprovalTeamResponse: StaticStructureSchema;
|
|
31
|
+
export declare var GetApprovalTeamResponseApprover: StaticStructureSchema;
|
|
32
|
+
export declare var GetIdentitySourceRequest: StaticStructureSchema;
|
|
33
|
+
export declare var GetIdentitySourceResponse: StaticStructureSchema;
|
|
34
|
+
export declare var GetPolicyVersionRequest: StaticStructureSchema;
|
|
35
|
+
export declare var GetPolicyVersionResponse: StaticStructureSchema;
|
|
36
|
+
export declare var GetResourcePolicyRequest: StaticStructureSchema;
|
|
37
|
+
export declare var GetResourcePolicyResponse: StaticStructureSchema;
|
|
38
|
+
export declare var GetSessionRequest: StaticStructureSchema;
|
|
39
|
+
export declare var GetSessionResponse: StaticStructureSchema;
|
|
40
|
+
export declare var GetSessionResponseApproverResponse: StaticStructureSchema;
|
|
41
|
+
export declare var IamIdentityCenter: StaticStructureSchema;
|
|
42
|
+
export declare var IamIdentityCenterForGet: StaticStructureSchema;
|
|
43
|
+
export declare var IamIdentityCenterForList: StaticStructureSchema;
|
|
44
|
+
export declare var IdentitySourceForList: StaticStructureSchema;
|
|
45
|
+
export declare var IdentitySourceParameters: StaticStructureSchema;
|
|
46
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
47
|
+
export declare var InvalidParameterException: StaticErrorSchema;
|
|
48
|
+
export declare var ListApprovalTeamsRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListApprovalTeamsResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ListApprovalTeamsResponseApprovalTeam: StaticStructureSchema;
|
|
51
|
+
export declare var ListIdentitySourcesRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ListIdentitySourcesResponse: StaticStructureSchema;
|
|
53
|
+
export declare var ListPoliciesRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListPoliciesResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListPolicyVersionsRequest: StaticStructureSchema;
|
|
56
|
+
export declare var ListPolicyVersionsResponse: StaticStructureSchema;
|
|
57
|
+
export declare var ListResourcePoliciesRequest: StaticStructureSchema;
|
|
58
|
+
export declare var ListResourcePoliciesResponse: StaticStructureSchema;
|
|
59
|
+
export declare var ListResourcePoliciesResponseResourcePolicy: StaticStructureSchema;
|
|
60
|
+
export declare var ListSessionsRequest: StaticStructureSchema;
|
|
61
|
+
export declare var ListSessionsResponse: StaticStructureSchema;
|
|
62
|
+
export declare var ListSessionsResponseSession: StaticStructureSchema;
|
|
63
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
64
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
65
|
+
export declare var MofNApprovalStrategy: StaticStructureSchema;
|
|
66
|
+
export declare var PendingUpdate: StaticStructureSchema;
|
|
67
|
+
export declare var Policy: StaticStructureSchema;
|
|
68
|
+
export declare var PolicyReference: StaticStructureSchema;
|
|
69
|
+
export declare var PolicyVersion: StaticStructureSchema;
|
|
70
|
+
export declare var PolicyVersionSummary: StaticStructureSchema;
|
|
71
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
72
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
73
|
+
export declare var StartActiveApprovalTeamDeletionRequest: StaticStructureSchema;
|
|
74
|
+
export declare var StartActiveApprovalTeamDeletionResponse: StaticStructureSchema;
|
|
75
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
76
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
77
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
78
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
79
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
80
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
81
|
+
export declare var UpdateApprovalTeamRequest: StaticStructureSchema;
|
|
82
|
+
export declare var UpdateApprovalTeamResponse: StaticStructureSchema;
|
|
83
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
84
|
+
export declare var __Unit: "unit";
|
|
85
|
+
export declare var MPAServiceException: StaticErrorSchema;
|
|
86
|
+
export declare var ApprovalTeamRequestApprovers: StaticListSchema;
|
|
87
|
+
export declare var Filters: StaticListSchema;
|
|
88
|
+
export declare var GetApprovalTeamResponseApprovers: StaticListSchema;
|
|
89
|
+
export declare var GetSessionResponseApproverResponses: StaticListSchema;
|
|
90
|
+
export declare var IdentitySources: StaticListSchema;
|
|
91
|
+
export declare var ListApprovalTeamsResponseApprovalTeams: StaticListSchema;
|
|
92
|
+
export declare var ListResourcePoliciesResponseResourcePolicies: StaticListSchema;
|
|
93
|
+
export declare var ListSessionsResponseSessions: StaticListSchema;
|
|
94
|
+
export declare var Policies: StaticListSchema;
|
|
95
|
+
export declare var PoliciesReferences: StaticListSchema;
|
|
96
|
+
export declare var PolicyVersions: StaticListSchema;
|
|
97
|
+
export declare var TagKeyList: StaticListSchema;
|
|
98
|
+
export declare var SessionMetadata: StaticMapSchema;
|
|
99
|
+
export declare var Tags: StaticMapSchema;
|
|
100
|
+
export declare var ApprovalStrategy: StaticStructureSchema;
|
|
101
|
+
export declare var ApprovalStrategyResponse: StaticStructureSchema;
|
|
102
|
+
export declare var IdentitySourceParametersForGet: StaticStructureSchema;
|
|
103
|
+
export declare var IdentitySourceParametersForList: StaticStructureSchema;
|
|
104
|
+
export declare var CancelSession: StaticOperationSchema;
|
|
105
|
+
export declare var CreateApprovalTeam: StaticOperationSchema;
|
|
106
|
+
export declare var CreateIdentitySource: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteIdentitySource: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteInactiveApprovalTeamVersion: StaticOperationSchema;
|
|
109
|
+
export declare var GetApprovalTeam: StaticOperationSchema;
|
|
110
|
+
export declare var GetIdentitySource: StaticOperationSchema;
|
|
111
|
+
export declare var GetPolicyVersion: StaticOperationSchema;
|
|
112
|
+
export declare var GetResourcePolicy: StaticOperationSchema;
|
|
113
|
+
export declare var GetSession: StaticOperationSchema;
|
|
114
|
+
export declare var ListApprovalTeams: StaticOperationSchema;
|
|
115
|
+
export declare var ListIdentitySources: StaticOperationSchema;
|
|
116
|
+
export declare var ListPolicies: StaticOperationSchema;
|
|
117
|
+
export declare var ListPolicyVersions: StaticOperationSchema;
|
|
118
|
+
export declare var ListResourcePolicies: StaticOperationSchema;
|
|
119
|
+
export declare var ListSessions: StaticOperationSchema;
|
|
120
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
121
|
+
export declare var StartActiveApprovalTeamDeletion: StaticOperationSchema;
|
|
122
|
+
export declare var TagResource: StaticOperationSchema;
|
|
123
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
124
|
+
export declare var UpdateApprovalTeam: StaticOperationSchema;
|