@aws-sdk/client-sso-admin 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/SSOAdmin.js +157 -150
- package/dist-es/SSOAdminClient.js +28 -22
- package/dist-es/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.js +28 -21
- package/dist-es/commands/AttachManagedPolicyToPermissionSetCommand.js +28 -21
- package/dist-es/commands/CreateAccountAssignmentCommand.js +28 -21
- package/dist-es/commands/CreateInstanceAccessControlAttributeConfigurationCommand.js +28 -21
- package/dist-es/commands/CreatePermissionSetCommand.js +28 -21
- package/dist-es/commands/DeleteAccountAssignmentCommand.js +28 -21
- package/dist-es/commands/DeleteInlinePolicyFromPermissionSetCommand.js +28 -21
- package/dist-es/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.js +28 -21
- package/dist-es/commands/DeletePermissionSetCommand.js +28 -21
- package/dist-es/commands/DeletePermissionsBoundaryFromPermissionSetCommand.js +28 -21
- package/dist-es/commands/DescribeAccountAssignmentCreationStatusCommand.js +28 -21
- package/dist-es/commands/DescribeAccountAssignmentDeletionStatusCommand.js +28 -21
- package/dist-es/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.js +28 -21
- package/dist-es/commands/DescribePermissionSetCommand.js +28 -21
- package/dist-es/commands/DescribePermissionSetProvisioningStatusCommand.js +28 -21
- package/dist-es/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.js +28 -21
- package/dist-es/commands/DetachManagedPolicyFromPermissionSetCommand.js +28 -21
- package/dist-es/commands/GetInlinePolicyForPermissionSetCommand.js +28 -21
- package/dist-es/commands/GetPermissionsBoundaryForPermissionSetCommand.js +28 -21
- package/dist-es/commands/ListAccountAssignmentCreationStatusCommand.js +28 -21
- package/dist-es/commands/ListAccountAssignmentDeletionStatusCommand.js +28 -21
- package/dist-es/commands/ListAccountAssignmentsCommand.js +28 -21
- package/dist-es/commands/ListAccountsForProvisionedPermissionSetCommand.js +28 -21
- package/dist-es/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.js +28 -21
- package/dist-es/commands/ListInstancesCommand.js +28 -21
- package/dist-es/commands/ListManagedPoliciesInPermissionSetCommand.js +28 -21
- package/dist-es/commands/ListPermissionSetProvisioningStatusCommand.js +28 -21
- package/dist-es/commands/ListPermissionSetsCommand.js +28 -21
- package/dist-es/commands/ListPermissionSetsProvisionedToAccountCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ProvisionPermissionSetCommand.js +28 -21
- package/dist-es/commands/PutInlinePolicyToPermissionSetCommand.js +28 -21
- package/dist-es/commands/PutPermissionsBoundaryToPermissionSetCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.js +28 -21
- package/dist-es/commands/UpdatePermissionSetCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SSOAdminServiceException.js +10 -5
- package/dist-es/models/models_0.js +174 -351
- package/dist-es/pagination/ListAccountAssignmentCreationStatusPaginator.js +68 -25
- package/dist-es/pagination/ListAccountAssignmentDeletionStatusPaginator.js +68 -25
- package/dist-es/pagination/ListAccountAssignmentsPaginator.js +68 -25
- package/dist-es/pagination/ListAccountsForProvisionedPermissionSetPaginator.js +68 -25
- package/dist-es/pagination/ListCustomerManagedPolicyReferencesInPermissionSetPaginator.js +68 -25
- package/dist-es/pagination/ListInstancesPaginator.js +68 -25
- package/dist-es/pagination/ListManagedPoliciesInPermissionSetPaginator.js +68 -25
- package/dist-es/pagination/ListPermissionSetProvisioningStatusPaginator.js +68 -25
- package/dist-es/pagination/ListPermissionSetsPaginator.js +68 -25
- package/dist-es/pagination/ListPermissionSetsProvisionedToAccountPaginator.js +68 -25
- package/dist-es/pagination/ListTagsForResourcePaginator.js +67 -24
- package/dist-es/protocols/Aws_json1_1.js +3330 -2568
- 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 +33 -33
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DeletePermissionsBoundaryFromPermissionSetRequestFilterSensitiveLog, DeletePermissionsBoundaryFromPermissionSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DeletePermissionsBoundaryFromPermissionSetCommand, serializeAws_json1_1DeletePermissionsBoundaryFromPermissionSetCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DeletePermissionsBoundaryFromPermissionSetCommand = (function (_super) {
|
|
7
|
+
__extends(DeletePermissionsBoundaryFromPermissionSetCommand, _super);
|
|
8
|
+
function DeletePermissionsBoundaryFromPermissionSetCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DeletePermissionsBoundaryFromPermissionSetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DeletePermissionsBoundaryFromPermissionSetCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DeletePermissionsBoundaryFromPermissionSetRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DeletePermissionsBoundaryFromPermissionSetResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeletePermissionsBoundaryFromPermissionSetCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DeletePermissionsBoundaryFromPermissionSetCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DeletePermissionsBoundaryFromPermissionSetCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DeletePermissionsBoundaryFromPermissionSetCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DeletePermissionsBoundaryFromPermissionSetCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeletePermissionsBoundaryFromPermissionSetCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeAccountAssignmentCreationStatusRequestFilterSensitiveLog, DescribeAccountAssignmentCreationStatusResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeAccountAssignmentCreationStatusCommand, serializeAws_json1_1DescribeAccountAssignmentCreationStatusCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeAccountAssignmentCreationStatusCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeAccountAssignmentCreationStatusCommand, _super);
|
|
8
|
+
function DescribeAccountAssignmentCreationStatusCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeAccountAssignmentCreationStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DescribeAccountAssignmentCreationStatusCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeAccountAssignmentCreationStatusRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeAccountAssignmentCreationStatusResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeAccountAssignmentCreationStatusCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeAccountAssignmentCreationStatusCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeAccountAssignmentCreationStatusCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeAccountAssignmentCreationStatusCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeAccountAssignmentCreationStatusCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeAccountAssignmentCreationStatusCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeAccountAssignmentDeletionStatusRequestFilterSensitiveLog, DescribeAccountAssignmentDeletionStatusResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeAccountAssignmentDeletionStatusCommand, serializeAws_json1_1DescribeAccountAssignmentDeletionStatusCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeAccountAssignmentDeletionStatusCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeAccountAssignmentDeletionStatusCommand, _super);
|
|
8
|
+
function DescribeAccountAssignmentDeletionStatusCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeAccountAssignmentDeletionStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DescribeAccountAssignmentDeletionStatusCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeAccountAssignmentDeletionStatusRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeAccountAssignmentDeletionStatusResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeAccountAssignmentDeletionStatusCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeAccountAssignmentDeletionStatusCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeAccountAssignmentDeletionStatusCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeAccountAssignmentDeletionStatusCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeAccountAssignmentDeletionStatusCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeAccountAssignmentDeletionStatusCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeInstanceAccessControlAttributeConfigurationRequestFilterSensitiveLog, DescribeInstanceAccessControlAttributeConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeInstanceAccessControlAttributeConfigurationCommand, serializeAws_json1_1DescribeInstanceAccessControlAttributeConfigurationCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeInstanceAccessControlAttributeConfigurationCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeInstanceAccessControlAttributeConfigurationCommand, _super);
|
|
8
|
+
function DescribeInstanceAccessControlAttributeConfigurationCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeInstanceAccessControlAttributeConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DescribeInstanceAccessControlAttributeConfigurationCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeInstanceAccessControlAttributeConfigurationRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeInstanceAccessControlAttributeConfigurationResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeInstanceAccessControlAttributeConfigurationCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeInstanceAccessControlAttributeConfigurationCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeInstanceAccessControlAttributeConfigurationCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeInstanceAccessControlAttributeConfigurationCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeInstanceAccessControlAttributeConfigurationCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeInstanceAccessControlAttributeConfigurationCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribePermissionSetRequestFilterSensitiveLog, DescribePermissionSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribePermissionSetCommand, serializeAws_json1_1DescribePermissionSetCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribePermissionSetCommand = (function (_super) {
|
|
7
|
+
__extends(DescribePermissionSetCommand, _super);
|
|
8
|
+
function DescribePermissionSetCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribePermissionSetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DescribePermissionSetCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribePermissionSetRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribePermissionSetResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribePermissionSetCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribePermissionSetCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribePermissionSetCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribePermissionSetCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribePermissionSetCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribePermissionSetCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribePermissionSetProvisioningStatusRequestFilterSensitiveLog, DescribePermissionSetProvisioningStatusResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribePermissionSetProvisioningStatusCommand, serializeAws_json1_1DescribePermissionSetProvisioningStatusCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribePermissionSetProvisioningStatusCommand = (function (_super) {
|
|
7
|
+
__extends(DescribePermissionSetProvisioningStatusCommand, _super);
|
|
8
|
+
function DescribePermissionSetProvisioningStatusCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribePermissionSetProvisioningStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DescribePermissionSetProvisioningStatusCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribePermissionSetProvisioningStatusRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribePermissionSetProvisioningStatusResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribePermissionSetProvisioningStatusCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribePermissionSetProvisioningStatusCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribePermissionSetProvisioningStatusCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribePermissionSetProvisioningStatusCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribePermissionSetProvisioningStatusCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribePermissionSetProvisioningStatusCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DetachCustomerManagedPolicyReferenceFromPermissionSetRequestFilterSensitiveLog, DetachCustomerManagedPolicyReferenceFromPermissionSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DetachCustomerManagedPolicyReferenceFromPermissionSetCommand, serializeAws_json1_1DetachCustomerManagedPolicyReferenceFromPermissionSetCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DetachCustomerManagedPolicyReferenceFromPermissionSetCommand = (function (_super) {
|
|
7
|
+
__extends(DetachCustomerManagedPolicyReferenceFromPermissionSetCommand, _super);
|
|
8
|
+
function DetachCustomerManagedPolicyReferenceFromPermissionSetCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DetachCustomerManagedPolicyReferenceFromPermissionSetCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DetachCustomerManagedPolicyReferenceFromPermissionSetRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DetachCustomerManagedPolicyReferenceFromPermissionSetResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DetachCustomerManagedPolicyReferenceFromPermissionSetCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DetachCustomerManagedPolicyReferenceFromPermissionSetCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DetachCustomerManagedPolicyReferenceFromPermissionSetCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DetachCustomerManagedPolicyReferenceFromPermissionSetCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DetachManagedPolicyFromPermissionSetRequestFilterSensitiveLog, DetachManagedPolicyFromPermissionSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DetachManagedPolicyFromPermissionSetCommand, serializeAws_json1_1DetachManagedPolicyFromPermissionSetCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DetachManagedPolicyFromPermissionSetCommand = (function (_super) {
|
|
7
|
+
__extends(DetachManagedPolicyFromPermissionSetCommand, _super);
|
|
8
|
+
function DetachManagedPolicyFromPermissionSetCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DetachManagedPolicyFromPermissionSetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "DetachManagedPolicyFromPermissionSetCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DetachManagedPolicyFromPermissionSetRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DetachManagedPolicyFromPermissionSetResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DetachManagedPolicyFromPermissionSetCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DetachManagedPolicyFromPermissionSetCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DetachManagedPolicyFromPermissionSetCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DetachManagedPolicyFromPermissionSetCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DetachManagedPolicyFromPermissionSetCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DetachManagedPolicyFromPermissionSetCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { GetInlinePolicyForPermissionSetRequestFilterSensitiveLog, GetInlinePolicyForPermissionSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1GetInlinePolicyForPermissionSetCommand, serializeAws_json1_1GetInlinePolicyForPermissionSetCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var GetInlinePolicyForPermissionSetCommand = (function (_super) {
|
|
7
|
+
__extends(GetInlinePolicyForPermissionSetCommand, _super);
|
|
8
|
+
function GetInlinePolicyForPermissionSetCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
GetInlinePolicyForPermissionSetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "GetInlinePolicyForPermissionSetCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: GetInlinePolicyForPermissionSetRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: GetInlinePolicyForPermissionSetResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetInlinePolicyForPermissionSetCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1GetInlinePolicyForPermissionSetCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
GetInlinePolicyForPermissionSetCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1GetInlinePolicyForPermissionSetCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return GetInlinePolicyForPermissionSetCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetInlinePolicyForPermissionSetCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { GetPermissionsBoundaryForPermissionSetRequestFilterSensitiveLog, GetPermissionsBoundaryForPermissionSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1GetPermissionsBoundaryForPermissionSetCommand, serializeAws_json1_1GetPermissionsBoundaryForPermissionSetCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var GetPermissionsBoundaryForPermissionSetCommand = (function (_super) {
|
|
7
|
+
__extends(GetPermissionsBoundaryForPermissionSetCommand, _super);
|
|
8
|
+
function GetPermissionsBoundaryForPermissionSetCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
GetPermissionsBoundaryForPermissionSetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SSOAdminClient";
|
|
18
|
+
var commandName = "GetPermissionsBoundaryForPermissionSetCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: GetPermissionsBoundaryForPermissionSetRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: GetPermissionsBoundaryForPermissionSetResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetPermissionsBoundaryForPermissionSetCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1GetPermissionsBoundaryForPermissionSetCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
GetPermissionsBoundaryForPermissionSetCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1GetPermissionsBoundaryForPermissionSetCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return GetPermissionsBoundaryForPermissionSetCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetPermissionsBoundaryForPermissionSetCommand };
|