@cdk8s/awscdk-resolver 0.0.197 → 0.0.198
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/.jsii +3 -3
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +760 -760
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +81 -81
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +764 -760
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +81 -81
- package/node_modules/@aws-sdk/client-cloudformation/package.json +7 -7
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/package.json +4 -4
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +74 -74
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +74 -74
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +6 -6
- package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +56 -56
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +56 -56
- package/node_modules/@aws-sdk/client-sts/package.json +6 -6
- package/node_modules/@aws-sdk/core/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/package.json +4 -4
@@ -17,20 +17,20 @@ import {
|
|
17
17
|
ThirdPartyType,
|
18
18
|
} from "./models_0";
|
19
19
|
export interface SetTypeConfigurationInput {
|
20
|
-
TypeArn?: string;
|
20
|
+
TypeArn?: string | undefined;
|
21
21
|
Configuration: string | undefined;
|
22
|
-
ConfigurationAlias?: string;
|
23
|
-
TypeName?: string;
|
24
|
-
Type?: ThirdPartyType;
|
22
|
+
ConfigurationAlias?: string | undefined;
|
23
|
+
TypeName?: string | undefined;
|
24
|
+
Type?: ThirdPartyType | undefined;
|
25
25
|
}
|
26
26
|
export interface SetTypeConfigurationOutput {
|
27
|
-
ConfigurationArn?: string;
|
27
|
+
ConfigurationArn?: string | undefined;
|
28
28
|
}
|
29
29
|
export interface SetTypeDefaultVersionInput {
|
30
|
-
Arn?: string;
|
31
|
-
Type?: RegistryType;
|
32
|
-
TypeName?: string;
|
33
|
-
VersionId?: string;
|
30
|
+
Arn?: string | undefined;
|
31
|
+
Type?: RegistryType | undefined;
|
32
|
+
TypeName?: string | undefined;
|
33
|
+
VersionId?: string | undefined;
|
34
34
|
}
|
35
35
|
export interface SetTypeDefaultVersionOutput {}
|
36
36
|
export declare const ResourceSignalStatus: {
|
@@ -48,7 +48,7 @@ export interface SignalResourceInput {
|
|
48
48
|
export declare class ResourceScanLimitExceededException extends __BaseException {
|
49
49
|
readonly name: "ResourceScanLimitExceededException";
|
50
50
|
readonly $fault: "client";
|
51
|
-
Message?: string;
|
51
|
+
Message?: string | undefined;
|
52
52
|
constructor(
|
53
53
|
opts: __ExceptionOptionType<
|
54
54
|
ResourceScanLimitExceededException,
|
@@ -57,119 +57,119 @@ export declare class ResourceScanLimitExceededException extends __BaseException
|
|
57
57
|
);
|
58
58
|
}
|
59
59
|
export interface StartResourceScanInput {
|
60
|
-
ClientRequestToken?: string;
|
60
|
+
ClientRequestToken?: string | undefined;
|
61
61
|
}
|
62
62
|
export interface StartResourceScanOutput {
|
63
|
-
ResourceScanId?: string;
|
63
|
+
ResourceScanId?: string | undefined;
|
64
64
|
}
|
65
65
|
export interface StopStackSetOperationInput {
|
66
66
|
StackSetName: string | undefined;
|
67
67
|
OperationId: string | undefined;
|
68
|
-
CallAs?: CallAs;
|
68
|
+
CallAs?: CallAs | undefined;
|
69
69
|
}
|
70
70
|
export interface StopStackSetOperationOutput {}
|
71
71
|
export interface TestTypeInput {
|
72
|
-
Arn?: string;
|
73
|
-
Type?: ThirdPartyType;
|
74
|
-
TypeName?: string;
|
75
|
-
VersionId?: string;
|
76
|
-
LogDeliveryBucket?: string;
|
72
|
+
Arn?: string | undefined;
|
73
|
+
Type?: ThirdPartyType | undefined;
|
74
|
+
TypeName?: string | undefined;
|
75
|
+
VersionId?: string | undefined;
|
76
|
+
LogDeliveryBucket?: string | undefined;
|
77
77
|
}
|
78
78
|
export interface TestTypeOutput {
|
79
|
-
TypeVersionArn?: string;
|
79
|
+
TypeVersionArn?: string | undefined;
|
80
80
|
}
|
81
81
|
export interface UpdateGeneratedTemplateInput {
|
82
82
|
GeneratedTemplateName: string | undefined;
|
83
|
-
NewGeneratedTemplateName?: string;
|
84
|
-
AddResources?: ResourceDefinition[];
|
85
|
-
RemoveResources?: string[];
|
86
|
-
RefreshAllResources?: boolean;
|
87
|
-
TemplateConfiguration?: TemplateConfiguration;
|
83
|
+
NewGeneratedTemplateName?: string | undefined;
|
84
|
+
AddResources?: ResourceDefinition[] | undefined;
|
85
|
+
RemoveResources?: string[] | undefined;
|
86
|
+
RefreshAllResources?: boolean | undefined;
|
87
|
+
TemplateConfiguration?: TemplateConfiguration | undefined;
|
88
88
|
}
|
89
89
|
export interface UpdateGeneratedTemplateOutput {
|
90
|
-
GeneratedTemplateId?: string;
|
90
|
+
GeneratedTemplateId?: string | undefined;
|
91
91
|
}
|
92
92
|
export interface UpdateStackInput {
|
93
93
|
StackName: string | undefined;
|
94
|
-
TemplateBody?: string;
|
95
|
-
TemplateURL?: string;
|
96
|
-
UsePreviousTemplate?: boolean;
|
97
|
-
StackPolicyDuringUpdateBody?: string;
|
98
|
-
StackPolicyDuringUpdateURL?: string;
|
99
|
-
Parameters?: Parameter[];
|
100
|
-
Capabilities?: Capability[];
|
101
|
-
ResourceTypes?: string[];
|
102
|
-
RoleARN?: string;
|
103
|
-
RollbackConfiguration?: RollbackConfiguration;
|
104
|
-
StackPolicyBody?: string;
|
105
|
-
StackPolicyURL?: string;
|
106
|
-
NotificationARNs?: string[];
|
107
|
-
Tags?: Tag[];
|
108
|
-
DisableRollback?: boolean;
|
109
|
-
ClientRequestToken?: string;
|
110
|
-
RetainExceptOnCreate?: boolean;
|
94
|
+
TemplateBody?: string | undefined;
|
95
|
+
TemplateURL?: string | undefined;
|
96
|
+
UsePreviousTemplate?: boolean | undefined;
|
97
|
+
StackPolicyDuringUpdateBody?: string | undefined;
|
98
|
+
StackPolicyDuringUpdateURL?: string | undefined;
|
99
|
+
Parameters?: Parameter[] | undefined;
|
100
|
+
Capabilities?: Capability[] | undefined;
|
101
|
+
ResourceTypes?: string[] | undefined;
|
102
|
+
RoleARN?: string | undefined;
|
103
|
+
RollbackConfiguration?: RollbackConfiguration | undefined;
|
104
|
+
StackPolicyBody?: string | undefined;
|
105
|
+
StackPolicyURL?: string | undefined;
|
106
|
+
NotificationARNs?: string[] | undefined;
|
107
|
+
Tags?: Tag[] | undefined;
|
108
|
+
DisableRollback?: boolean | undefined;
|
109
|
+
ClientRequestToken?: string | undefined;
|
110
|
+
RetainExceptOnCreate?: boolean | undefined;
|
111
111
|
}
|
112
112
|
export interface UpdateStackOutput {
|
113
|
-
StackId?: string;
|
113
|
+
StackId?: string | undefined;
|
114
114
|
}
|
115
115
|
export interface UpdateStackInstancesInput {
|
116
116
|
StackSetName: string | undefined;
|
117
|
-
Accounts?: string[];
|
118
|
-
DeploymentTargets?: DeploymentTargets;
|
117
|
+
Accounts?: string[] | undefined;
|
118
|
+
DeploymentTargets?: DeploymentTargets | undefined;
|
119
119
|
Regions: string[] | undefined;
|
120
|
-
ParameterOverrides?: Parameter[];
|
121
|
-
OperationPreferences?: StackSetOperationPreferences;
|
122
|
-
OperationId?: string;
|
123
|
-
CallAs?: CallAs;
|
120
|
+
ParameterOverrides?: Parameter[] | undefined;
|
121
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
122
|
+
OperationId?: string | undefined;
|
123
|
+
CallAs?: CallAs | undefined;
|
124
124
|
}
|
125
125
|
export interface UpdateStackInstancesOutput {
|
126
|
-
OperationId?: string;
|
126
|
+
OperationId?: string | undefined;
|
127
127
|
}
|
128
128
|
export interface UpdateStackSetInput {
|
129
129
|
StackSetName: string | undefined;
|
130
|
-
Description?: string;
|
131
|
-
TemplateBody?: string;
|
132
|
-
TemplateURL?: string;
|
133
|
-
UsePreviousTemplate?: boolean;
|
134
|
-
Parameters?: Parameter[];
|
135
|
-
Capabilities?: Capability[];
|
136
|
-
Tags?: Tag[];
|
137
|
-
OperationPreferences?: StackSetOperationPreferences;
|
138
|
-
AdministrationRoleARN?: string;
|
139
|
-
ExecutionRoleName?: string;
|
140
|
-
DeploymentTargets?: DeploymentTargets;
|
141
|
-
PermissionModel?: PermissionModels;
|
142
|
-
AutoDeployment?: AutoDeployment;
|
143
|
-
OperationId?: string;
|
144
|
-
Accounts?: string[];
|
145
|
-
Regions?: string[];
|
146
|
-
CallAs?: CallAs;
|
147
|
-
ManagedExecution?: ManagedExecution;
|
130
|
+
Description?: string | undefined;
|
131
|
+
TemplateBody?: string | undefined;
|
132
|
+
TemplateURL?: string | undefined;
|
133
|
+
UsePreviousTemplate?: boolean | undefined;
|
134
|
+
Parameters?: Parameter[] | undefined;
|
135
|
+
Capabilities?: Capability[] | undefined;
|
136
|
+
Tags?: Tag[] | undefined;
|
137
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
138
|
+
AdministrationRoleARN?: string | undefined;
|
139
|
+
ExecutionRoleName?: string | undefined;
|
140
|
+
DeploymentTargets?: DeploymentTargets | undefined;
|
141
|
+
PermissionModel?: PermissionModels | undefined;
|
142
|
+
AutoDeployment?: AutoDeployment | undefined;
|
143
|
+
OperationId?: string | undefined;
|
144
|
+
Accounts?: string[] | undefined;
|
145
|
+
Regions?: string[] | undefined;
|
146
|
+
CallAs?: CallAs | undefined;
|
147
|
+
ManagedExecution?: ManagedExecution | undefined;
|
148
148
|
}
|
149
149
|
export interface UpdateStackSetOutput {
|
150
|
-
OperationId?: string;
|
150
|
+
OperationId?: string | undefined;
|
151
151
|
}
|
152
152
|
export interface UpdateTerminationProtectionInput {
|
153
153
|
EnableTerminationProtection: boolean | undefined;
|
154
154
|
StackName: string | undefined;
|
155
155
|
}
|
156
156
|
export interface UpdateTerminationProtectionOutput {
|
157
|
-
StackId?: string;
|
157
|
+
StackId?: string | undefined;
|
158
158
|
}
|
159
159
|
export interface ValidateTemplateInput {
|
160
|
-
TemplateBody?: string;
|
161
|
-
TemplateURL?: string;
|
160
|
+
TemplateBody?: string | undefined;
|
161
|
+
TemplateURL?: string | undefined;
|
162
162
|
}
|
163
163
|
export interface TemplateParameter {
|
164
|
-
ParameterKey?: string;
|
165
|
-
DefaultValue?: string;
|
166
|
-
NoEcho?: boolean;
|
167
|
-
Description?: string;
|
164
|
+
ParameterKey?: string | undefined;
|
165
|
+
DefaultValue?: string | undefined;
|
166
|
+
NoEcho?: boolean | undefined;
|
167
|
+
Description?: string | undefined;
|
168
168
|
}
|
169
169
|
export interface ValidateTemplateOutput {
|
170
|
-
Parameters?: TemplateParameter[];
|
171
|
-
Description?: string;
|
172
|
-
Capabilities?: Capability[];
|
173
|
-
CapabilitiesReason?: string;
|
174
|
-
DeclaredTransforms?: string[];
|
170
|
+
Parameters?: TemplateParameter[] | undefined;
|
171
|
+
Description?: string | undefined;
|
172
|
+
Capabilities?: Capability[] | undefined;
|
173
|
+
CapabilitiesReason?: string | undefined;
|
174
|
+
DeclaredTransforms?: string[] | undefined;
|
175
175
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/client-cloudformation",
|
3
3
|
"description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
|
4
|
-
"version": "3.
|
4
|
+
"version": "3.691.0",
|
5
5
|
"scripts": {
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudformation",
|
@@ -20,19 +20,19 @@
|
|
20
20
|
"dependencies": {
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
24
|
-
"@aws-sdk/client-sts": "3.
|
25
|
-
"@aws-sdk/core": "3.
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
37
37
|
"@smithy/core": "^2.5.1",
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|
@@ -9,17 +9,17 @@ export interface AccountInfo {
|
|
9
9
|
* <p>The identifier of the AWS account that is assigned to the user.</p>
|
10
10
|
* @public
|
11
11
|
*/
|
12
|
-
accountId?: string;
|
12
|
+
accountId?: string | undefined;
|
13
13
|
/**
|
14
14
|
* <p>The display name of the AWS account that is assigned to the user.</p>
|
15
15
|
* @public
|
16
16
|
*/
|
17
|
-
accountName?: string;
|
17
|
+
accountName?: string | undefined;
|
18
18
|
/**
|
19
19
|
* <p>The email address of the AWS account that is assigned to the user.</p>
|
20
20
|
* @public
|
21
21
|
*/
|
22
|
-
emailAddress?: string;
|
22
|
+
emailAddress?: string | undefined;
|
23
23
|
}
|
24
24
|
/**
|
25
25
|
* @public
|
@@ -53,24 +53,24 @@ export interface RoleCredentials {
|
|
53
53
|
* <i>AWS IAM User Guide</i>.</p>
|
54
54
|
* @public
|
55
55
|
*/
|
56
|
-
accessKeyId?: string;
|
56
|
+
accessKeyId?: string | undefined;
|
57
57
|
/**
|
58
58
|
* <p>The key that is used to sign the request. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">Using Temporary Security Credentials to Request Access to AWS Resources</a> in the
|
59
59
|
* <i>AWS IAM User Guide</i>.</p>
|
60
60
|
* @public
|
61
61
|
*/
|
62
|
-
secretAccessKey?: string;
|
62
|
+
secretAccessKey?: string | undefined;
|
63
63
|
/**
|
64
64
|
* <p>The token used for temporary credentials. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">Using Temporary Security Credentials to Request Access to AWS Resources</a> in the
|
65
65
|
* <i>AWS IAM User Guide</i>.</p>
|
66
66
|
* @public
|
67
67
|
*/
|
68
|
-
sessionToken?: string;
|
68
|
+
sessionToken?: string | undefined;
|
69
69
|
/**
|
70
70
|
* <p>The date on which temporary security credentials expire.</p>
|
71
71
|
* @public
|
72
72
|
*/
|
73
|
-
expiration?: number;
|
73
|
+
expiration?: number | undefined;
|
74
74
|
}
|
75
75
|
/**
|
76
76
|
* @public
|
@@ -80,7 +80,7 @@ export interface GetRoleCredentialsResponse {
|
|
80
80
|
* <p>The credentials for the role that is assigned to the user.</p>
|
81
81
|
* @public
|
82
82
|
*/
|
83
|
-
roleCredentials?: RoleCredentials;
|
83
|
+
roleCredentials?: RoleCredentials | undefined;
|
84
84
|
}
|
85
85
|
/**
|
86
86
|
* <p>Indicates that a problem occurred with the input to the request. For example, a required
|
@@ -141,12 +141,12 @@ export interface ListAccountRolesRequest {
|
|
141
141
|
* <p>The page token from the previous response output when you request subsequent pages.</p>
|
142
142
|
* @public
|
143
143
|
*/
|
144
|
-
nextToken?: string;
|
144
|
+
nextToken?: string | undefined;
|
145
145
|
/**
|
146
146
|
* <p>The number of items that clients can request per page.</p>
|
147
147
|
* @public
|
148
148
|
*/
|
149
|
-
maxResults?: number;
|
149
|
+
maxResults?: number | undefined;
|
150
150
|
/**
|
151
151
|
* <p>The token issued by the <code>CreateToken</code> API call. For more information, see
|
152
152
|
* <a href="https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html">CreateToken</a> in the <i>IAM Identity Center OIDC API Reference Guide</i>.</p>
|
@@ -168,12 +168,12 @@ export interface RoleInfo {
|
|
168
168
|
* <p>The friendly name of the role that is assigned to the user.</p>
|
169
169
|
* @public
|
170
170
|
*/
|
171
|
-
roleName?: string;
|
171
|
+
roleName?: string | undefined;
|
172
172
|
/**
|
173
173
|
* <p>The identifier of the AWS account assigned to the user.</p>
|
174
174
|
* @public
|
175
175
|
*/
|
176
|
-
accountId?: string;
|
176
|
+
accountId?: string | undefined;
|
177
177
|
}
|
178
178
|
/**
|
179
179
|
* @public
|
@@ -183,13 +183,13 @@ export interface ListAccountRolesResponse {
|
|
183
183
|
* <p>The page token client that is used to retrieve the list of accounts.</p>
|
184
184
|
* @public
|
185
185
|
*/
|
186
|
-
nextToken?: string;
|
186
|
+
nextToken?: string | undefined;
|
187
187
|
/**
|
188
188
|
* <p>A paginated response with the list of roles and the next token if more results are
|
189
189
|
* available.</p>
|
190
190
|
* @public
|
191
191
|
*/
|
192
|
-
roleList?: RoleInfo[];
|
192
|
+
roleList?: RoleInfo[] | undefined;
|
193
193
|
}
|
194
194
|
/**
|
195
195
|
* @public
|
@@ -200,12 +200,12 @@ export interface ListAccountsRequest {
|
|
200
200
|
* response output.</p>
|
201
201
|
* @public
|
202
202
|
*/
|
203
|
-
nextToken?: string;
|
203
|
+
nextToken?: string | undefined;
|
204
204
|
/**
|
205
205
|
* <p>This is the number of items clients can request per page.</p>
|
206
206
|
* @public
|
207
207
|
*/
|
208
|
-
maxResults?: number;
|
208
|
+
maxResults?: number | undefined;
|
209
209
|
/**
|
210
210
|
* <p>The token issued by the <code>CreateToken</code> API call. For more information, see
|
211
211
|
* <a href="https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html">CreateToken</a> in the <i>IAM Identity Center OIDC API Reference Guide</i>.</p>
|
@@ -221,13 +221,13 @@ export interface ListAccountsResponse {
|
|
221
221
|
* <p>The page token client that is used to retrieve the list of accounts.</p>
|
222
222
|
* @public
|
223
223
|
*/
|
224
|
-
nextToken?: string;
|
224
|
+
nextToken?: string | undefined;
|
225
225
|
/**
|
226
226
|
* <p>A paginated response with the list of account information and the next token if more
|
227
227
|
* results are available.</p>
|
228
228
|
* @public
|
229
229
|
*/
|
230
|
-
accountList?: AccountInfo[];
|
230
|
+
accountList?: AccountInfo[] | undefined;
|
231
231
|
}
|
232
232
|
/**
|
233
233
|
* @public
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
2
2
|
import { SSOServiceException as __BaseException } from "./SSOServiceException";
|
3
3
|
export interface AccountInfo {
|
4
|
-
accountId?: string;
|
5
|
-
accountName?: string;
|
6
|
-
emailAddress?: string;
|
4
|
+
accountId?: string | undefined;
|
5
|
+
accountName?: string | undefined;
|
6
|
+
emailAddress?: string | undefined;
|
7
7
|
}
|
8
8
|
export interface GetRoleCredentialsRequest {
|
9
9
|
roleName: string | undefined;
|
@@ -11,13 +11,13 @@ export interface GetRoleCredentialsRequest {
|
|
11
11
|
accessToken: string | undefined;
|
12
12
|
}
|
13
13
|
export interface RoleCredentials {
|
14
|
-
accessKeyId?: string;
|
15
|
-
secretAccessKey?: string;
|
16
|
-
sessionToken?: string;
|
17
|
-
expiration?: number;
|
14
|
+
accessKeyId?: string | undefined;
|
15
|
+
secretAccessKey?: string | undefined;
|
16
|
+
sessionToken?: string | undefined;
|
17
|
+
expiration?: number | undefined;
|
18
18
|
}
|
19
19
|
export interface GetRoleCredentialsResponse {
|
20
|
-
roleCredentials?: RoleCredentials;
|
20
|
+
roleCredentials?: RoleCredentials | undefined;
|
21
21
|
}
|
22
22
|
export declare class InvalidRequestException extends __BaseException {
|
23
23
|
readonly name: "InvalidRequestException";
|
@@ -48,27 +48,27 @@ export declare class UnauthorizedException extends __BaseException {
|
|
48
48
|
);
|
49
49
|
}
|
50
50
|
export interface ListAccountRolesRequest {
|
51
|
-
nextToken?: string;
|
52
|
-
maxResults?: number;
|
51
|
+
nextToken?: string | undefined;
|
52
|
+
maxResults?: number | undefined;
|
53
53
|
accessToken: string | undefined;
|
54
54
|
accountId: string | undefined;
|
55
55
|
}
|
56
56
|
export interface RoleInfo {
|
57
|
-
roleName?: string;
|
58
|
-
accountId?: string;
|
57
|
+
roleName?: string | undefined;
|
58
|
+
accountId?: string | undefined;
|
59
59
|
}
|
60
60
|
export interface ListAccountRolesResponse {
|
61
|
-
nextToken?: string;
|
62
|
-
roleList?: RoleInfo[];
|
61
|
+
nextToken?: string | undefined;
|
62
|
+
roleList?: RoleInfo[] | undefined;
|
63
63
|
}
|
64
64
|
export interface ListAccountsRequest {
|
65
|
-
nextToken?: string;
|
66
|
-
maxResults?: number;
|
65
|
+
nextToken?: string | undefined;
|
66
|
+
maxResults?: number | undefined;
|
67
67
|
accessToken: string | undefined;
|
68
68
|
}
|
69
69
|
export interface ListAccountsResponse {
|
70
|
-
nextToken?: string;
|
71
|
-
accountList?: AccountInfo[];
|
70
|
+
nextToken?: string | undefined;
|
71
|
+
accountList?: AccountInfo[] | undefined;
|
72
72
|
}
|
73
73
|
export interface LogoutRequest {
|
74
74
|
accessToken: string | undefined;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/client-sso",
|
3
3
|
"description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
4
|
-
"version": "3.
|
4
|
+
"version": "3.691.0",
|
5
5
|
"scripts": {
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
@@ -20,16 +20,16 @@
|
|
20
20
|
"dependencies": {
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
23
|
-
"@aws-sdk/core": "3.
|
23
|
+
"@aws-sdk/core": "3.691.0",
|
24
24
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
25
25
|
"@aws-sdk/middleware-logger": "3.686.0",
|
26
26
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
27
|
-
"@aws-sdk/middleware-user-agent": "3.
|
27
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
28
28
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
29
29
|
"@aws-sdk/types": "3.686.0",
|
30
30
|
"@aws-sdk/util-endpoints": "3.686.0",
|
31
31
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
32
|
-
"@aws-sdk/util-user-agent-node": "3.
|
32
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
33
33
|
"@smithy/config-resolver": "^3.0.10",
|
34
34
|
"@smithy/core": "^2.5.1",
|
35
35
|
"@smithy/fetch-http-handler": "^4.0.0",
|