@scaleway/sdk-iam 2.2.0 → 2.3.1

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.
@@ -69,6 +69,12 @@ const CreateUserRequestMember = {
69
69
  pattern: /^[a-zA-Z0-9@._-]+$/
70
70
  }
71
71
  };
72
+ const FinishUserWebAuthnRegistrationRequest = {
73
+ authenticatorName: {
74
+ maxLength: 256,
75
+ minLength: 1
76
+ }
77
+ };
72
78
  const GetQuotumRequest = {
73
79
  quotumName: {
74
80
  minLength: 1
@@ -207,6 +213,16 @@ const ListScimTokensRequest = {
207
213
  lessThanOrEqual: 100
208
214
  }
209
215
  };
216
+ const ListUserWebAuthnAuthenticatorsRequest = {
217
+ page: {
218
+ greaterThanOrEqual: 1,
219
+ lessThanOrEqual: 1e4
220
+ },
221
+ pageSize: {
222
+ greaterThanOrEqual: 1,
223
+ lessThanOrEqual: 100
224
+ }
225
+ };
210
226
  const ListUsersRequest = {
211
227
  page: {
212
228
  greaterThanOrEqual: 1,
@@ -279,6 +295,9 @@ const UpdateSamlRequest = {
279
295
  entityId: {
280
296
  maxLength: 1024,
281
297
  minLength: 1
298
+ },
299
+ singleSignOnUrl: {
300
+ prefix: "https://"
282
301
  }
283
302
  };
284
303
  const UpdateUserRequest = {
@@ -296,6 +315,12 @@ const UpdateUserUsernameRequest = {
296
315
  pattern: /^[a-zA-Z0-9@._-]+$/
297
316
  }
298
317
  };
318
+ const UpdateWebAuthnAuthenticatorRequest = {
319
+ authenticatorName: {
320
+ maxLength: 256,
321
+ minLength: 1
322
+ }
323
+ };
299
324
  const ValidateUserMFAOTPRequest = {
300
325
  oneTimePassword: {
301
326
  pattern: /^[0-9]{6}$/
@@ -309,6 +334,7 @@ export {
309
334
  CreatePolicyRequest,
310
335
  CreateSSHKeyRequest,
311
336
  CreateUserRequestMember,
337
+ FinishUserWebAuthnRegistrationRequest,
312
338
  GetQuotumRequest,
313
339
  JoinUserConnectionRequest,
314
340
  ListAPIKeysRequest,
@@ -322,6 +348,7 @@ export {
322
348
  ListRulesRequest,
323
349
  ListSSHKeysRequest,
324
350
  ListScimTokensRequest,
351
+ ListUserWebAuthnAuthenticatorsRequest,
325
352
  ListUsersRequest,
326
353
  RuleSpecs,
327
354
  SetOrganizationAliasRequest,
@@ -334,5 +361,6 @@ export {
334
361
  UpdateSamlRequest,
335
362
  UpdateUserRequest,
336
363
  UpdateUserUsernameRequest,
364
+ UpdateWebAuthnAuthenticatorRequest,
337
365
  ValidateUserMFAOTPRequest
338
366
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk-iam",
3
- "version": "2.2.0",
3
+ "version": "2.3.1",
4
4
  "description": "Scaleway SDK iam",
5
5
  "license": "Apache-2.0",
6
6
  "files": [
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@scaleway/random-name": "5.1.2",
30
- "@scaleway/sdk-std": "2.1.0"
30
+ "@scaleway/sdk-std": "2.1.1"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "@scaleway/sdk-client": "^2.1.0"