@aws-sdk/client-repostspace 3.687.0 → 3.691.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.
|
@@ -94,7 +94,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
94
94
|
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
retryAfterSeconds?: number;
|
|
97
|
+
retryAfterSeconds?: number | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* @internal
|
|
100
100
|
*/
|
|
@@ -136,17 +136,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
136
136
|
* <p>The code to identify the service.</p>
|
|
137
137
|
* @public
|
|
138
138
|
*/
|
|
139
|
-
serviceCode?: string;
|
|
139
|
+
serviceCode?: string | undefined;
|
|
140
140
|
/**
|
|
141
141
|
* <p>The code to identify the quota.</p>
|
|
142
142
|
* @public
|
|
143
143
|
*/
|
|
144
|
-
quotaCode?: string;
|
|
144
|
+
quotaCode?: string | undefined;
|
|
145
145
|
/**
|
|
146
146
|
* <p> Advice to clients on when the call can be safely retried.</p>
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
retryAfterSeconds?: number;
|
|
149
|
+
retryAfterSeconds?: number | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* @internal
|
|
152
152
|
*/
|
|
@@ -198,7 +198,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
198
198
|
* <p>The field that caused the error, if applicable.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
fieldList?: ValidationExceptionField[];
|
|
201
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
202
202
|
/**
|
|
203
203
|
* @internal
|
|
204
204
|
*/
|
|
@@ -308,22 +308,22 @@ export interface CreateSpaceInput {
|
|
|
308
308
|
* <p>A description for the private re:Post. This is used only to help you identify this private re:Post.</p>
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
description?: string;
|
|
311
|
+
description?: string | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* <p>The AWS KMS key ARN that’s used for the AWS KMS encryption. If you don't provide a key, your data is encrypted by default with a key that AWS owns and manages for you.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
userKMSKey?: string;
|
|
316
|
+
userKMSKey?: string | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>The list of tags associated with the private re:Post.</p>
|
|
319
319
|
* @public
|
|
320
320
|
*/
|
|
321
|
-
tags?: Record<string, string
|
|
321
|
+
tags?: Record<string, string> | undefined;
|
|
322
322
|
/**
|
|
323
323
|
* <p>The IAM role that grants permissions to the private re:Post to convert unanswered questions into AWS support tickets.</p>
|
|
324
324
|
* @public
|
|
325
325
|
*/
|
|
326
|
-
roleArn?: string;
|
|
326
|
+
roleArn?: string | undefined;
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
329
|
* @public
|
|
@@ -453,7 +453,7 @@ export interface GetSpaceOutput {
|
|
|
453
453
|
* <p>The description of the private re:Post.</p>
|
|
454
454
|
* @public
|
|
455
455
|
*/
|
|
456
|
-
description?: string;
|
|
456
|
+
description?: string | undefined;
|
|
457
457
|
/**
|
|
458
458
|
* <p>The approval status of the custom subdomain.</p>
|
|
459
459
|
* @public
|
|
@@ -473,7 +473,7 @@ export interface GetSpaceOutput {
|
|
|
473
473
|
* <p>The IAM role that grants permissions to the private re:Post to convert unanswered questions into AWS support tickets.</p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
customerRoleArn?: string;
|
|
476
|
+
customerRoleArn?: string | undefined;
|
|
477
477
|
/**
|
|
478
478
|
* <p>The date when the private re:Post was created.</p>
|
|
479
479
|
* @public
|
|
@@ -483,7 +483,7 @@ export interface GetSpaceOutput {
|
|
|
483
483
|
* <p>The date when the private re:Post was deleted.</p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
|
-
deleteDateTime?: Date;
|
|
486
|
+
deleteDateTime?: Date | undefined;
|
|
487
487
|
/**
|
|
488
488
|
* <p>The pricing tier of the private re:Post.</p>
|
|
489
489
|
* @public
|
|
@@ -500,34 +500,34 @@ export interface GetSpaceOutput {
|
|
|
500
500
|
* <p>The list of users that are administrators of the private re:Post.</p>
|
|
501
501
|
* @public
|
|
502
502
|
*/
|
|
503
|
-
userAdmins?: string[];
|
|
503
|
+
userAdmins?: string[] | undefined;
|
|
504
504
|
/**
|
|
505
505
|
* @deprecated
|
|
506
506
|
*
|
|
507
507
|
* <p>The list of groups that are administrators of the private re:Post.</p>
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
groupAdmins?: string[];
|
|
510
|
+
groupAdmins?: string[] | undefined;
|
|
511
511
|
/**
|
|
512
512
|
* <p>A map of accessor identifiers and their roles.</p>
|
|
513
513
|
* @public
|
|
514
514
|
*/
|
|
515
|
-
roles?: Record<string, Role[]
|
|
515
|
+
roles?: Record<string, Role[]> | undefined;
|
|
516
516
|
/**
|
|
517
517
|
* <p>The custom AWS KMS key ARN that’s used for the AWS KMS encryption.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
userKMSKey?: string;
|
|
520
|
+
userKMSKey?: string | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The number of users that have onboarded to the private re:Post.</p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
userCount?: number;
|
|
525
|
+
userCount?: number | undefined;
|
|
526
526
|
/**
|
|
527
527
|
* <p>The content size of the private re:Post.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
contentSize?: number;
|
|
530
|
+
contentSize?: number | undefined;
|
|
531
531
|
}
|
|
532
532
|
/**
|
|
533
533
|
* @public
|
|
@@ -537,12 +537,12 @@ export interface ListSpacesInput {
|
|
|
537
537
|
* <p>The token for the next set of private re:Posts to return. You receive this token from a previous ListSpaces operation.</p>
|
|
538
538
|
* @public
|
|
539
539
|
*/
|
|
540
|
-
nextToken?: string;
|
|
540
|
+
nextToken?: string | undefined;
|
|
541
541
|
/**
|
|
542
542
|
* <p>The maximum number of private re:Posts to include in the results.</p>
|
|
543
543
|
* @public
|
|
544
544
|
*/
|
|
545
|
-
maxResults?: number;
|
|
545
|
+
maxResults?: number | undefined;
|
|
546
546
|
}
|
|
547
547
|
/**
|
|
548
548
|
* <p>A structure that contains some information about a private re:Post in the account.</p>
|
|
@@ -568,7 +568,7 @@ export interface SpaceData {
|
|
|
568
568
|
* <p>The description for the private re:Post. This is used only to help you identify this private re:Post.</p>
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
description?: string;
|
|
571
|
+
description?: string | undefined;
|
|
572
572
|
/**
|
|
573
573
|
* <p>The creation/deletion status of the private re:Post.</p>
|
|
574
574
|
* @public
|
|
@@ -613,22 +613,22 @@ export interface SpaceData {
|
|
|
613
613
|
* <p>The date when the private re:Post was deleted.</p>
|
|
614
614
|
* @public
|
|
615
615
|
*/
|
|
616
|
-
deleteDateTime?: Date;
|
|
616
|
+
deleteDateTime?: Date | undefined;
|
|
617
617
|
/**
|
|
618
618
|
* <p>The custom AWS KMS key ARN that’s used for the AWS KMS encryption.</p>
|
|
619
619
|
* @public
|
|
620
620
|
*/
|
|
621
|
-
userKMSKey?: string;
|
|
621
|
+
userKMSKey?: string | undefined;
|
|
622
622
|
/**
|
|
623
623
|
* <p>The number of onboarded users to the private re:Post.</p>
|
|
624
624
|
* @public
|
|
625
625
|
*/
|
|
626
|
-
userCount?: number;
|
|
626
|
+
userCount?: number | undefined;
|
|
627
627
|
/**
|
|
628
628
|
* <p>The content size of the private re:Post.</p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
contentSize?: number;
|
|
631
|
+
contentSize?: number | undefined;
|
|
632
632
|
}
|
|
633
633
|
/**
|
|
634
634
|
* @public
|
|
@@ -643,7 +643,7 @@ export interface ListSpacesOutput {
|
|
|
643
643
|
* <p>The token that you use when you request the next set of private re:Posts.</p>
|
|
644
644
|
* @public
|
|
645
645
|
*/
|
|
646
|
-
nextToken?: string;
|
|
646
|
+
nextToken?: string | undefined;
|
|
647
647
|
}
|
|
648
648
|
/**
|
|
649
649
|
* @public
|
|
@@ -663,7 +663,7 @@ export interface ListTagsForResourceResponse {
|
|
|
663
663
|
* <p>The list of tags that are associated with the resource.</p>
|
|
664
664
|
* @public
|
|
665
665
|
*/
|
|
666
|
-
tags?: Record<string, string
|
|
666
|
+
tags?: Record<string, string> | undefined;
|
|
667
667
|
}
|
|
668
668
|
/**
|
|
669
669
|
* @public
|
|
@@ -758,17 +758,17 @@ export interface UpdateSpaceInput {
|
|
|
758
758
|
* <p>A description for the private re:Post. This is used only to help you identify this private re:Post.</p>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
description?: string;
|
|
761
|
+
description?: string | undefined;
|
|
762
762
|
/**
|
|
763
763
|
* <p>The pricing tier of this private re:Post.</p>
|
|
764
764
|
* @public
|
|
765
765
|
*/
|
|
766
|
-
tier?: TierLevel;
|
|
766
|
+
tier?: TierLevel | undefined;
|
|
767
767
|
/**
|
|
768
768
|
* <p>The IAM role that grants permissions to the private re:Post to convert unanswered questions into AWS support tickets.</p>
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
roleArn?: string;
|
|
771
|
+
roleArn?: string | undefined;
|
|
772
772
|
}
|
|
773
773
|
/**
|
|
774
774
|
* @internal
|
|
@@ -32,7 +32,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
32
32
|
readonly name: "InternalServerException";
|
|
33
33
|
readonly $fault: "server";
|
|
34
34
|
$retryable: {};
|
|
35
|
-
retryAfterSeconds?: number;
|
|
35
|
+
retryAfterSeconds?: number | undefined;
|
|
36
36
|
constructor(
|
|
37
37
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
38
38
|
);
|
|
@@ -52,9 +52,9 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
52
52
|
$retryable: {
|
|
53
53
|
throttling: boolean;
|
|
54
54
|
};
|
|
55
|
-
serviceCode?: string;
|
|
56
|
-
quotaCode?: string;
|
|
57
|
-
retryAfterSeconds?: number;
|
|
55
|
+
serviceCode?: string | undefined;
|
|
56
|
+
quotaCode?: string | undefined;
|
|
57
|
+
retryAfterSeconds?: number | undefined;
|
|
58
58
|
constructor(
|
|
59
59
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
60
60
|
);
|
|
@@ -75,7 +75,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
75
75
|
readonly name: "ValidationException";
|
|
76
76
|
readonly $fault: "client";
|
|
77
77
|
reason: ValidationExceptionReason | undefined;
|
|
78
|
-
fieldList?: ValidationExceptionField[];
|
|
78
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
79
79
|
constructor(
|
|
80
80
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
81
81
|
);
|
|
@@ -111,10 +111,10 @@ export interface CreateSpaceInput {
|
|
|
111
111
|
name: string | undefined;
|
|
112
112
|
subdomain: string | undefined;
|
|
113
113
|
tier: TierLevel | undefined;
|
|
114
|
-
description?: string;
|
|
115
|
-
userKMSKey?: string;
|
|
116
|
-
tags?: Record<string, string
|
|
117
|
-
roleArn?: string;
|
|
114
|
+
description?: string | undefined;
|
|
115
|
+
userKMSKey?: string | undefined;
|
|
116
|
+
tags?: Record<string, string> | undefined;
|
|
117
|
+
roleArn?: string | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface CreateSpaceOutput {
|
|
120
120
|
spaceId: string | undefined;
|
|
@@ -154,31 +154,31 @@ export interface GetSpaceOutput {
|
|
|
154
154
|
status: string | undefined;
|
|
155
155
|
configurationStatus: ConfigurationStatus | undefined;
|
|
156
156
|
clientId: string | undefined;
|
|
157
|
-
description?: string;
|
|
157
|
+
description?: string | undefined;
|
|
158
158
|
vanityDomainStatus: VanityDomainStatus | undefined;
|
|
159
159
|
vanityDomain: string | undefined;
|
|
160
160
|
randomDomain: string | undefined;
|
|
161
|
-
customerRoleArn?: string;
|
|
161
|
+
customerRoleArn?: string | undefined;
|
|
162
162
|
createDateTime: Date | undefined;
|
|
163
|
-
deleteDateTime?: Date;
|
|
163
|
+
deleteDateTime?: Date | undefined;
|
|
164
164
|
tier: TierLevel | undefined;
|
|
165
165
|
storageLimit: number | undefined;
|
|
166
|
-
userAdmins?: string[];
|
|
167
|
-
groupAdmins?: string[];
|
|
168
|
-
roles?: Record<string, Role[]
|
|
169
|
-
userKMSKey?: string;
|
|
170
|
-
userCount?: number;
|
|
171
|
-
contentSize?: number;
|
|
166
|
+
userAdmins?: string[] | undefined;
|
|
167
|
+
groupAdmins?: string[] | undefined;
|
|
168
|
+
roles?: Record<string, Role[]> | undefined;
|
|
169
|
+
userKMSKey?: string | undefined;
|
|
170
|
+
userCount?: number | undefined;
|
|
171
|
+
contentSize?: number | undefined;
|
|
172
172
|
}
|
|
173
173
|
export interface ListSpacesInput {
|
|
174
|
-
nextToken?: string;
|
|
175
|
-
maxResults?: number;
|
|
174
|
+
nextToken?: string | undefined;
|
|
175
|
+
maxResults?: number | undefined;
|
|
176
176
|
}
|
|
177
177
|
export interface SpaceData {
|
|
178
178
|
spaceId: string | undefined;
|
|
179
179
|
arn: string | undefined;
|
|
180
180
|
name: string | undefined;
|
|
181
|
-
description?: string;
|
|
181
|
+
description?: string | undefined;
|
|
182
182
|
status: string | undefined;
|
|
183
183
|
configurationStatus: ConfigurationStatus | undefined;
|
|
184
184
|
vanityDomainStatus: VanityDomainStatus | undefined;
|
|
@@ -187,20 +187,20 @@ export interface SpaceData {
|
|
|
187
187
|
tier: TierLevel | undefined;
|
|
188
188
|
storageLimit: number | undefined;
|
|
189
189
|
createDateTime: Date | undefined;
|
|
190
|
-
deleteDateTime?: Date;
|
|
191
|
-
userKMSKey?: string;
|
|
192
|
-
userCount?: number;
|
|
193
|
-
contentSize?: number;
|
|
190
|
+
deleteDateTime?: Date | undefined;
|
|
191
|
+
userKMSKey?: string | undefined;
|
|
192
|
+
userCount?: number | undefined;
|
|
193
|
+
contentSize?: number | undefined;
|
|
194
194
|
}
|
|
195
195
|
export interface ListSpacesOutput {
|
|
196
196
|
spaces: SpaceData[] | undefined;
|
|
197
|
-
nextToken?: string;
|
|
197
|
+
nextToken?: string | undefined;
|
|
198
198
|
}
|
|
199
199
|
export interface ListTagsForResourceRequest {
|
|
200
200
|
resourceArn: string | undefined;
|
|
201
201
|
}
|
|
202
202
|
export interface ListTagsForResourceResponse {
|
|
203
|
-
tags?: Record<string, string
|
|
203
|
+
tags?: Record<string, string> | undefined;
|
|
204
204
|
}
|
|
205
205
|
export interface RegisterAdminInput {
|
|
206
206
|
spaceId: string | undefined;
|
|
@@ -224,9 +224,9 @@ export interface UntagResourceRequest {
|
|
|
224
224
|
export interface UntagResourceResponse {}
|
|
225
225
|
export interface UpdateSpaceInput {
|
|
226
226
|
spaceId: string | undefined;
|
|
227
|
-
description?: string;
|
|
228
|
-
tier?: TierLevel;
|
|
229
|
-
roleArn?: string;
|
|
227
|
+
description?: string | undefined;
|
|
228
|
+
tier?: TierLevel | undefined;
|
|
229
|
+
roleArn?: string | undefined;
|
|
230
230
|
}
|
|
231
231
|
export declare const CreateSpaceInputFilterSensitiveLog: (
|
|
232
232
|
obj: CreateSpaceInput
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-repostspace",
|
|
3
3
|
"description": "AWS SDK for JavaScript Repostspace 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-repostspace",
|
|
@@ -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",
|