@aws-sdk/client-finspace 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/GetEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-cjs/models/models_0.js +81 -119
- package/dist-cjs/protocols/Aws_restJson1.js +100 -188
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -3
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -3
- package/dist-es/commands/GetEnvironmentCommand.js +3 -3
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -3
- package/dist-es/models/models_0.js +21 -78
- package/dist-es/protocols/Aws_restJson1.js +131 -190
- package/dist-types/models/models_0.d.ts +76 -114
- package/dist-types/ts3.4/models/models_0.d.ts +38 -76
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListEnvironmentsRequestFilterSensitiveLog, ListEnvironmentsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListEnvironmentsCommand, serializeAws_restJson1ListEnvironmentsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListEnvironmentsCommand = (function (_super) {
|
|
7
7
|
__extends(ListEnvironmentsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListEnvironmentsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListEnvironmentsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListEnvironmentsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateEnvironmentRequestFilterSensitiveLog, UpdateEnvironmentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateEnvironmentCommand, serializeAws_restJson1UpdateEnvironmentCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateEnvironmentCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateEnvironmentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateEnvironmentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateEnvironmentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateEnvironmentResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -18,24 +18,6 @@ export var FederationMode;
|
|
|
18
18
|
FederationMode["FEDERATED"] = "FEDERATED";
|
|
19
19
|
FederationMode["LOCAL"] = "LOCAL";
|
|
20
20
|
})(FederationMode || (FederationMode = {}));
|
|
21
|
-
export var FederationParameters;
|
|
22
|
-
(function (FederationParameters) {
|
|
23
|
-
FederationParameters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
24
|
-
})(FederationParameters || (FederationParameters = {}));
|
|
25
|
-
export var SuperuserParameters;
|
|
26
|
-
(function (SuperuserParameters) {
|
|
27
|
-
SuperuserParameters.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.emailAddress && { emailAddress: SENSITIVE_STRING }))); };
|
|
28
|
-
})(SuperuserParameters || (SuperuserParameters = {}));
|
|
29
|
-
export var CreateEnvironmentRequest;
|
|
30
|
-
(function (CreateEnvironmentRequest) {
|
|
31
|
-
CreateEnvironmentRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.superuserParameters && {
|
|
32
|
-
superuserParameters: SuperuserParameters.filterSensitiveLog(obj.superuserParameters),
|
|
33
|
-
}))); };
|
|
34
|
-
})(CreateEnvironmentRequest || (CreateEnvironmentRequest = {}));
|
|
35
|
-
export var CreateEnvironmentResponse;
|
|
36
|
-
(function (CreateEnvironmentResponse) {
|
|
37
|
-
CreateEnvironmentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
38
|
-
})(CreateEnvironmentResponse || (CreateEnvironmentResponse = {}));
|
|
39
21
|
var InternalServerException = (function (_super) {
|
|
40
22
|
__extends(InternalServerException, _super);
|
|
41
23
|
function InternalServerException(opts) {
|
|
@@ -96,14 +78,6 @@ var ValidationException = (function (_super) {
|
|
|
96
78
|
return ValidationException;
|
|
97
79
|
}(__BaseException));
|
|
98
80
|
export { ValidationException };
|
|
99
|
-
export var DeleteEnvironmentRequest;
|
|
100
|
-
(function (DeleteEnvironmentRequest) {
|
|
101
|
-
DeleteEnvironmentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
-
})(DeleteEnvironmentRequest || (DeleteEnvironmentRequest = {}));
|
|
103
|
-
export var DeleteEnvironmentResponse;
|
|
104
|
-
(function (DeleteEnvironmentResponse) {
|
|
105
|
-
DeleteEnvironmentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
-
})(DeleteEnvironmentResponse || (DeleteEnvironmentResponse = {}));
|
|
107
81
|
var ResourceNotFoundException = (function (_super) {
|
|
108
82
|
__extends(ResourceNotFoundException, _super);
|
|
109
83
|
function ResourceNotFoundException(opts) {
|
|
@@ -116,10 +90,6 @@ var ResourceNotFoundException = (function (_super) {
|
|
|
116
90
|
return ResourceNotFoundException;
|
|
117
91
|
}(__BaseException));
|
|
118
92
|
export { ResourceNotFoundException };
|
|
119
|
-
export var GetEnvironmentRequest;
|
|
120
|
-
(function (GetEnvironmentRequest) {
|
|
121
|
-
GetEnvironmentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
-
})(GetEnvironmentRequest || (GetEnvironmentRequest = {}));
|
|
123
93
|
export var EnvironmentStatus;
|
|
124
94
|
(function (EnvironmentStatus) {
|
|
125
95
|
EnvironmentStatus["CREATED"] = "CREATED";
|
|
@@ -133,22 +103,6 @@ export var EnvironmentStatus;
|
|
|
133
103
|
EnvironmentStatus["RETRY_DELETION"] = "RETRY_DELETION";
|
|
134
104
|
EnvironmentStatus["SUSPENDED"] = "SUSPENDED";
|
|
135
105
|
})(EnvironmentStatus || (EnvironmentStatus = {}));
|
|
136
|
-
export var Environment;
|
|
137
|
-
(function (Environment) {
|
|
138
|
-
Environment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
-
})(Environment || (Environment = {}));
|
|
140
|
-
export var GetEnvironmentResponse;
|
|
141
|
-
(function (GetEnvironmentResponse) {
|
|
142
|
-
GetEnvironmentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
-
})(GetEnvironmentResponse || (GetEnvironmentResponse = {}));
|
|
144
|
-
export var ListEnvironmentsRequest;
|
|
145
|
-
(function (ListEnvironmentsRequest) {
|
|
146
|
-
ListEnvironmentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
|
-
})(ListEnvironmentsRequest || (ListEnvironmentsRequest = {}));
|
|
148
|
-
export var ListEnvironmentsResponse;
|
|
149
|
-
(function (ListEnvironmentsResponse) {
|
|
150
|
-
ListEnvironmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
|
-
})(ListEnvironmentsResponse || (ListEnvironmentsResponse = {}));
|
|
152
106
|
var InvalidRequestException = (function (_super) {
|
|
153
107
|
__extends(InvalidRequestException, _super);
|
|
154
108
|
function InvalidRequestException(opts) {
|
|
@@ -161,35 +115,24 @@ var InvalidRequestException = (function (_super) {
|
|
|
161
115
|
return InvalidRequestException;
|
|
162
116
|
}(__BaseException));
|
|
163
117
|
export { InvalidRequestException };
|
|
164
|
-
export var
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
export var
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
export var
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
export var
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
export var
|
|
185
|
-
(function (UntagResourceResponse) {
|
|
186
|
-
UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
-
})(UntagResourceResponse || (UntagResourceResponse = {}));
|
|
188
|
-
export var UpdateEnvironmentRequest;
|
|
189
|
-
(function (UpdateEnvironmentRequest) {
|
|
190
|
-
UpdateEnvironmentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
-
})(UpdateEnvironmentRequest || (UpdateEnvironmentRequest = {}));
|
|
192
|
-
export var UpdateEnvironmentResponse;
|
|
193
|
-
(function (UpdateEnvironmentResponse) {
|
|
194
|
-
UpdateEnvironmentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
-
})(UpdateEnvironmentResponse || (UpdateEnvironmentResponse = {}));
|
|
118
|
+
export var FederationParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
|
+
export var SuperuserParametersFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.emailAddress && { emailAddress: SENSITIVE_STRING }))); };
|
|
120
|
+
export var CreateEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.superuserParameters && {
|
|
121
|
+
superuserParameters: SuperuserParametersFilterSensitiveLog(obj.superuserParameters),
|
|
122
|
+
}))); };
|
|
123
|
+
export var CreateEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
+
export var DeleteEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
+
export var DeleteEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
export var GetEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
|
+
export var EnvironmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
+
export var GetEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
+
export var ListEnvironmentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
export var ListEnvironmentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var UpdateEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var UpdateEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|