@aws-sdk/client-ram 3.183.0 → 3.185.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/RAM.js +109 -102
- package/dist-es/RAMClient.js +28 -22
- package/dist-es/commands/AcceptResourceShareInvitationCommand.js +28 -21
- package/dist-es/commands/AssociateResourceShareCommand.js +28 -21
- package/dist-es/commands/AssociateResourceSharePermissionCommand.js +28 -21
- package/dist-es/commands/CreateResourceShareCommand.js +28 -21
- package/dist-es/commands/DeleteResourceShareCommand.js +28 -21
- package/dist-es/commands/DisassociateResourceShareCommand.js +28 -21
- package/dist-es/commands/DisassociateResourceSharePermissionCommand.js +28 -21
- package/dist-es/commands/EnableSharingWithAwsOrganizationCommand.js +28 -21
- package/dist-es/commands/GetPermissionCommand.js +28 -21
- package/dist-es/commands/GetResourcePoliciesCommand.js +28 -21
- package/dist-es/commands/GetResourceShareAssociationsCommand.js +28 -21
- package/dist-es/commands/GetResourceShareInvitationsCommand.js +28 -21
- package/dist-es/commands/GetResourceSharesCommand.js +28 -21
- package/dist-es/commands/ListPendingInvitationResourcesCommand.js +28 -21
- package/dist-es/commands/ListPermissionVersionsCommand.js +28 -21
- package/dist-es/commands/ListPermissionsCommand.js +28 -21
- package/dist-es/commands/ListPrincipalsCommand.js +28 -21
- package/dist-es/commands/ListResourceSharePermissionsCommand.js +28 -21
- package/dist-es/commands/ListResourceTypesCommand.js +28 -21
- package/dist-es/commands/ListResourcesCommand.js +28 -21
- package/dist-es/commands/PromoteResourceShareCreatedFromPolicyCommand.js +28 -21
- package/dist-es/commands/RejectResourceShareInvitationCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateResourceShareCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/RAMServiceException.js +10 -5
- package/dist-es/models/models_0.js +303 -422
- package/dist-es/pagination/GetResourcePoliciesPaginator.js +68 -25
- package/dist-es/pagination/GetResourceShareAssociationsPaginator.js +68 -25
- package/dist-es/pagination/GetResourceShareInvitationsPaginator.js +68 -25
- package/dist-es/pagination/GetResourceSharesPaginator.js +68 -25
- package/dist-es/pagination/ListPendingInvitationResourcesPaginator.js +68 -25
- package/dist-es/pagination/ListPermissionVersionsPaginator.js +68 -25
- package/dist-es/pagination/ListPermissionsPaginator.js +68 -25
- package/dist-es/pagination/ListPrincipalsPaginator.js +68 -25
- package/dist-es/pagination/ListResourceSharePermissionsPaginator.js +68 -25
- package/dist-es/pagination/ListResourceTypesPaginator.js +68 -25
- package/dist-es/pagination/ListResourcesPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3041 -2260
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,232 +1,233 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { RAMServiceException as __BaseException } from "./RAMServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
3
|
+
var IdempotentParameterMismatchException = (function (_super) {
|
|
4
|
+
__extends(IdempotentParameterMismatchException, _super);
|
|
5
|
+
function IdempotentParameterMismatchException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "IdempotentParameterMismatchException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
return IdempotentParameterMismatchException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { IdempotentParameterMismatchException };
|
|
15
|
+
var InvalidClientTokenException = (function (_super) {
|
|
16
|
+
__extends(InvalidClientTokenException, _super);
|
|
17
|
+
function InvalidClientTokenException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "InvalidClientTokenException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "InvalidClientTokenException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, InvalidClientTokenException.prototype);
|
|
22
|
+
return _this;
|
|
24
23
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
24
|
+
return InvalidClientTokenException;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { InvalidClientTokenException };
|
|
27
|
+
var MalformedArnException = (function (_super) {
|
|
28
|
+
__extends(MalformedArnException, _super);
|
|
29
|
+
function MalformedArnException(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "MalformedArnException", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "MalformedArnException";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, MalformedArnException.prototype);
|
|
34
|
+
return _this;
|
|
36
35
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
36
|
+
return MalformedArnException;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { MalformedArnException };
|
|
39
|
+
var OperationNotPermittedException = (function (_super) {
|
|
40
|
+
__extends(OperationNotPermittedException, _super);
|
|
41
|
+
function OperationNotPermittedException(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "OperationNotPermittedException", $fault: "client" }, opts)) || this;
|
|
43
|
+
_this.name = "OperationNotPermittedException";
|
|
44
|
+
_this.$fault = "client";
|
|
45
|
+
Object.setPrototypeOf(_this, OperationNotPermittedException.prototype);
|
|
46
|
+
return _this;
|
|
48
47
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
48
|
+
return OperationNotPermittedException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { OperationNotPermittedException };
|
|
51
|
+
var ResourceShareInvitationAlreadyAcceptedException = (function (_super) {
|
|
52
|
+
__extends(ResourceShareInvitationAlreadyAcceptedException, _super);
|
|
53
|
+
function ResourceShareInvitationAlreadyAcceptedException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationAlreadyAcceptedException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "ResourceShareInvitationAlreadyAcceptedException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationAlreadyAcceptedException.prototype);
|
|
58
|
+
return _this;
|
|
60
59
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
60
|
+
return ResourceShareInvitationAlreadyAcceptedException;
|
|
61
|
+
}(__BaseException));
|
|
62
|
+
export { ResourceShareInvitationAlreadyAcceptedException };
|
|
63
|
+
var ResourceShareInvitationAlreadyRejectedException = (function (_super) {
|
|
64
|
+
__extends(ResourceShareInvitationAlreadyRejectedException, _super);
|
|
65
|
+
function ResourceShareInvitationAlreadyRejectedException(opts) {
|
|
66
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationAlreadyRejectedException", $fault: "client" }, opts)) || this;
|
|
67
|
+
_this.name = "ResourceShareInvitationAlreadyRejectedException";
|
|
68
|
+
_this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationAlreadyRejectedException.prototype);
|
|
70
|
+
return _this;
|
|
72
71
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
72
|
+
return ResourceShareInvitationAlreadyRejectedException;
|
|
73
|
+
}(__BaseException));
|
|
74
|
+
export { ResourceShareInvitationAlreadyRejectedException };
|
|
75
|
+
var ResourceShareInvitationArnNotFoundException = (function (_super) {
|
|
76
|
+
__extends(ResourceShareInvitationArnNotFoundException, _super);
|
|
77
|
+
function ResourceShareInvitationArnNotFoundException(opts) {
|
|
78
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationArnNotFoundException", $fault: "client" }, opts)) || this;
|
|
79
|
+
_this.name = "ResourceShareInvitationArnNotFoundException";
|
|
80
|
+
_this.$fault = "client";
|
|
81
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationArnNotFoundException.prototype);
|
|
82
|
+
return _this;
|
|
84
83
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
84
|
+
return ResourceShareInvitationArnNotFoundException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { ResourceShareInvitationArnNotFoundException };
|
|
87
|
+
var ResourceShareInvitationExpiredException = (function (_super) {
|
|
88
|
+
__extends(ResourceShareInvitationExpiredException, _super);
|
|
89
|
+
function ResourceShareInvitationExpiredException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationExpiredException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "ResourceShareInvitationExpiredException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationExpiredException.prototype);
|
|
94
|
+
return _this;
|
|
96
95
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
96
|
+
return ResourceShareInvitationExpiredException;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { ResourceShareInvitationExpiredException };
|
|
99
|
+
var ServerInternalException = (function (_super) {
|
|
100
|
+
__extends(ServerInternalException, _super);
|
|
101
|
+
function ServerInternalException(opts) {
|
|
102
|
+
var _this = _super.call(this, __assign({ name: "ServerInternalException", $fault: "server" }, opts)) || this;
|
|
103
|
+
_this.name = "ServerInternalException";
|
|
104
|
+
_this.$fault = "server";
|
|
105
|
+
Object.setPrototypeOf(_this, ServerInternalException.prototype);
|
|
106
|
+
return _this;
|
|
108
107
|
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
108
|
+
return ServerInternalException;
|
|
109
|
+
}(__BaseException));
|
|
110
|
+
export { ServerInternalException };
|
|
111
|
+
var ServiceUnavailableException = (function (_super) {
|
|
112
|
+
__extends(ServiceUnavailableException, _super);
|
|
113
|
+
function ServiceUnavailableException(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
115
|
+
_this.name = "ServiceUnavailableException";
|
|
116
|
+
_this.$fault = "server";
|
|
117
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
118
|
+
return _this;
|
|
120
119
|
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
120
|
+
return ServiceUnavailableException;
|
|
121
|
+
}(__BaseException));
|
|
122
|
+
export { ServiceUnavailableException };
|
|
123
|
+
var InvalidParameterException = (function (_super) {
|
|
124
|
+
__extends(InvalidParameterException, _super);
|
|
125
|
+
function InvalidParameterException(opts) {
|
|
126
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
127
|
+
_this.name = "InvalidParameterException";
|
|
128
|
+
_this.$fault = "client";
|
|
129
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
130
|
+
return _this;
|
|
132
131
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
132
|
+
return InvalidParameterException;
|
|
133
|
+
}(__BaseException));
|
|
134
|
+
export { InvalidParameterException };
|
|
135
|
+
var InvalidStateTransitionException = (function (_super) {
|
|
136
|
+
__extends(InvalidStateTransitionException, _super);
|
|
137
|
+
function InvalidStateTransitionException(opts) {
|
|
138
|
+
var _this = _super.call(this, __assign({ name: "InvalidStateTransitionException", $fault: "client" }, opts)) || this;
|
|
139
|
+
_this.name = "InvalidStateTransitionException";
|
|
140
|
+
_this.$fault = "client";
|
|
141
|
+
Object.setPrototypeOf(_this, InvalidStateTransitionException.prototype);
|
|
142
|
+
return _this;
|
|
144
143
|
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
144
|
+
return InvalidStateTransitionException;
|
|
145
|
+
}(__BaseException));
|
|
146
|
+
export { InvalidStateTransitionException };
|
|
147
|
+
var ResourceShareLimitExceededException = (function (_super) {
|
|
148
|
+
__extends(ResourceShareLimitExceededException, _super);
|
|
149
|
+
function ResourceShareLimitExceededException(opts) {
|
|
150
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareLimitExceededException", $fault: "client" }, opts)) || this;
|
|
151
|
+
_this.name = "ResourceShareLimitExceededException";
|
|
152
|
+
_this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(_this, ResourceShareLimitExceededException.prototype);
|
|
154
|
+
return _this;
|
|
156
155
|
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
156
|
+
return ResourceShareLimitExceededException;
|
|
157
|
+
}(__BaseException));
|
|
158
|
+
export { ResourceShareLimitExceededException };
|
|
159
|
+
var ThrottlingException = (function (_super) {
|
|
160
|
+
__extends(ThrottlingException, _super);
|
|
161
|
+
function ThrottlingException(opts) {
|
|
162
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
163
|
+
_this.name = "ThrottlingException";
|
|
164
|
+
_this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
166
|
+
return _this;
|
|
168
167
|
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
168
|
+
return ThrottlingException;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { ThrottlingException };
|
|
171
|
+
var UnknownResourceException = (function (_super) {
|
|
172
|
+
__extends(UnknownResourceException, _super);
|
|
173
|
+
function UnknownResourceException(opts) {
|
|
174
|
+
var _this = _super.call(this, __assign({ name: "UnknownResourceException", $fault: "client" }, opts)) || this;
|
|
175
|
+
_this.name = "UnknownResourceException";
|
|
176
|
+
_this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(_this, UnknownResourceException.prototype);
|
|
178
|
+
return _this;
|
|
180
179
|
}
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
180
|
+
return UnknownResourceException;
|
|
181
|
+
}(__BaseException));
|
|
182
|
+
export { UnknownResourceException };
|
|
183
|
+
var TagPolicyViolationException = (function (_super) {
|
|
184
|
+
__extends(TagPolicyViolationException, _super);
|
|
185
|
+
function TagPolicyViolationException(opts) {
|
|
186
|
+
var _this = _super.call(this, __assign({ name: "TagPolicyViolationException", $fault: "client" }, opts)) || this;
|
|
187
|
+
_this.name = "TagPolicyViolationException";
|
|
188
|
+
_this.$fault = "client";
|
|
189
|
+
Object.setPrototypeOf(_this, TagPolicyViolationException.prototype);
|
|
190
|
+
return _this;
|
|
192
191
|
}
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
192
|
+
return TagPolicyViolationException;
|
|
193
|
+
}(__BaseException));
|
|
194
|
+
export { TagPolicyViolationException };
|
|
195
|
+
var InvalidNextTokenException = (function (_super) {
|
|
196
|
+
__extends(InvalidNextTokenException, _super);
|
|
197
|
+
function InvalidNextTokenException(opts) {
|
|
198
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
199
|
+
_this.name = "InvalidNextTokenException";
|
|
200
|
+
_this.$fault = "client";
|
|
201
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
202
|
+
return _this;
|
|
204
203
|
}
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
204
|
+
return InvalidNextTokenException;
|
|
205
|
+
}(__BaseException));
|
|
206
|
+
export { InvalidNextTokenException };
|
|
207
|
+
var ResourceArnNotFoundException = (function (_super) {
|
|
208
|
+
__extends(ResourceArnNotFoundException, _super);
|
|
209
|
+
function ResourceArnNotFoundException(opts) {
|
|
210
|
+
var _this = _super.call(this, __assign({ name: "ResourceArnNotFoundException", $fault: "client" }, opts)) || this;
|
|
211
|
+
_this.name = "ResourceArnNotFoundException";
|
|
212
|
+
_this.$fault = "client";
|
|
213
|
+
Object.setPrototypeOf(_this, ResourceArnNotFoundException.prototype);
|
|
214
|
+
return _this;
|
|
216
215
|
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
216
|
+
return ResourceArnNotFoundException;
|
|
217
|
+
}(__BaseException));
|
|
218
|
+
export { ResourceArnNotFoundException };
|
|
219
|
+
var InvalidMaxResultsException = (function (_super) {
|
|
220
|
+
__extends(InvalidMaxResultsException, _super);
|
|
221
|
+
function InvalidMaxResultsException(opts) {
|
|
222
|
+
var _this = _super.call(this, __assign({ name: "InvalidMaxResultsException", $fault: "client" }, opts)) || this;
|
|
223
|
+
_this.name = "InvalidMaxResultsException";
|
|
224
|
+
_this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(_this, InvalidMaxResultsException.prototype);
|
|
226
|
+
return _this;
|
|
228
227
|
}
|
|
229
|
-
|
|
228
|
+
return InvalidMaxResultsException;
|
|
229
|
+
}(__BaseException));
|
|
230
|
+
export { InvalidMaxResultsException };
|
|
230
231
|
export var ResourceOwner;
|
|
231
232
|
(function (ResourceOwner) {
|
|
232
233
|
ResourceOwner["OTHER_ACCOUNTS"] = "OTHER-ACCOUNTS";
|
|
@@ -243,219 +244,99 @@ export var ResourceRegionScope;
|
|
|
243
244
|
ResourceRegionScope["GLOBAL"] = "GLOBAL";
|
|
244
245
|
ResourceRegionScope["REGIONAL"] = "REGIONAL";
|
|
245
246
|
})(ResourceRegionScope || (ResourceRegionScope = {}));
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
this.$fault = "client";
|
|
255
|
-
Object.setPrototypeOf(this, MissingRequiredParameterException.prototype);
|
|
247
|
+
var MissingRequiredParameterException = (function (_super) {
|
|
248
|
+
__extends(MissingRequiredParameterException, _super);
|
|
249
|
+
function MissingRequiredParameterException(opts) {
|
|
250
|
+
var _this = _super.call(this, __assign({ name: "MissingRequiredParameterException", $fault: "client" }, opts)) || this;
|
|
251
|
+
_this.name = "MissingRequiredParameterException";
|
|
252
|
+
_this.$fault = "client";
|
|
253
|
+
Object.setPrototypeOf(_this, MissingRequiredParameterException.prototype);
|
|
254
|
+
return _this;
|
|
256
255
|
}
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
256
|
+
return MissingRequiredParameterException;
|
|
257
|
+
}(__BaseException));
|
|
258
|
+
export { MissingRequiredParameterException };
|
|
259
|
+
var InvalidResourceTypeException = (function (_super) {
|
|
260
|
+
__extends(InvalidResourceTypeException, _super);
|
|
261
|
+
function InvalidResourceTypeException(opts) {
|
|
262
|
+
var _this = _super.call(this, __assign({ name: "InvalidResourceTypeException", $fault: "client" }, opts)) || this;
|
|
263
|
+
_this.name = "InvalidResourceTypeException";
|
|
264
|
+
_this.$fault = "client";
|
|
265
|
+
Object.setPrototypeOf(_this, InvalidResourceTypeException.prototype);
|
|
266
|
+
return _this;
|
|
268
267
|
}
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
268
|
+
return InvalidResourceTypeException;
|
|
269
|
+
}(__BaseException));
|
|
270
|
+
export { InvalidResourceTypeException };
|
|
271
|
+
var TagLimitExceededException = (function (_super) {
|
|
272
|
+
__extends(TagLimitExceededException, _super);
|
|
273
|
+
function TagLimitExceededException(opts) {
|
|
274
|
+
var _this = _super.call(this, __assign({ name: "TagLimitExceededException", $fault: "client" }, opts)) || this;
|
|
275
|
+
_this.name = "TagLimitExceededException";
|
|
276
|
+
_this.$fault = "client";
|
|
277
|
+
Object.setPrototypeOf(_this, TagLimitExceededException.prototype);
|
|
278
|
+
return _this;
|
|
280
279
|
}
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
});
|
|
285
|
-
export
|
|
286
|
-
|
|
287
|
-
});
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
});
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
});
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
});
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
});
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
});
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
});
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
});
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
});
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
});
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
});
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
});
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
});
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
});
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
});
|
|
330
|
-
export
|
|
331
|
-
|
|
332
|
-
});
|
|
333
|
-
export
|
|
334
|
-
|
|
335
|
-
});
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
});
|
|
339
|
-
export
|
|
340
|
-
|
|
341
|
-
});
|
|
342
|
-
export
|
|
343
|
-
|
|
344
|
-
});
|
|
345
|
-
export const ResourceSharePermissionDetailFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
export const GetPermissionResponseFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
|
-
export const GetResourcePoliciesRequestFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
});
|
|
354
|
-
export const GetResourcePoliciesResponseFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
});
|
|
357
|
-
export const GetResourceShareAssociationsRequestFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
export const GetResourceShareAssociationsResponseFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
|
-
export const GetResourceShareInvitationsRequestFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
});
|
|
366
|
-
export const GetResourceShareInvitationsResponseFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
369
|
-
export const TagFilterFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const GetResourceSharesRequestFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const GetResourceSharesResponseFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const ListPendingInvitationResourcesRequestFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const ResourceFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const ListPendingInvitationResourcesResponseFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
});
|
|
387
|
-
export const ListPermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
});
|
|
390
|
-
export const ResourceSharePermissionSummaryFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
});
|
|
393
|
-
export const ListPermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const ListPermissionVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const ListPermissionVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const ListPrincipalsRequestFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const PrincipalFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const ListPrincipalsResponseFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const ListResourcesRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const ListResourcesResponseFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const ListResourceSharePermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const ListResourceSharePermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const ListResourceTypesRequestFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const ServiceNameAndResourceTypeFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const ListResourceTypesResponseFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const PromoteResourceShareCreatedFromPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const PromoteResourceShareCreatedFromPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const RejectResourceShareInvitationRequestFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const RejectResourceShareInvitationResponseFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
});
|
|
444
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
});
|
|
447
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
448
|
-
...obj,
|
|
449
|
-
});
|
|
450
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
451
|
-
...obj,
|
|
452
|
-
});
|
|
453
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
454
|
-
...obj,
|
|
455
|
-
});
|
|
456
|
-
export const UpdateResourceShareRequestFilterSensitiveLog = (obj) => ({
|
|
457
|
-
...obj,
|
|
458
|
-
});
|
|
459
|
-
export const UpdateResourceShareResponseFilterSensitiveLog = (obj) => ({
|
|
460
|
-
...obj,
|
|
461
|
-
});
|
|
280
|
+
return TagLimitExceededException;
|
|
281
|
+
}(__BaseException));
|
|
282
|
+
export { TagLimitExceededException };
|
|
283
|
+
export var AcceptResourceShareInvitationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var ResourceShareAssociationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var ResourceShareInvitationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var AcceptResourceShareInvitationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var AssociateResourceShareRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var AssociateResourceShareResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var AssociateResourceSharePermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var AssociateResourceSharePermissionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var CreateResourceShareRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var ResourceShareFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var CreateResourceShareResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var DeleteResourceShareRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var DeleteResourceShareResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var DisassociateResourceShareRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var DisassociateResourceShareResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var DisassociateResourceSharePermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var DisassociateResourceSharePermissionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var EnableSharingWithAwsOrganizationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var EnableSharingWithAwsOrganizationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var GetPermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var ResourceSharePermissionDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var GetPermissionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var GetResourcePoliciesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var GetResourcePoliciesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var GetResourceShareAssociationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var GetResourceShareAssociationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var GetResourceShareInvitationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var GetResourceShareInvitationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var TagFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var GetResourceSharesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var GetResourceSharesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var ListPendingInvitationResourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var ResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var ListPendingInvitationResourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var ListPermissionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var ResourceSharePermissionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var ListPermissionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var ListPermissionVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var ListPermissionVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var ListPrincipalsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var PrincipalFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var ListPrincipalsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var ListResourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var ListResourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var ListResourceSharePermissionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var ListResourceSharePermissionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var ListResourceTypesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var ServiceNameAndResourceTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var ListResourceTypesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var PromoteResourceShareCreatedFromPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var PromoteResourceShareCreatedFromPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var RejectResourceShareInvitationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var RejectResourceShareInvitationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var UpdateResourceShareRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var UpdateResourceShareResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|