@aws-sdk/client-ram 3.934.0 → 3.936.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 +75 -74
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +74 -0
- package/dist-es/models/errors.js +337 -0
- package/dist-es/models/models_0.js +1 -411
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +186 -0
- package/dist-types/models/errors.d.ts +359 -0
- package/dist-types/models/models_0.d.ts +1 -545
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +101 -0
- package/dist-types/ts3.4/models/errors.d.ts +237 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -338
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
export declare const ResourceShareAssociationType: {
|
|
2
|
+
readonly PRINCIPAL: "PRINCIPAL";
|
|
3
|
+
readonly RESOURCE: "RESOURCE";
|
|
4
|
+
};
|
|
5
|
+
export type ResourceShareAssociationType =
|
|
6
|
+
(typeof ResourceShareAssociationType)[keyof typeof ResourceShareAssociationType];
|
|
7
|
+
export declare const ResourceShareAssociationStatus: {
|
|
8
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
9
|
+
readonly ASSOCIATING: "ASSOCIATING";
|
|
10
|
+
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
11
|
+
readonly DISASSOCIATING: "DISASSOCIATING";
|
|
12
|
+
readonly FAILED: "FAILED";
|
|
13
|
+
};
|
|
14
|
+
export type ResourceShareAssociationStatus =
|
|
15
|
+
(typeof ResourceShareAssociationStatus)[keyof typeof ResourceShareAssociationStatus];
|
|
16
|
+
export declare const ResourceShareInvitationStatus: {
|
|
17
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
18
|
+
readonly EXPIRED: "EXPIRED";
|
|
19
|
+
readonly PENDING: "PENDING";
|
|
20
|
+
readonly REJECTED: "REJECTED";
|
|
21
|
+
};
|
|
22
|
+
export type ResourceShareInvitationStatus =
|
|
23
|
+
(typeof ResourceShareInvitationStatus)[keyof typeof ResourceShareInvitationStatus];
|
|
24
|
+
export declare const PermissionFeatureSet: {
|
|
25
|
+
readonly CREATED_FROM_POLICY: "CREATED_FROM_POLICY";
|
|
26
|
+
readonly PROMOTING_TO_STANDARD: "PROMOTING_TO_STANDARD";
|
|
27
|
+
readonly STANDARD: "STANDARD";
|
|
28
|
+
};
|
|
29
|
+
export type PermissionFeatureSet =
|
|
30
|
+
(typeof PermissionFeatureSet)[keyof typeof PermissionFeatureSet];
|
|
31
|
+
export declare const PermissionType: {
|
|
32
|
+
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
33
|
+
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
34
|
+
};
|
|
35
|
+
export type PermissionType =
|
|
36
|
+
(typeof PermissionType)[keyof typeof PermissionType];
|
|
37
|
+
export declare const PermissionStatus: {
|
|
38
|
+
readonly ATTACHABLE: "ATTACHABLE";
|
|
39
|
+
readonly DELETED: "DELETED";
|
|
40
|
+
readonly DELETING: "DELETING";
|
|
41
|
+
readonly UNATTACHABLE: "UNATTACHABLE";
|
|
42
|
+
};
|
|
43
|
+
export type PermissionStatus =
|
|
44
|
+
(typeof PermissionStatus)[keyof typeof PermissionStatus];
|
|
45
|
+
export declare const ResourceShareFeatureSet: {
|
|
46
|
+
readonly CREATED_FROM_POLICY: "CREATED_FROM_POLICY";
|
|
47
|
+
readonly PROMOTING_TO_STANDARD: "PROMOTING_TO_STANDARD";
|
|
48
|
+
readonly STANDARD: "STANDARD";
|
|
49
|
+
};
|
|
50
|
+
export type ResourceShareFeatureSet =
|
|
51
|
+
(typeof ResourceShareFeatureSet)[keyof typeof ResourceShareFeatureSet];
|
|
52
|
+
export declare const ResourceShareStatus: {
|
|
53
|
+
readonly ACTIVE: "ACTIVE";
|
|
54
|
+
readonly DELETED: "DELETED";
|
|
55
|
+
readonly DELETING: "DELETING";
|
|
56
|
+
readonly FAILED: "FAILED";
|
|
57
|
+
readonly PENDING: "PENDING";
|
|
58
|
+
};
|
|
59
|
+
export type ResourceShareStatus =
|
|
60
|
+
(typeof ResourceShareStatus)[keyof typeof ResourceShareStatus];
|
|
61
|
+
export declare const ResourceOwner: {
|
|
62
|
+
readonly OTHER_ACCOUNTS: "OTHER-ACCOUNTS";
|
|
63
|
+
readonly SELF: "SELF";
|
|
64
|
+
};
|
|
65
|
+
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
66
|
+
export declare const ResourceRegionScopeFilter: {
|
|
67
|
+
readonly ALL: "ALL";
|
|
68
|
+
readonly GLOBAL: "GLOBAL";
|
|
69
|
+
readonly REGIONAL: "REGIONAL";
|
|
70
|
+
};
|
|
71
|
+
export type ResourceRegionScopeFilter =
|
|
72
|
+
(typeof ResourceRegionScopeFilter)[keyof typeof ResourceRegionScopeFilter];
|
|
73
|
+
export declare const ResourceRegionScope: {
|
|
74
|
+
readonly GLOBAL: "GLOBAL";
|
|
75
|
+
readonly REGIONAL: "REGIONAL";
|
|
76
|
+
};
|
|
77
|
+
export type ResourceRegionScope =
|
|
78
|
+
(typeof ResourceRegionScope)[keyof typeof ResourceRegionScope];
|
|
79
|
+
export declare const ResourceStatus: {
|
|
80
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
81
|
+
readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
|
|
82
|
+
readonly PENDING: "PENDING";
|
|
83
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
84
|
+
readonly ZONAL_RESOURCE_INACCESSIBLE: "ZONAL_RESOURCE_INACCESSIBLE";
|
|
85
|
+
};
|
|
86
|
+
export type ResourceStatus =
|
|
87
|
+
(typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
88
|
+
export declare const PermissionTypeFilter: {
|
|
89
|
+
readonly ALL: "ALL";
|
|
90
|
+
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
91
|
+
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
92
|
+
};
|
|
93
|
+
export type PermissionTypeFilter =
|
|
94
|
+
(typeof PermissionTypeFilter)[keyof typeof PermissionTypeFilter];
|
|
95
|
+
export declare const ReplacePermissionAssociationsWorkStatus: {
|
|
96
|
+
readonly COMPLETED: "COMPLETED";
|
|
97
|
+
readonly FAILED: "FAILED";
|
|
98
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
99
|
+
};
|
|
100
|
+
export type ReplacePermissionAssociationsWorkStatus =
|
|
101
|
+
(typeof ReplacePermissionAssociationsWorkStatus)[keyof typeof ReplacePermissionAssociationsWorkStatus];
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { RAMServiceException as __BaseException } from "./RAMServiceException";
|
|
3
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
4
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<
|
|
8
|
+
IdempotentParameterMismatchException,
|
|
9
|
+
__BaseException
|
|
10
|
+
>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare class InvalidClientTokenException extends __BaseException {
|
|
14
|
+
readonly name: "InvalidClientTokenException";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
constructor(
|
|
17
|
+
opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
export declare class MalformedArnException extends __BaseException {
|
|
21
|
+
readonly name: "MalformedArnException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<MalformedArnException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
28
|
+
readonly name: "OperationNotPermittedException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ResourceShareInvitationAlreadyAcceptedException extends __BaseException {
|
|
35
|
+
readonly name: "ResourceShareInvitationAlreadyAcceptedException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<
|
|
39
|
+
ResourceShareInvitationAlreadyAcceptedException,
|
|
40
|
+
__BaseException
|
|
41
|
+
>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
export declare class ResourceShareInvitationAlreadyRejectedException extends __BaseException {
|
|
45
|
+
readonly name: "ResourceShareInvitationAlreadyRejectedException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<
|
|
49
|
+
ResourceShareInvitationAlreadyRejectedException,
|
|
50
|
+
__BaseException
|
|
51
|
+
>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
export declare class ResourceShareInvitationArnNotFoundException extends __BaseException {
|
|
55
|
+
readonly name: "ResourceShareInvitationArnNotFoundException";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
constructor(
|
|
58
|
+
opts: __ExceptionOptionType<
|
|
59
|
+
ResourceShareInvitationArnNotFoundException,
|
|
60
|
+
__BaseException
|
|
61
|
+
>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
export declare class ResourceShareInvitationExpiredException extends __BaseException {
|
|
65
|
+
readonly name: "ResourceShareInvitationExpiredException";
|
|
66
|
+
readonly $fault: "client";
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<
|
|
69
|
+
ResourceShareInvitationExpiredException,
|
|
70
|
+
__BaseException
|
|
71
|
+
>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
export declare class ServerInternalException extends __BaseException {
|
|
75
|
+
readonly name: "ServerInternalException";
|
|
76
|
+
readonly $fault: "server";
|
|
77
|
+
constructor(
|
|
78
|
+
opts: __ExceptionOptionType<ServerInternalException, __BaseException>
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
82
|
+
readonly name: "ServiceUnavailableException";
|
|
83
|
+
readonly $fault: "server";
|
|
84
|
+
constructor(
|
|
85
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
89
|
+
readonly name: "InvalidParameterException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
constructor(
|
|
92
|
+
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
export declare class InvalidStateTransitionException extends __BaseException {
|
|
96
|
+
readonly name: "InvalidStateTransitionException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
constructor(
|
|
99
|
+
opts: __ExceptionOptionType<
|
|
100
|
+
InvalidStateTransitionException,
|
|
101
|
+
__BaseException
|
|
102
|
+
>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
export declare class ResourceShareLimitExceededException extends __BaseException {
|
|
106
|
+
readonly name: "ResourceShareLimitExceededException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
constructor(
|
|
109
|
+
opts: __ExceptionOptionType<
|
|
110
|
+
ResourceShareLimitExceededException,
|
|
111
|
+
__BaseException
|
|
112
|
+
>
|
|
113
|
+
);
|
|
114
|
+
}
|
|
115
|
+
export declare class ThrottlingException extends __BaseException {
|
|
116
|
+
readonly name: "ThrottlingException";
|
|
117
|
+
readonly $fault: "client";
|
|
118
|
+
constructor(
|
|
119
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
export declare class UnknownResourceException extends __BaseException {
|
|
123
|
+
readonly name: "UnknownResourceException";
|
|
124
|
+
readonly $fault: "client";
|
|
125
|
+
constructor(
|
|
126
|
+
opts: __ExceptionOptionType<UnknownResourceException, __BaseException>
|
|
127
|
+
);
|
|
128
|
+
}
|
|
129
|
+
export declare class InvalidPolicyException extends __BaseException {
|
|
130
|
+
readonly name: "InvalidPolicyException";
|
|
131
|
+
readonly $fault: "client";
|
|
132
|
+
constructor(
|
|
133
|
+
opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
|
|
134
|
+
);
|
|
135
|
+
}
|
|
136
|
+
export declare class MalformedPolicyTemplateException extends __BaseException {
|
|
137
|
+
readonly name: "MalformedPolicyTemplateException";
|
|
138
|
+
readonly $fault: "client";
|
|
139
|
+
constructor(
|
|
140
|
+
opts: __ExceptionOptionType<
|
|
141
|
+
MalformedPolicyTemplateException,
|
|
142
|
+
__BaseException
|
|
143
|
+
>
|
|
144
|
+
);
|
|
145
|
+
}
|
|
146
|
+
export declare class PermissionAlreadyExistsException extends __BaseException {
|
|
147
|
+
readonly name: "PermissionAlreadyExistsException";
|
|
148
|
+
readonly $fault: "client";
|
|
149
|
+
constructor(
|
|
150
|
+
opts: __ExceptionOptionType<
|
|
151
|
+
PermissionAlreadyExistsException,
|
|
152
|
+
__BaseException
|
|
153
|
+
>
|
|
154
|
+
);
|
|
155
|
+
}
|
|
156
|
+
export declare class PermissionLimitExceededException extends __BaseException {
|
|
157
|
+
readonly name: "PermissionLimitExceededException";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
constructor(
|
|
160
|
+
opts: __ExceptionOptionType<
|
|
161
|
+
PermissionLimitExceededException,
|
|
162
|
+
__BaseException
|
|
163
|
+
>
|
|
164
|
+
);
|
|
165
|
+
}
|
|
166
|
+
export declare class PermissionVersionsLimitExceededException extends __BaseException {
|
|
167
|
+
readonly name: "PermissionVersionsLimitExceededException";
|
|
168
|
+
readonly $fault: "client";
|
|
169
|
+
constructor(
|
|
170
|
+
opts: __ExceptionOptionType<
|
|
171
|
+
PermissionVersionsLimitExceededException,
|
|
172
|
+
__BaseException
|
|
173
|
+
>
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
177
|
+
readonly name: "TagLimitExceededException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
constructor(
|
|
180
|
+
opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
|
|
181
|
+
);
|
|
182
|
+
}
|
|
183
|
+
export declare class TagPolicyViolationException extends __BaseException {
|
|
184
|
+
readonly name: "TagPolicyViolationException";
|
|
185
|
+
readonly $fault: "client";
|
|
186
|
+
constructor(
|
|
187
|
+
opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>
|
|
188
|
+
);
|
|
189
|
+
}
|
|
190
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
191
|
+
readonly name: "InvalidNextTokenException";
|
|
192
|
+
readonly $fault: "client";
|
|
193
|
+
constructor(
|
|
194
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
195
|
+
);
|
|
196
|
+
}
|
|
197
|
+
export declare class ResourceArnNotFoundException extends __BaseException {
|
|
198
|
+
readonly name: "ResourceArnNotFoundException";
|
|
199
|
+
readonly $fault: "client";
|
|
200
|
+
constructor(
|
|
201
|
+
opts: __ExceptionOptionType<ResourceArnNotFoundException, __BaseException>
|
|
202
|
+
);
|
|
203
|
+
}
|
|
204
|
+
export declare class InvalidMaxResultsException extends __BaseException {
|
|
205
|
+
readonly name: "InvalidMaxResultsException";
|
|
206
|
+
readonly $fault: "client";
|
|
207
|
+
constructor(
|
|
208
|
+
opts: __ExceptionOptionType<InvalidMaxResultsException, __BaseException>
|
|
209
|
+
);
|
|
210
|
+
}
|
|
211
|
+
export declare class MissingRequiredParameterException extends __BaseException {
|
|
212
|
+
readonly name: "MissingRequiredParameterException";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
constructor(
|
|
215
|
+
opts: __ExceptionOptionType<
|
|
216
|
+
MissingRequiredParameterException,
|
|
217
|
+
__BaseException
|
|
218
|
+
>
|
|
219
|
+
);
|
|
220
|
+
}
|
|
221
|
+
export declare class InvalidResourceTypeException extends __BaseException {
|
|
222
|
+
readonly name: "InvalidResourceTypeException";
|
|
223
|
+
readonly $fault: "client";
|
|
224
|
+
constructor(
|
|
225
|
+
opts: __ExceptionOptionType<InvalidResourceTypeException, __BaseException>
|
|
226
|
+
);
|
|
227
|
+
}
|
|
228
|
+
export declare class UnmatchedPolicyPermissionException extends __BaseException {
|
|
229
|
+
readonly name: "UnmatchedPolicyPermissionException";
|
|
230
|
+
readonly $fault: "client";
|
|
231
|
+
constructor(
|
|
232
|
+
opts: __ExceptionOptionType<
|
|
233
|
+
UnmatchedPolicyPermissionException,
|
|
234
|
+
__BaseException
|
|
235
|
+
>
|
|
236
|
+
);
|
|
237
|
+
}
|