aws-sdk 2.1637.0 → 2.1639.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/README.md +1 -1
- package/apis/accessanalyzer-2019-11-01.examples.json +196 -0
- package/apis/accessanalyzer-2019-11-01.min.json +254 -111
- package/apis/accessanalyzer-2019-11-01.paginators.json +6 -0
- package/apis/application-signals-2024-04-15.examples.json +5 -0
- package/apis/application-signals-2024-04-15.min.json +975 -0
- package/apis/application-signals-2024-04-15.paginators.json +34 -0
- package/apis/ecs-2014-11-13.min.json +290 -256
- package/apis/guardduty-2017-11-28.min.json +429 -124
- package/apis/imagebuilder-2019-12-02.min.json +3 -0
- package/apis/metadata.json +8 -0
- package/apis/networkmanager-2019-07-05.min.json +277 -175
- package/apis/pca-connector-scep-2018-05-10.examples.json +5 -0
- package/apis/pca-connector-scep-2018-05-10.min.json +456 -0
- package/apis/pca-connector-scep-2018-05-10.paginators.json +16 -0
- package/apis/pca-connector-scep-2018-05-10.waiters2.json +5 -0
- package/apis/sagemaker-2017-07-24.min.json +302 -288
- package/clients/accessanalyzer.d.ts +162 -3
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/applicationsignals.d.ts +955 -0
- package/clients/applicationsignals.js +18 -0
- package/clients/ecs.d.ts +47 -5
- package/clients/guardduty.d.ts +277 -5
- package/clients/networkmanager.d.ts +155 -11
- package/clients/pcaconnectorscep.d.ts +486 -0
- package/clients/pcaconnectorscep.js +19 -0
- package/clients/sagemaker.d.ts +24 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +92 -11
- package/dist/aws-sdk.js +301 -259
- package/dist/aws-sdk.min.js +60 -60
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,486 @@
|
|
1
|
+
import {Request} from '../lib/request';
|
2
|
+
import {Response} from '../lib/response';
|
3
|
+
import {AWSError} from '../lib/error';
|
4
|
+
import {Service} from '../lib/service';
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
7
|
+
interface Blob {}
|
8
|
+
declare class PcaConnectorScep extends Service {
|
9
|
+
/**
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
11
|
+
*/
|
12
|
+
constructor(options?: PcaConnectorScep.Types.ClientConfiguration)
|
13
|
+
config: Config & PcaConnectorScep.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call ListConnectors. To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.
|
16
|
+
*/
|
17
|
+
createChallenge(params: PcaConnectorScep.Types.CreateChallengeRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateChallengeResponse) => void): Request<PcaConnectorScep.Types.CreateChallengeResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call ListConnectors. To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.
|
20
|
+
*/
|
21
|
+
createChallenge(callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateChallengeResponse) => void): Request<PcaConnectorScep.Types.CreateChallengeResponse, AWSError>;
|
22
|
+
/**
|
23
|
+
* Creates a SCEP connector. A SCEP connector links Amazon Web Services Private Certificate Authority to your SCEP-compatible devices and mobile device management (MDM) systems. Before you create a connector, you must complete a set of prerequisites, including creation of a private certificate authority (CA) to use with this connector. For more information, see Connector for SCEP prerequisites.
|
24
|
+
*/
|
25
|
+
createConnector(params: PcaConnectorScep.Types.CreateConnectorRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateConnectorResponse) => void): Request<PcaConnectorScep.Types.CreateConnectorResponse, AWSError>;
|
26
|
+
/**
|
27
|
+
* Creates a SCEP connector. A SCEP connector links Amazon Web Services Private Certificate Authority to your SCEP-compatible devices and mobile device management (MDM) systems. Before you create a connector, you must complete a set of prerequisites, including creation of a private certificate authority (CA) to use with this connector. For more information, see Connector for SCEP prerequisites.
|
28
|
+
*/
|
29
|
+
createConnector(callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateConnectorResponse) => void): Request<PcaConnectorScep.Types.CreateConnectorResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Deletes the specified Challenge.
|
32
|
+
*/
|
33
|
+
deleteChallenge(params: PcaConnectorScep.Types.DeleteChallengeRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
34
|
+
/**
|
35
|
+
* Deletes the specified Challenge.
|
36
|
+
*/
|
37
|
+
deleteChallenge(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
38
|
+
/**
|
39
|
+
* Deletes the specified Connector. This operation also deletes any challenges associated with the connector.
|
40
|
+
*/
|
41
|
+
deleteConnector(params: PcaConnectorScep.Types.DeleteConnectorRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
42
|
+
/**
|
43
|
+
* Deletes the specified Connector. This operation also deletes any challenges associated with the connector.
|
44
|
+
*/
|
45
|
+
deleteConnector(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
46
|
+
/**
|
47
|
+
* Retrieves the metadata for the specified Challenge.
|
48
|
+
*/
|
49
|
+
getChallengeMetadata(params: PcaConnectorScep.Types.GetChallengeMetadataRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.GetChallengeMetadataResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Retrieves the metadata for the specified Challenge.
|
52
|
+
*/
|
53
|
+
getChallengeMetadata(callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.GetChallengeMetadataResponse, AWSError>;
|
54
|
+
/**
|
55
|
+
* Retrieves the challenge password for the specified Challenge.
|
56
|
+
*/
|
57
|
+
getChallengePassword(params: PcaConnectorScep.Types.GetChallengePasswordRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengePasswordResponse) => void): Request<PcaConnectorScep.Types.GetChallengePasswordResponse, AWSError>;
|
58
|
+
/**
|
59
|
+
* Retrieves the challenge password for the specified Challenge.
|
60
|
+
*/
|
61
|
+
getChallengePassword(callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengePasswordResponse) => void): Request<PcaConnectorScep.Types.GetChallengePasswordResponse, AWSError>;
|
62
|
+
/**
|
63
|
+
* Retrieves details about the specified Connector. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.
|
64
|
+
*/
|
65
|
+
getConnector(params: PcaConnectorScep.Types.GetConnectorRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.GetConnectorResponse) => void): Request<PcaConnectorScep.Types.GetConnectorResponse, AWSError>;
|
66
|
+
/**
|
67
|
+
* Retrieves details about the specified Connector. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.
|
68
|
+
*/
|
69
|
+
getConnector(callback?: (err: AWSError, data: PcaConnectorScep.Types.GetConnectorResponse) => void): Request<PcaConnectorScep.Types.GetConnectorResponse, AWSError>;
|
70
|
+
/**
|
71
|
+
* Retrieves the challenge metadata for the specified ARN.
|
72
|
+
*/
|
73
|
+
listChallengeMetadata(params: PcaConnectorScep.Types.ListChallengeMetadataRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.ListChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.ListChallengeMetadataResponse, AWSError>;
|
74
|
+
/**
|
75
|
+
* Retrieves the challenge metadata for the specified ARN.
|
76
|
+
*/
|
77
|
+
listChallengeMetadata(callback?: (err: AWSError, data: PcaConnectorScep.Types.ListChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.ListChallengeMetadataResponse, AWSError>;
|
78
|
+
/**
|
79
|
+
* Lists the connectors belonging to your Amazon Web Services account.
|
80
|
+
*/
|
81
|
+
listConnectors(params: PcaConnectorScep.Types.ListConnectorsRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.ListConnectorsResponse) => void): Request<PcaConnectorScep.Types.ListConnectorsResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* Lists the connectors belonging to your Amazon Web Services account.
|
84
|
+
*/
|
85
|
+
listConnectors(callback?: (err: AWSError, data: PcaConnectorScep.Types.ListConnectorsResponse) => void): Request<PcaConnectorScep.Types.ListConnectorsResponse, AWSError>;
|
86
|
+
/**
|
87
|
+
* Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.
|
88
|
+
*/
|
89
|
+
listTagsForResource(params: PcaConnectorScep.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.ListTagsForResourceResponse) => void): Request<PcaConnectorScep.Types.ListTagsForResourceResponse, AWSError>;
|
90
|
+
/**
|
91
|
+
* Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.
|
92
|
+
*/
|
93
|
+
listTagsForResource(callback?: (err: AWSError, data: PcaConnectorScep.Types.ListTagsForResourceResponse) => void): Request<PcaConnectorScep.Types.ListTagsForResourceResponse, AWSError>;
|
94
|
+
/**
|
95
|
+
* Adds one or more tags to your resource.
|
96
|
+
*/
|
97
|
+
tagResource(params: PcaConnectorScep.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
98
|
+
/**
|
99
|
+
* Adds one or more tags to your resource.
|
100
|
+
*/
|
101
|
+
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
102
|
+
/**
|
103
|
+
* Removes one or more tags from your resource.
|
104
|
+
*/
|
105
|
+
untagResource(params: PcaConnectorScep.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
106
|
+
/**
|
107
|
+
* Removes one or more tags from your resource.
|
108
|
+
*/
|
109
|
+
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
110
|
+
}
|
111
|
+
declare namespace PcaConnectorScep {
|
112
|
+
export type AzureApplicationId = string;
|
113
|
+
export type AzureDomain = string;
|
114
|
+
export type CertificateAuthorityArn = string;
|
115
|
+
export interface Challenge {
|
116
|
+
/**
|
117
|
+
* The Amazon Resource Name (ARN) of the challenge.
|
118
|
+
*/
|
119
|
+
Arn?: ChallengeArn;
|
120
|
+
/**
|
121
|
+
* The Amazon Resource Name (ARN) of the connector.
|
122
|
+
*/
|
123
|
+
ConnectorArn?: ConnectorArn;
|
124
|
+
/**
|
125
|
+
* The date and time that the challenge was created.
|
126
|
+
*/
|
127
|
+
CreatedAt?: Timestamp;
|
128
|
+
/**
|
129
|
+
* The date and time that the challenge was updated.
|
130
|
+
*/
|
131
|
+
UpdatedAt?: Timestamp;
|
132
|
+
/**
|
133
|
+
* The SCEP challenge password, in UUID format.
|
134
|
+
*/
|
135
|
+
Password?: SensitiveString;
|
136
|
+
}
|
137
|
+
export type ChallengeArn = string;
|
138
|
+
export interface ChallengeMetadata {
|
139
|
+
/**
|
140
|
+
* The Amazon Resource Name (ARN) of the challenge.
|
141
|
+
*/
|
142
|
+
Arn?: ChallengeArn;
|
143
|
+
/**
|
144
|
+
* The Amazon Resource Name (ARN) of the connector.
|
145
|
+
*/
|
146
|
+
ConnectorArn?: ConnectorArn;
|
147
|
+
/**
|
148
|
+
* The date and time that the connector was created.
|
149
|
+
*/
|
150
|
+
CreatedAt?: Timestamp;
|
151
|
+
/**
|
152
|
+
* The date and time that the connector was updated.
|
153
|
+
*/
|
154
|
+
UpdatedAt?: Timestamp;
|
155
|
+
}
|
156
|
+
export type ChallengeMetadataList = ChallengeMetadataSummary[];
|
157
|
+
export interface ChallengeMetadataSummary {
|
158
|
+
/**
|
159
|
+
* The Amazon Resource Name (ARN) of the challenge.
|
160
|
+
*/
|
161
|
+
Arn?: ChallengeArn;
|
162
|
+
/**
|
163
|
+
* The Amazon Resource Name (ARN) of the connector.
|
164
|
+
*/
|
165
|
+
ConnectorArn?: ConnectorArn;
|
166
|
+
/**
|
167
|
+
* The date and time that the challenge was created.
|
168
|
+
*/
|
169
|
+
CreatedAt?: Timestamp;
|
170
|
+
/**
|
171
|
+
* The date and time that the challenge was updated.
|
172
|
+
*/
|
173
|
+
UpdatedAt?: Timestamp;
|
174
|
+
}
|
175
|
+
export type ClientToken = string;
|
176
|
+
export interface Connector {
|
177
|
+
/**
|
178
|
+
* The Amazon Resource Name (ARN) of the connector.
|
179
|
+
*/
|
180
|
+
Arn?: ConnectorArn;
|
181
|
+
/**
|
182
|
+
* The Amazon Resource Name (ARN) of the certificate authority associated with the connector.
|
183
|
+
*/
|
184
|
+
CertificateAuthorityArn?: CertificateAuthorityArn;
|
185
|
+
/**
|
186
|
+
* The connector type.
|
187
|
+
*/
|
188
|
+
Type?: ConnectorType;
|
189
|
+
/**
|
190
|
+
* Contains settings relevant to the mobile device management system that you chose for the connector. If you didn't configure MobileDeviceManagement, then the connector is for general-purpose use and this object is empty.
|
191
|
+
*/
|
192
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
193
|
+
/**
|
194
|
+
* 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 Using Connector for SCEP for Microsoft Intune.
|
195
|
+
*/
|
196
|
+
OpenIdConfiguration?: OpenIdConfiguration;
|
197
|
+
/**
|
198
|
+
* The connector's status.
|
199
|
+
*/
|
200
|
+
Status?: ConnectorStatus;
|
201
|
+
/**
|
202
|
+
* Information about why connector creation failed, if status is FAILED.
|
203
|
+
*/
|
204
|
+
StatusReason?: ConnectorStatusReason;
|
205
|
+
/**
|
206
|
+
* The connector's HTTPS public SCEP URL.
|
207
|
+
*/
|
208
|
+
Endpoint?: String;
|
209
|
+
/**
|
210
|
+
* The date and time that the connector was created.
|
211
|
+
*/
|
212
|
+
CreatedAt?: Timestamp;
|
213
|
+
/**
|
214
|
+
* The date and time that the connector was updated.
|
215
|
+
*/
|
216
|
+
UpdatedAt?: Timestamp;
|
217
|
+
}
|
218
|
+
export type ConnectorArn = string;
|
219
|
+
export type ConnectorList = ConnectorSummary[];
|
220
|
+
export type ConnectorStatus = "CREATING"|"ACTIVE"|"DELETING"|"FAILED"|string;
|
221
|
+
export type ConnectorStatusReason = "INTERNAL_FAILURE"|"PRIVATECA_ACCESS_DENIED"|"PRIVATECA_INVALID_STATE"|"PRIVATECA_RESOURCE_NOT_FOUND"|string;
|
222
|
+
export interface ConnectorSummary {
|
223
|
+
/**
|
224
|
+
* The Amazon Resource Name (ARN) of the connector.
|
225
|
+
*/
|
226
|
+
Arn?: ConnectorArn;
|
227
|
+
/**
|
228
|
+
* The Amazon Resource Name (ARN) of the connector's associated certificate authority.
|
229
|
+
*/
|
230
|
+
CertificateAuthorityArn?: CertificateAuthorityArn;
|
231
|
+
/**
|
232
|
+
* The connector type.
|
233
|
+
*/
|
234
|
+
Type?: ConnectorType;
|
235
|
+
/**
|
236
|
+
* Contains settings relevant to the mobile device management system that you chose for the connector. If you didn't configure MobileDeviceManagement, then the connector is for general-purpose use and this object is empty.
|
237
|
+
*/
|
238
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
239
|
+
/**
|
240
|
+
* Contains OpenID Connect (OIDC) parameters for use with Microsoft Intune.
|
241
|
+
*/
|
242
|
+
OpenIdConfiguration?: OpenIdConfiguration;
|
243
|
+
/**
|
244
|
+
* The connector's status. Status can be creating, active, deleting, or failed.
|
245
|
+
*/
|
246
|
+
Status?: ConnectorStatus;
|
247
|
+
/**
|
248
|
+
* Information about why connector creation failed, if status is FAILED.
|
249
|
+
*/
|
250
|
+
StatusReason?: ConnectorStatusReason;
|
251
|
+
/**
|
252
|
+
* The connector's HTTPS public SCEP URL.
|
253
|
+
*/
|
254
|
+
Endpoint?: String;
|
255
|
+
/**
|
256
|
+
* The date and time that the challenge was created.
|
257
|
+
*/
|
258
|
+
CreatedAt?: Timestamp;
|
259
|
+
/**
|
260
|
+
* The date and time that the challenge was updated.
|
261
|
+
*/
|
262
|
+
UpdatedAt?: Timestamp;
|
263
|
+
}
|
264
|
+
export type ConnectorType = "GENERAL_PURPOSE"|"INTUNE"|string;
|
265
|
+
export interface CreateChallengeRequest {
|
266
|
+
/**
|
267
|
+
* The Amazon Resource Name (ARN) of the connector that you want to create a challenge for.
|
268
|
+
*/
|
269
|
+
ConnectorArn: ConnectorArn;
|
270
|
+
/**
|
271
|
+
* Custom string that can be used to distinguish between calls to the CreateChallenge action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge 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.
|
272
|
+
*/
|
273
|
+
ClientToken?: ClientToken;
|
274
|
+
/**
|
275
|
+
* The key-value pairs to associate with the resource.
|
276
|
+
*/
|
277
|
+
Tags?: Tags;
|
278
|
+
}
|
279
|
+
export interface CreateChallengeResponse {
|
280
|
+
/**
|
281
|
+
* Returns the challenge details for the specified connector.
|
282
|
+
*/
|
283
|
+
Challenge?: Challenge;
|
284
|
+
}
|
285
|
+
export interface CreateConnectorRequest {
|
286
|
+
/**
|
287
|
+
* The Amazon Resource Name (ARN) of the Amazon Web Services Private Certificate Authority certificate authority to use with this connector. Due to security vulnerabilities present in the SCEP protocol, we recommend using a private CA that's dedicated for use with the connector. To retrieve the private CAs associated with your account, you can call ListCertificateAuthorities using the Amazon Web Services Private CA API.
|
288
|
+
*/
|
289
|
+
CertificateAuthorityArn: CertificateAuthorityArn;
|
290
|
+
/**
|
291
|
+
* If you don't supply a value, by default Connector for SCEP creates a connector for general-purpose use. A general-purpose connector is designed to work with clients or endpoints that support the SCEP protocol, except Connector for SCEP for Microsoft Intune. With connectors for general-purpose use, you manage SCEP challenge passwords using Connector for SCEP. For information about considerations and limitations with using Connector for SCEP, see Considerations and Limitations. If you provide an IntuneConfiguration, Connector for SCEP creates a connector for use with Microsoft Intune, and you manage the challenge passwords using Microsoft Intune. For more information, see Using Connector for SCEP for Microsoft Intune.
|
292
|
+
*/
|
293
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
294
|
+
/**
|
295
|
+
* Custom string that can be used to distinguish between calls to the CreateChallenge action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge 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.
|
296
|
+
*/
|
297
|
+
ClientToken?: ClientToken;
|
298
|
+
/**
|
299
|
+
* The key-value pairs to associate with the resource.
|
300
|
+
*/
|
301
|
+
Tags?: Tags;
|
302
|
+
}
|
303
|
+
export interface CreateConnectorResponse {
|
304
|
+
/**
|
305
|
+
* Returns the Amazon Resource Name (ARN) of the connector.
|
306
|
+
*/
|
307
|
+
ConnectorArn?: ConnectorArn;
|
308
|
+
}
|
309
|
+
export interface DeleteChallengeRequest {
|
310
|
+
/**
|
311
|
+
* The Amazon Resource Name (ARN) of the challenge password to delete.
|
312
|
+
*/
|
313
|
+
ChallengeArn: ChallengeArn;
|
314
|
+
}
|
315
|
+
export interface DeleteConnectorRequest {
|
316
|
+
/**
|
317
|
+
* The Amazon Resource Name (ARN) of the connector to delete.
|
318
|
+
*/
|
319
|
+
ConnectorArn: ConnectorArn;
|
320
|
+
}
|
321
|
+
export interface GetChallengeMetadataRequest {
|
322
|
+
/**
|
323
|
+
* The Amazon Resource Name (ARN) of the challenge.
|
324
|
+
*/
|
325
|
+
ChallengeArn: ChallengeArn;
|
326
|
+
}
|
327
|
+
export interface GetChallengeMetadataResponse {
|
328
|
+
/**
|
329
|
+
* The metadata for the challenge.
|
330
|
+
*/
|
331
|
+
ChallengeMetadata?: ChallengeMetadata;
|
332
|
+
}
|
333
|
+
export interface GetChallengePasswordRequest {
|
334
|
+
/**
|
335
|
+
* The Amazon Resource Name (ARN) of the challenge.
|
336
|
+
*/
|
337
|
+
ChallengeArn: ChallengeArn;
|
338
|
+
}
|
339
|
+
export interface GetChallengePasswordResponse {
|
340
|
+
/**
|
341
|
+
* The SCEP challenge password.
|
342
|
+
*/
|
343
|
+
Password?: SensitiveString;
|
344
|
+
}
|
345
|
+
export interface GetConnectorRequest {
|
346
|
+
/**
|
347
|
+
* The Amazon Resource Name (ARN) of the connector.
|
348
|
+
*/
|
349
|
+
ConnectorArn: ConnectorArn;
|
350
|
+
}
|
351
|
+
export interface GetConnectorResponse {
|
352
|
+
/**
|
353
|
+
* The properties of the connector.
|
354
|
+
*/
|
355
|
+
Connector?: Connector;
|
356
|
+
}
|
357
|
+
export interface IntuneConfiguration {
|
358
|
+
/**
|
359
|
+
* The directory (tenant) ID from your Microsoft Entra ID app registration.
|
360
|
+
*/
|
361
|
+
AzureApplicationId: AzureApplicationId;
|
362
|
+
/**
|
363
|
+
* The primary domain from your Microsoft Entra ID app registration.
|
364
|
+
*/
|
365
|
+
Domain: AzureDomain;
|
366
|
+
}
|
367
|
+
export interface ListChallengeMetadataRequest {
|
368
|
+
/**
|
369
|
+
* The maximum number of objects that you want Connector for SCEP to return for this request. If more objects are available, in the response, Connector for SCEP provides a NextToken value that you can use in a subsequent call to get the next batch of objects.
|
370
|
+
*/
|
371
|
+
MaxResults?: MaxResults;
|
372
|
+
/**
|
373
|
+
* When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
|
374
|
+
*/
|
375
|
+
NextToken?: NextToken;
|
376
|
+
/**
|
377
|
+
* The Amazon Resource Name (ARN) of the connector.
|
378
|
+
*/
|
379
|
+
ConnectorArn: ConnectorArn;
|
380
|
+
}
|
381
|
+
export interface ListChallengeMetadataResponse {
|
382
|
+
/**
|
383
|
+
* The challenge metadata for the challenges belonging to your Amazon Web Services account.
|
384
|
+
*/
|
385
|
+
Challenges?: ChallengeMetadataList;
|
386
|
+
/**
|
387
|
+
* When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
|
388
|
+
*/
|
389
|
+
NextToken?: NextToken;
|
390
|
+
}
|
391
|
+
export interface ListConnectorsRequest {
|
392
|
+
/**
|
393
|
+
* The maximum number of objects that you want Connector for SCEP to return for this request. If more objects are available, in the response, Connector for SCEP provides a NextToken value that you can use in a subsequent call to get the next batch of objects.
|
394
|
+
*/
|
395
|
+
MaxResults?: MaxResults;
|
396
|
+
/**
|
397
|
+
* When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
|
398
|
+
*/
|
399
|
+
NextToken?: NextToken;
|
400
|
+
}
|
401
|
+
export interface ListConnectorsResponse {
|
402
|
+
/**
|
403
|
+
* The connectors belonging to your Amazon Web Services account.
|
404
|
+
*/
|
405
|
+
Connectors?: ConnectorList;
|
406
|
+
/**
|
407
|
+
* When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
|
408
|
+
*/
|
409
|
+
NextToken?: NextToken;
|
410
|
+
}
|
411
|
+
export interface ListTagsForResourceRequest {
|
412
|
+
/**
|
413
|
+
* The Amazon Resource Name (ARN) of the resource.
|
414
|
+
*/
|
415
|
+
ResourceArn: String;
|
416
|
+
}
|
417
|
+
export interface ListTagsForResourceResponse {
|
418
|
+
/**
|
419
|
+
* The key-value pairs to associate with the resource.
|
420
|
+
*/
|
421
|
+
Tags?: Tags;
|
422
|
+
}
|
423
|
+
export type MaxResults = number;
|
424
|
+
export interface MobileDeviceManagement {
|
425
|
+
/**
|
426
|
+
* Configuration settings for use with Microsoft Intune. For information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune.
|
427
|
+
*/
|
428
|
+
Intune?: IntuneConfiguration;
|
429
|
+
}
|
430
|
+
export type NextToken = string;
|
431
|
+
export interface OpenIdConfiguration {
|
432
|
+
/**
|
433
|
+
* The issuer value to copy into your Microsoft Entra app registration's OIDC.
|
434
|
+
*/
|
435
|
+
Issuer?: String;
|
436
|
+
/**
|
437
|
+
* The subject value to copy into your Microsoft Entra app registration's OIDC.
|
438
|
+
*/
|
439
|
+
Subject?: String;
|
440
|
+
/**
|
441
|
+
* The audience value to copy into your Microsoft Entra app registration's OIDC.
|
442
|
+
*/
|
443
|
+
Audience?: String;
|
444
|
+
}
|
445
|
+
export type SensitiveString = string;
|
446
|
+
export type String = string;
|
447
|
+
export type TagKeyList = String[];
|
448
|
+
export interface TagResourceRequest {
|
449
|
+
/**
|
450
|
+
* The Amazon Resource Name (ARN) of the resource.
|
451
|
+
*/
|
452
|
+
ResourceArn: String;
|
453
|
+
/**
|
454
|
+
* The key-value pairs to associate with the resource.
|
455
|
+
*/
|
456
|
+
Tags: Tags;
|
457
|
+
}
|
458
|
+
export type Tags = {[key: string]: String};
|
459
|
+
export type Timestamp = Date;
|
460
|
+
export interface UntagResourceRequest {
|
461
|
+
/**
|
462
|
+
* The Amazon Resource Name (ARN) of the resource.
|
463
|
+
*/
|
464
|
+
ResourceArn: String;
|
465
|
+
/**
|
466
|
+
* Specifies a list of tag keys that you want to remove from the specified resources.
|
467
|
+
*/
|
468
|
+
TagKeys: TagKeyList;
|
469
|
+
}
|
470
|
+
/**
|
471
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
472
|
+
*/
|
473
|
+
export type apiVersion = "2018-05-10"|"latest"|string;
|
474
|
+
export interface ClientApiVersions {
|
475
|
+
/**
|
476
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
477
|
+
*/
|
478
|
+
apiVersion?: apiVersion;
|
479
|
+
}
|
480
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
481
|
+
/**
|
482
|
+
* Contains interfaces for use with the PcaConnectorScep client.
|
483
|
+
*/
|
484
|
+
export import Types = PcaConnectorScep;
|
485
|
+
}
|
486
|
+
export = PcaConnectorScep;
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['pcaconnectorscep'] = {};
|
7
|
+
AWS.PcaConnectorScep = Service.defineService('pcaconnectorscep', ['2018-05-10']);
|
8
|
+
Object.defineProperty(apiLoader.services['pcaconnectorscep'], '2018-05-10', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/pca-connector-scep-2018-05-10.min.json');
|
11
|
+
model.paginators = require('../apis/pca-connector-scep-2018-05-10.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/pca-connector-scep-2018-05-10.waiters2.json').waiters;
|
13
|
+
return model;
|
14
|
+
},
|
15
|
+
enumerable: true,
|
16
|
+
configurable: true
|
17
|
+
});
|
18
|
+
|
19
|
+
module.exports = AWS.PcaConnectorScep;
|
package/clients/sagemaker.d.ts
CHANGED
@@ -3228,6 +3228,9 @@ declare namespace SageMaker {
|
|
3228
3228
|
export type AttributeName = string;
|
3229
3229
|
export type AttributeNames = AttributeName[];
|
3230
3230
|
export type AuthMode = "SSO"|"IAM"|string;
|
3231
|
+
export type AuthenticationRequestExtraParams = {[key: string]: AuthenticationRequestExtraParamsValue};
|
3232
|
+
export type AuthenticationRequestExtraParamsKey = string;
|
3233
|
+
export type AuthenticationRequestExtraParamsValue = string;
|
3231
3234
|
export type AutoGenerateEndpointName = boolean;
|
3232
3235
|
export type AutoMLAlgorithm = "xgboost"|"linear-learner"|"mlp"|"lightgbm"|"catboost"|"randomforest"|"extra-trees"|"nn-torch"|"fastai"|"cnn-qr"|"deepar"|"prophet"|"npts"|"arima"|"ets"|string;
|
3233
3236
|
export interface AutoMLAlgorithmConfig {
|
@@ -16203,6 +16206,10 @@ declare namespace SageMaker {
|
|
16203
16206
|
* The sort order for results. The default is Ascending.
|
16204
16207
|
*/
|
16205
16208
|
SortOrder?: SortOrder;
|
16209
|
+
/**
|
16210
|
+
* A filter that returns either model groups shared with you or model groups in your own account. When the value is CrossAccount, the results show the resources made discoverable to you from other accounts. When the value is SameAccount or null, the results show resources from your account. The default is SameAccount.
|
16211
|
+
*/
|
16212
|
+
CrossAccountFilterOption?: CrossAccountFilterOption;
|
16206
16213
|
}
|
16207
16214
|
export interface ListModelPackageGroupsOutput {
|
16208
16215
|
/**
|
@@ -19247,6 +19254,14 @@ declare namespace SageMaker {
|
|
19247
19254
|
* The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.
|
19248
19255
|
*/
|
19249
19256
|
JwksUri: OidcEndpoint;
|
19257
|
+
/**
|
19258
|
+
* An array of string identifiers used to refer to the specific pieces of user data or claims that the client application wants to access.
|
19259
|
+
*/
|
19260
|
+
Scope?: Scope;
|
19261
|
+
/**
|
19262
|
+
* A string to string map of identifiers specific to the custom identity provider (IdP) being used.
|
19263
|
+
*/
|
19264
|
+
AuthenticationRequestExtraParams?: AuthenticationRequestExtraParams;
|
19250
19265
|
}
|
19251
19266
|
export interface OidcConfigForResponse {
|
19252
19267
|
/**
|
@@ -19277,6 +19292,14 @@ declare namespace SageMaker {
|
|
19277
19292
|
* The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.
|
19278
19293
|
*/
|
19279
19294
|
JwksUri?: OidcEndpoint;
|
19295
|
+
/**
|
19296
|
+
* An array of string identifiers used to refer to the specific pieces of user data or claims that the client application wants to access.
|
19297
|
+
*/
|
19298
|
+
Scope?: Scope;
|
19299
|
+
/**
|
19300
|
+
* A string to string map of identifiers specific to the custom identity provider (IdP) being used.
|
19301
|
+
*/
|
19302
|
+
AuthenticationRequestExtraParams?: AuthenticationRequestExtraParams;
|
19280
19303
|
}
|
19281
19304
|
export type OidcEndpoint = string;
|
19282
19305
|
export interface OidcMemberDefinition {
|
@@ -21318,6 +21341,7 @@ declare namespace SageMaker {
|
|
21318
21341
|
}
|
21319
21342
|
export type ScheduleExpression = string;
|
21320
21343
|
export type ScheduleStatus = "Pending"|"Failed"|"Scheduled"|"Stopped"|string;
|
21344
|
+
export type Scope = string;
|
21321
21345
|
export interface SearchExpression {
|
21322
21346
|
/**
|
21323
21347
|
* A list of filter objects.
|