@aws-sdk/client-pca-connector-scep 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.
|
@@ -39,27 +39,27 @@ export interface Challenge {
|
|
|
39
39
|
* <p>The Amazon Resource Name (ARN) of the challenge.</p>
|
|
40
40
|
* @public
|
|
41
41
|
*/
|
|
42
|
-
Arn?: string;
|
|
42
|
+
Arn?: string | undefined;
|
|
43
43
|
/**
|
|
44
44
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
|
-
ConnectorArn?: string;
|
|
47
|
+
ConnectorArn?: string | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* <p>The date and time that the challenge was created.</p>
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
CreatedAt?: Date;
|
|
52
|
+
CreatedAt?: Date | undefined;
|
|
53
53
|
/**
|
|
54
54
|
* <p>The date and time that the challenge was updated.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
UpdatedAt?: Date;
|
|
57
|
+
UpdatedAt?: Date | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* <p>The SCEP challenge password, in UUID format.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
Password?: string;
|
|
62
|
+
Password?: string | undefined;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
* <p>Contains details about the connector's challenge.</p>
|
|
@@ -70,22 +70,22 @@ export interface ChallengeMetadata {
|
|
|
70
70
|
* <p>The Amazon Resource Name (ARN) of the challenge.</p>
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
|
-
Arn?: string;
|
|
73
|
+
Arn?: string | undefined;
|
|
74
74
|
/**
|
|
75
75
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
ConnectorArn?: string;
|
|
78
|
+
ConnectorArn?: string | undefined;
|
|
79
79
|
/**
|
|
80
80
|
* <p>The date and time that the connector was created.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
CreatedAt?: Date;
|
|
83
|
+
CreatedAt?: Date | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>The date and time that the connector was updated.</p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
UpdatedAt?: Date;
|
|
88
|
+
UpdatedAt?: Date | undefined;
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
91
|
* <p>Details about the specified challenge, returned by the <a href="https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_GetChallengeMetadata.html">GetChallengeMetadata</a> action.</p>
|
|
@@ -96,22 +96,22 @@ export interface ChallengeMetadataSummary {
|
|
|
96
96
|
* <p>The Amazon Resource Name (ARN) of the challenge.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
Arn?: string;
|
|
99
|
+
Arn?: string | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
102
102
|
* @public
|
|
103
103
|
*/
|
|
104
|
-
ConnectorArn?: string;
|
|
104
|
+
ConnectorArn?: string | undefined;
|
|
105
105
|
/**
|
|
106
106
|
* <p>The date and time that the challenge was created.</p>
|
|
107
107
|
* @public
|
|
108
108
|
*/
|
|
109
|
-
CreatedAt?: Date;
|
|
109
|
+
CreatedAt?: Date | undefined;
|
|
110
110
|
/**
|
|
111
111
|
* <p>The date and time that the challenge was updated.</p>
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
|
-
UpdatedAt?: Date;
|
|
114
|
+
UpdatedAt?: Date | undefined;
|
|
115
115
|
}
|
|
116
116
|
/**
|
|
117
117
|
* <p>This request can't be completed for one of the following reasons because the requested
|
|
@@ -150,12 +150,12 @@ export interface CreateChallengeRequest {
|
|
|
150
150
|
* <p>Custom string that can be used to distinguish between calls to the <a href="https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html">CreateChallenge</a> action. Client tokens for <code>CreateChallenge</code> time out after five minutes. Therefore, if you call <code>CreateChallenge</code> multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.</p>
|
|
151
151
|
* @public
|
|
152
152
|
*/
|
|
153
|
-
ClientToken?: string;
|
|
153
|
+
ClientToken?: string | undefined;
|
|
154
154
|
/**
|
|
155
155
|
* <p>The key-value pairs to associate with the resource.</p>
|
|
156
156
|
* @public
|
|
157
157
|
*/
|
|
158
|
-
Tags?: Record<string, string
|
|
158
|
+
Tags?: Record<string, string> | undefined;
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
161
|
* @public
|
|
@@ -165,7 +165,7 @@ export interface CreateChallengeResponse {
|
|
|
165
165
|
* <p>Returns the challenge details for the specified connector.</p>
|
|
166
166
|
* @public
|
|
167
167
|
*/
|
|
168
|
-
Challenge?: Challenge;
|
|
168
|
+
Challenge?: Challenge | undefined;
|
|
169
169
|
}
|
|
170
170
|
/**
|
|
171
171
|
* <p>The request processing has failed because of an unknown error, exception or failure with
|
|
@@ -278,7 +278,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
278
278
|
* <p>The reason for the validation error, if available. The service doesn't return a reason for every validation exception.</p>
|
|
279
279
|
* @public
|
|
280
280
|
*/
|
|
281
|
-
Reason?: ValidationExceptionReason;
|
|
281
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
282
282
|
/**
|
|
283
283
|
* @internal
|
|
284
284
|
*/
|
|
@@ -312,7 +312,7 @@ export interface GetChallengeMetadataResponse {
|
|
|
312
312
|
* <p>The metadata for the challenge.</p>
|
|
313
313
|
* @public
|
|
314
314
|
*/
|
|
315
|
-
ChallengeMetadata?: ChallengeMetadata;
|
|
315
|
+
ChallengeMetadata?: ChallengeMetadata | undefined;
|
|
316
316
|
}
|
|
317
317
|
/**
|
|
318
318
|
* @public
|
|
@@ -332,7 +332,7 @@ export interface GetChallengePasswordResponse {
|
|
|
332
332
|
* <p>The SCEP challenge password.</p>
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
Password?: string;
|
|
335
|
+
Password?: string | undefined;
|
|
336
336
|
}
|
|
337
337
|
/**
|
|
338
338
|
* @public
|
|
@@ -344,14 +344,14 @@ export interface ListChallengeMetadataRequest {
|
|
|
344
344
|
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
MaxResults?: number;
|
|
347
|
+
MaxResults?: number | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
350
350
|
* for retrieval exceeds the maximum you requested, Connector for SCEP returns a <code>NextToken</code>
|
|
351
351
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
NextToken?: string;
|
|
354
|
+
NextToken?: string | undefined;
|
|
355
355
|
/**
|
|
356
356
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
357
357
|
* @public
|
|
@@ -366,14 +366,14 @@ export interface ListChallengeMetadataResponse {
|
|
|
366
366
|
* <p>The challenge metadata for the challenges belonging to your Amazon Web Services account.</p>
|
|
367
367
|
* @public
|
|
368
368
|
*/
|
|
369
|
-
Challenges?: ChallengeMetadataSummary[];
|
|
369
|
+
Challenges?: ChallengeMetadataSummary[] | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
372
372
|
* for retrieval exceeds the maximum you requested, Connector for SCEP returns a <code>NextToken</code>
|
|
373
373
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
|
-
NextToken?: string;
|
|
376
|
+
NextToken?: string | undefined;
|
|
377
377
|
}
|
|
378
378
|
/**
|
|
379
379
|
* <p>Contains configuration details for use with Microsoft Intune. For information about using Connector for SCEP for Microsoft Intune, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep-intune.html">Using Connector for SCEP for Microsoft Intune</a>.</p>
|
|
@@ -432,17 +432,17 @@ export interface OpenIdConfiguration {
|
|
|
432
432
|
* <p>The issuer value to copy into your Microsoft Entra app registration's OIDC.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
Issuer?: string;
|
|
435
|
+
Issuer?: string | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>The subject value to copy into your Microsoft Entra app registration's OIDC.</p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
Subject?: string;
|
|
440
|
+
Subject?: string | undefined;
|
|
441
441
|
/**
|
|
442
442
|
* <p>The audience value to copy into your Microsoft Entra app registration's OIDC.</p>
|
|
443
443
|
* @public
|
|
444
444
|
*/
|
|
445
|
-
Audience?: string;
|
|
445
|
+
Audience?: string | undefined;
|
|
446
446
|
}
|
|
447
447
|
/**
|
|
448
448
|
* @public
|
|
@@ -493,52 +493,52 @@ export interface Connector {
|
|
|
493
493
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
494
494
|
* @public
|
|
495
495
|
*/
|
|
496
|
-
Arn?: string;
|
|
496
|
+
Arn?: string | undefined;
|
|
497
497
|
/**
|
|
498
498
|
* <p>The Amazon Resource Name (ARN) of the certificate authority associated with the connector.</p>
|
|
499
499
|
* @public
|
|
500
500
|
*/
|
|
501
|
-
CertificateAuthorityArn?: string;
|
|
501
|
+
CertificateAuthorityArn?: string | undefined;
|
|
502
502
|
/**
|
|
503
503
|
* <p>The connector type.</p>
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
|
-
Type?: ConnectorType;
|
|
506
|
+
Type?: ConnectorType | undefined;
|
|
507
507
|
/**
|
|
508
508
|
* <p>Contains settings relevant to the mobile device management system that you chose for the connector. If you didn't configure <code>MobileDeviceManagement</code>, then the connector is for general-purpose use and this object is empty.</p>
|
|
509
509
|
* @public
|
|
510
510
|
*/
|
|
511
|
-
MobileDeviceManagement?: MobileDeviceManagement;
|
|
511
|
+
MobileDeviceManagement?: MobileDeviceManagement | undefined;
|
|
512
512
|
/**
|
|
513
513
|
* <p>Contains OpenID Connect (OIDC) parameters for use with Connector for SCEP for Microsoft Intune. For more information about using Connector for SCEP for Microsoft Intune, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep-intune.html">Using Connector for SCEP for Microsoft Intune</a>.</p>
|
|
514
514
|
* @public
|
|
515
515
|
*/
|
|
516
|
-
OpenIdConfiguration?: OpenIdConfiguration;
|
|
516
|
+
OpenIdConfiguration?: OpenIdConfiguration | undefined;
|
|
517
517
|
/**
|
|
518
518
|
* <p>The connector's status.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
Status?: ConnectorStatus;
|
|
521
|
+
Status?: ConnectorStatus | undefined;
|
|
522
522
|
/**
|
|
523
523
|
* <p>Information about why connector creation failed, if status is <code>FAILED</code>.</p>
|
|
524
524
|
* @public
|
|
525
525
|
*/
|
|
526
|
-
StatusReason?: ConnectorStatusReason;
|
|
526
|
+
StatusReason?: ConnectorStatusReason | undefined;
|
|
527
527
|
/**
|
|
528
528
|
* <p>The connector's HTTPS public SCEP URL.</p>
|
|
529
529
|
* @public
|
|
530
530
|
*/
|
|
531
|
-
Endpoint?: string;
|
|
531
|
+
Endpoint?: string | undefined;
|
|
532
532
|
/**
|
|
533
533
|
* <p>The date and time that the connector was created.</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
CreatedAt?: Date;
|
|
536
|
+
CreatedAt?: Date | undefined;
|
|
537
537
|
/**
|
|
538
538
|
* <p>The date and time that the connector was updated.</p>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
UpdatedAt?: Date;
|
|
541
|
+
UpdatedAt?: Date | undefined;
|
|
542
542
|
}
|
|
543
543
|
/**
|
|
544
544
|
* <p>Lists the Amazon Web Services Private CA SCEP connectors belonging to your Amazon Web Services account.</p>
|
|
@@ -549,52 +549,52 @@ export interface ConnectorSummary {
|
|
|
549
549
|
* <p>The Amazon Resource Name (ARN) of the connector.</p>
|
|
550
550
|
* @public
|
|
551
551
|
*/
|
|
552
|
-
Arn?: string;
|
|
552
|
+
Arn?: string | undefined;
|
|
553
553
|
/**
|
|
554
554
|
* <p>The Amazon Resource Name (ARN) of the connector's associated certificate authority.</p>
|
|
555
555
|
* @public
|
|
556
556
|
*/
|
|
557
|
-
CertificateAuthorityArn?: string;
|
|
557
|
+
CertificateAuthorityArn?: string | undefined;
|
|
558
558
|
/**
|
|
559
559
|
* <p>The connector type.</p>
|
|
560
560
|
* @public
|
|
561
561
|
*/
|
|
562
|
-
Type?: ConnectorType;
|
|
562
|
+
Type?: ConnectorType | undefined;
|
|
563
563
|
/**
|
|
564
564
|
* <p>Contains settings relevant to the mobile device management system that you chose for the connector. If you didn't configure <code>MobileDeviceManagement</code>, then the connector is for general-purpose use and this object is empty.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
MobileDeviceManagement?: MobileDeviceManagement;
|
|
567
|
+
MobileDeviceManagement?: MobileDeviceManagement | undefined;
|
|
568
568
|
/**
|
|
569
569
|
* <p>Contains OpenID Connect (OIDC) parameters for use with Microsoft Intune.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
OpenIdConfiguration?: OpenIdConfiguration;
|
|
572
|
+
OpenIdConfiguration?: OpenIdConfiguration | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* <p>The connector's status. Status can be creating, active, deleting, or failed.</p>
|
|
575
575
|
* @public
|
|
576
576
|
*/
|
|
577
|
-
Status?: ConnectorStatus;
|
|
577
|
+
Status?: ConnectorStatus | undefined;
|
|
578
578
|
/**
|
|
579
579
|
* <p>Information about why connector creation failed, if status is <code>FAILED</code>.</p>
|
|
580
580
|
* @public
|
|
581
581
|
*/
|
|
582
|
-
StatusReason?: ConnectorStatusReason;
|
|
582
|
+
StatusReason?: ConnectorStatusReason | undefined;
|
|
583
583
|
/**
|
|
584
584
|
* <p>The connector's HTTPS public SCEP URL.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
Endpoint?: string;
|
|
587
|
+
Endpoint?: string | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>The date and time that the challenge was created.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
CreatedAt?: Date;
|
|
592
|
+
CreatedAt?: Date | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>The date and time that the challenge was updated.</p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
UpdatedAt?: Date;
|
|
597
|
+
UpdatedAt?: Date | undefined;
|
|
598
598
|
}
|
|
599
599
|
/**
|
|
600
600
|
* @public
|
|
@@ -611,17 +611,17 @@ export interface CreateConnectorRequest {
|
|
|
611
611
|
* <p>If you provide an <code>IntuneConfiguration</code>, Connector for SCEP creates a connector for use with Microsoft Intune, and you manage the challenge passwords using Microsoft Intune. For more information, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep-intune.html">Using Connector for SCEP for Microsoft Intune</a>.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
MobileDeviceManagement?: MobileDeviceManagement;
|
|
614
|
+
MobileDeviceManagement?: MobileDeviceManagement | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* <p>Custom string that can be used to distinguish between calls to the <a href="https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html">CreateChallenge</a> action. Client tokens for <code>CreateChallenge</code> time out after five minutes. Therefore, if you call <code>CreateChallenge</code> multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.</p>
|
|
617
617
|
* @public
|
|
618
618
|
*/
|
|
619
|
-
ClientToken?: string;
|
|
619
|
+
ClientToken?: string | undefined;
|
|
620
620
|
/**
|
|
621
621
|
* <p>The key-value pairs to associate with the resource.</p>
|
|
622
622
|
* @public
|
|
623
623
|
*/
|
|
624
|
-
Tags?: Record<string, string
|
|
624
|
+
Tags?: Record<string, string> | undefined;
|
|
625
625
|
}
|
|
626
626
|
/**
|
|
627
627
|
* @public
|
|
@@ -631,7 +631,7 @@ export interface CreateConnectorResponse {
|
|
|
631
631
|
* <p>Returns the Amazon Resource Name (ARN) of the connector.</p>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
ConnectorArn?: string;
|
|
634
|
+
ConnectorArn?: string | undefined;
|
|
635
635
|
}
|
|
636
636
|
/**
|
|
637
637
|
* @public
|
|
@@ -661,7 +661,7 @@ export interface GetConnectorResponse {
|
|
|
661
661
|
* <p>The properties of the connector.</p>
|
|
662
662
|
* @public
|
|
663
663
|
*/
|
|
664
|
-
Connector?: Connector;
|
|
664
|
+
Connector?: Connector | undefined;
|
|
665
665
|
}
|
|
666
666
|
/**
|
|
667
667
|
* @public
|
|
@@ -673,14 +673,14 @@ export interface ListConnectorsRequest {
|
|
|
673
673
|
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
674
674
|
* @public
|
|
675
675
|
*/
|
|
676
|
-
MaxResults?: number;
|
|
676
|
+
MaxResults?: number | undefined;
|
|
677
677
|
/**
|
|
678
678
|
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
679
679
|
* for retrieval exceeds the maximum you requested, Connector for SCEP returns a <code>NextToken</code>
|
|
680
680
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
681
681
|
* @public
|
|
682
682
|
*/
|
|
683
|
-
NextToken?: string;
|
|
683
|
+
NextToken?: string | undefined;
|
|
684
684
|
}
|
|
685
685
|
/**
|
|
686
686
|
* @public
|
|
@@ -690,14 +690,14 @@ export interface ListConnectorsResponse {
|
|
|
690
690
|
* <p>The connectors belonging to your Amazon Web Services account.</p>
|
|
691
691
|
* @public
|
|
692
692
|
*/
|
|
693
|
-
Connectors?: ConnectorSummary[];
|
|
693
|
+
Connectors?: ConnectorSummary[] | undefined;
|
|
694
694
|
/**
|
|
695
695
|
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
696
696
|
* for retrieval exceeds the maximum you requested, Connector for SCEP returns a <code>NextToken</code>
|
|
697
697
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
698
698
|
* @public
|
|
699
699
|
*/
|
|
700
|
-
NextToken?: string;
|
|
700
|
+
NextToken?: string | undefined;
|
|
701
701
|
}
|
|
702
702
|
/**
|
|
703
703
|
* @public
|
|
@@ -717,7 +717,7 @@ export interface ListTagsForResourceResponse {
|
|
|
717
717
|
* <p>The key-value pairs to associate with the resource.</p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
Tags?: Record<string, string
|
|
720
|
+
Tags?: Record<string, string> | undefined;
|
|
721
721
|
}
|
|
722
722
|
/**
|
|
723
723
|
* @public
|
|
@@ -17,23 +17,23 @@ export declare class BadRequestException extends __BaseException {
|
|
|
17
17
|
);
|
|
18
18
|
}
|
|
19
19
|
export interface Challenge {
|
|
20
|
-
Arn?: string;
|
|
21
|
-
ConnectorArn?: string;
|
|
22
|
-
CreatedAt?: Date;
|
|
23
|
-
UpdatedAt?: Date;
|
|
24
|
-
Password?: string;
|
|
20
|
+
Arn?: string | undefined;
|
|
21
|
+
ConnectorArn?: string | undefined;
|
|
22
|
+
CreatedAt?: Date | undefined;
|
|
23
|
+
UpdatedAt?: Date | undefined;
|
|
24
|
+
Password?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface ChallengeMetadata {
|
|
27
|
-
Arn?: string;
|
|
28
|
-
ConnectorArn?: string;
|
|
29
|
-
CreatedAt?: Date;
|
|
30
|
-
UpdatedAt?: Date;
|
|
27
|
+
Arn?: string | undefined;
|
|
28
|
+
ConnectorArn?: string | undefined;
|
|
29
|
+
CreatedAt?: Date | undefined;
|
|
30
|
+
UpdatedAt?: Date | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface ChallengeMetadataSummary {
|
|
33
|
-
Arn?: string;
|
|
34
|
-
ConnectorArn?: string;
|
|
35
|
-
CreatedAt?: Date;
|
|
36
|
-
UpdatedAt?: Date;
|
|
33
|
+
Arn?: string | undefined;
|
|
34
|
+
ConnectorArn?: string | undefined;
|
|
35
|
+
CreatedAt?: Date | undefined;
|
|
36
|
+
UpdatedAt?: Date | undefined;
|
|
37
37
|
}
|
|
38
38
|
export declare class ConflictException extends __BaseException {
|
|
39
39
|
readonly name: "ConflictException";
|
|
@@ -45,11 +45,11 @@ export declare class ConflictException extends __BaseException {
|
|
|
45
45
|
}
|
|
46
46
|
export interface CreateChallengeRequest {
|
|
47
47
|
ConnectorArn: string | undefined;
|
|
48
|
-
ClientToken?: string;
|
|
49
|
-
Tags?: Record<string, string
|
|
48
|
+
ClientToken?: string | undefined;
|
|
49
|
+
Tags?: Record<string, string> | undefined;
|
|
50
50
|
}
|
|
51
51
|
export interface CreateChallengeResponse {
|
|
52
|
-
Challenge?: Challenge;
|
|
52
|
+
Challenge?: Challenge | undefined;
|
|
53
53
|
}
|
|
54
54
|
export declare class InternalServerException extends __BaseException {
|
|
55
55
|
readonly name: "InternalServerException";
|
|
@@ -107,7 +107,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
107
107
|
readonly name: "ValidationException";
|
|
108
108
|
readonly $fault: "client";
|
|
109
109
|
Message: string | undefined;
|
|
110
|
-
Reason?: ValidationExceptionReason;
|
|
110
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
111
111
|
constructor(
|
|
112
112
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
113
113
|
);
|
|
@@ -119,22 +119,22 @@ export interface GetChallengeMetadataRequest {
|
|
|
119
119
|
ChallengeArn: string | undefined;
|
|
120
120
|
}
|
|
121
121
|
export interface GetChallengeMetadataResponse {
|
|
122
|
-
ChallengeMetadata?: ChallengeMetadata;
|
|
122
|
+
ChallengeMetadata?: ChallengeMetadata | undefined;
|
|
123
123
|
}
|
|
124
124
|
export interface GetChallengePasswordRequest {
|
|
125
125
|
ChallengeArn: string | undefined;
|
|
126
126
|
}
|
|
127
127
|
export interface GetChallengePasswordResponse {
|
|
128
|
-
Password?: string;
|
|
128
|
+
Password?: string | undefined;
|
|
129
129
|
}
|
|
130
130
|
export interface ListChallengeMetadataRequest {
|
|
131
|
-
MaxResults?: number;
|
|
132
|
-
NextToken?: string;
|
|
131
|
+
MaxResults?: number | undefined;
|
|
132
|
+
NextToken?: string | undefined;
|
|
133
133
|
ConnectorArn: string | undefined;
|
|
134
134
|
}
|
|
135
135
|
export interface ListChallengeMetadataResponse {
|
|
136
|
-
Challenges?: ChallengeMetadataSummary[];
|
|
137
|
-
NextToken?: string;
|
|
136
|
+
Challenges?: ChallengeMetadataSummary[] | undefined;
|
|
137
|
+
NextToken?: string | undefined;
|
|
138
138
|
}
|
|
139
139
|
export interface IntuneConfiguration {
|
|
140
140
|
AzureApplicationId: string | undefined;
|
|
@@ -159,9 +159,9 @@ export declare namespace MobileDeviceManagement {
|
|
|
159
159
|
const visit: <T>(value: MobileDeviceManagement, visitor: Visitor<T>) => T;
|
|
160
160
|
}
|
|
161
161
|
export interface OpenIdConfiguration {
|
|
162
|
-
Issuer?: string;
|
|
163
|
-
Subject?: string;
|
|
164
|
-
Audience?: string;
|
|
162
|
+
Issuer?: string | undefined;
|
|
163
|
+
Subject?: string | undefined;
|
|
164
|
+
Audience?: string | undefined;
|
|
165
165
|
}
|
|
166
166
|
export declare const ConnectorStatus: {
|
|
167
167
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -185,37 +185,37 @@ export declare const ConnectorType: {
|
|
|
185
185
|
};
|
|
186
186
|
export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
|
|
187
187
|
export interface Connector {
|
|
188
|
-
Arn?: string;
|
|
189
|
-
CertificateAuthorityArn?: string;
|
|
190
|
-
Type?: ConnectorType;
|
|
191
|
-
MobileDeviceManagement?: MobileDeviceManagement;
|
|
192
|
-
OpenIdConfiguration?: OpenIdConfiguration;
|
|
193
|
-
Status?: ConnectorStatus;
|
|
194
|
-
StatusReason?: ConnectorStatusReason;
|
|
195
|
-
Endpoint?: string;
|
|
196
|
-
CreatedAt?: Date;
|
|
197
|
-
UpdatedAt?: Date;
|
|
188
|
+
Arn?: string | undefined;
|
|
189
|
+
CertificateAuthorityArn?: string | undefined;
|
|
190
|
+
Type?: ConnectorType | undefined;
|
|
191
|
+
MobileDeviceManagement?: MobileDeviceManagement | undefined;
|
|
192
|
+
OpenIdConfiguration?: OpenIdConfiguration | undefined;
|
|
193
|
+
Status?: ConnectorStatus | undefined;
|
|
194
|
+
StatusReason?: ConnectorStatusReason | undefined;
|
|
195
|
+
Endpoint?: string | undefined;
|
|
196
|
+
CreatedAt?: Date | undefined;
|
|
197
|
+
UpdatedAt?: Date | undefined;
|
|
198
198
|
}
|
|
199
199
|
export interface ConnectorSummary {
|
|
200
|
-
Arn?: string;
|
|
201
|
-
CertificateAuthorityArn?: string;
|
|
202
|
-
Type?: ConnectorType;
|
|
203
|
-
MobileDeviceManagement?: MobileDeviceManagement;
|
|
204
|
-
OpenIdConfiguration?: OpenIdConfiguration;
|
|
205
|
-
Status?: ConnectorStatus;
|
|
206
|
-
StatusReason?: ConnectorStatusReason;
|
|
207
|
-
Endpoint?: string;
|
|
208
|
-
CreatedAt?: Date;
|
|
209
|
-
UpdatedAt?: Date;
|
|
200
|
+
Arn?: string | undefined;
|
|
201
|
+
CertificateAuthorityArn?: string | undefined;
|
|
202
|
+
Type?: ConnectorType | undefined;
|
|
203
|
+
MobileDeviceManagement?: MobileDeviceManagement | undefined;
|
|
204
|
+
OpenIdConfiguration?: OpenIdConfiguration | undefined;
|
|
205
|
+
Status?: ConnectorStatus | undefined;
|
|
206
|
+
StatusReason?: ConnectorStatusReason | undefined;
|
|
207
|
+
Endpoint?: string | undefined;
|
|
208
|
+
CreatedAt?: Date | undefined;
|
|
209
|
+
UpdatedAt?: Date | undefined;
|
|
210
210
|
}
|
|
211
211
|
export interface CreateConnectorRequest {
|
|
212
212
|
CertificateAuthorityArn: string | undefined;
|
|
213
|
-
MobileDeviceManagement?: MobileDeviceManagement;
|
|
214
|
-
ClientToken?: string;
|
|
215
|
-
Tags?: Record<string, string
|
|
213
|
+
MobileDeviceManagement?: MobileDeviceManagement | undefined;
|
|
214
|
+
ClientToken?: string | undefined;
|
|
215
|
+
Tags?: Record<string, string> | undefined;
|
|
216
216
|
}
|
|
217
217
|
export interface CreateConnectorResponse {
|
|
218
|
-
ConnectorArn?: string;
|
|
218
|
+
ConnectorArn?: string | undefined;
|
|
219
219
|
}
|
|
220
220
|
export interface DeleteConnectorRequest {
|
|
221
221
|
ConnectorArn: string | undefined;
|
|
@@ -224,21 +224,21 @@ export interface GetConnectorRequest {
|
|
|
224
224
|
ConnectorArn: string | undefined;
|
|
225
225
|
}
|
|
226
226
|
export interface GetConnectorResponse {
|
|
227
|
-
Connector?: Connector;
|
|
227
|
+
Connector?: Connector | undefined;
|
|
228
228
|
}
|
|
229
229
|
export interface ListConnectorsRequest {
|
|
230
|
-
MaxResults?: number;
|
|
231
|
-
NextToken?: string;
|
|
230
|
+
MaxResults?: number | undefined;
|
|
231
|
+
NextToken?: string | undefined;
|
|
232
232
|
}
|
|
233
233
|
export interface ListConnectorsResponse {
|
|
234
|
-
Connectors?: ConnectorSummary[];
|
|
235
|
-
NextToken?: string;
|
|
234
|
+
Connectors?: ConnectorSummary[] | undefined;
|
|
235
|
+
NextToken?: string | undefined;
|
|
236
236
|
}
|
|
237
237
|
export interface ListTagsForResourceRequest {
|
|
238
238
|
ResourceArn: string | undefined;
|
|
239
239
|
}
|
|
240
240
|
export interface ListTagsForResourceResponse {
|
|
241
|
-
Tags?: Record<string, string
|
|
241
|
+
Tags?: Record<string, string> | undefined;
|
|
242
242
|
}
|
|
243
243
|
export interface TagResourceRequest {
|
|
244
244
|
ResourceArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pca-connector-scep",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pca Connector Scep 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": "tsc -p tsconfig.cjs.json",
|
|
@@ -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",
|