@aws-sdk/client-cognito-identity-provider 3.1078.0 → 3.1079.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.
Files changed (36) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +97 -5
  3. package/dist-es/CognitoIdentityProvider.js +4 -0
  4. package/dist-es/commands/GetProvisionedLimitCommand.js +4 -0
  5. package/dist-es/commands/UpdateProvisionedLimitCommand.js +4 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +3 -0
  8. package/dist-es/models/errors.js +12 -0
  9. package/dist-es/schemas/schemas_0.js +62 -5
  10. package/dist-types/CognitoIdentityProvider.d.ts +14 -0
  11. package/dist-types/CognitoIdentityProviderClient.d.ts +4 -2
  12. package/dist-types/commands/GetProvisionedLimitCommand.d.ts +152 -0
  13. package/dist-types/commands/StopUserImportJobCommand.d.ts +2 -1
  14. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
  16. package/dist-types/commands/UpdateProvisionedLimitCommand.d.ts +161 -0
  17. package/dist-types/commands/index.d.ts +2 -0
  18. package/dist-types/models/enums.d.ts +11 -0
  19. package/dist-types/models/errors.d.ts +12 -0
  20. package/dist-types/models/models_0.d.ts +64 -49
  21. package/dist-types/models/models_1.d.ts +75 -1
  22. package/dist-types/schemas/schemas_0.d.ts +9 -0
  23. package/dist-types/ts3.4/CognitoIdentityProvider.d.ts +34 -0
  24. package/dist-types/ts3.4/CognitoIdentityProviderClient.d.ts +12 -0
  25. package/dist-types/ts3.4/commands/GetProvisionedLimitCommand.d.ts +44 -0
  26. package/dist-types/ts3.4/commands/StopUserImportJobCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -2
  29. package/dist-types/ts3.4/commands/UpdateProvisionedLimitCommand.d.ts +44 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  31. package/dist-types/ts3.4/models/enums.d.ts +4 -0
  32. package/dist-types/ts3.4/models/errors.d.ts +7 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +16 -12
  34. package/dist-types/ts3.4/models/models_1.d.ts +22 -0
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  36. package/package.json +3 -3
package/README.md CHANGED
@@ -729,6 +729,13 @@ GetLogDeliveryConfiguration
729
729
  </details>
730
730
  <details>
731
731
  <summary>
732
+ GetProvisionedLimit
733
+ </summary>
734
+
735
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cognito-identity-provider/command/GetProvisionedLimitCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cognito-identity-provider/Interface/GetProvisionedLimitCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cognito-identity-provider/Interface/GetProvisionedLimitCommandOutput/)
736
+ </details>
737
+ <details>
738
+ <summary>
732
739
  GetSigningCertificate
733
740
  </summary>
734
741
 
@@ -1030,6 +1037,13 @@ UpdateManagedLoginBranding
1030
1037
  </details>
1031
1038
  <details>
1032
1039
  <summary>
1040
+ UpdateProvisionedLimit
1041
+ </summary>
1042
+
1043
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cognito-identity-provider/command/UpdateProvisionedLimitCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cognito-identity-provider/Interface/UpdateProvisionedLimitCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cognito-identity-provider/Interface/UpdateProvisionedLimitCommandOutput/)
1044
+ </details>
1045
+ <details>
1046
+ <summary>
1033
1047
  UpdateResourceServer
1034
1048
  </summary>
1035
1049
 
package/dist-cjs/index.js CHANGED
@@ -234,7 +234,7 @@ const commonParams = {
234
234
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
235
235
  };
236
236
 
237
- var version = "3.1077.0";
237
+ var version = "3.1078.0";
238
238
  var packageInfo = {
239
239
  version: version};
240
240
 
@@ -1004,6 +1004,18 @@ class WebAuthnConfigurationMissingException extends CognitoIdentityProviderServi
1004
1004
  Object.setPrototypeOf(this, WebAuthnConfigurationMissingException.prototype);
1005
1005
  }
1006
1006
  }
1007
+ class ServiceQuotaExceededException extends CognitoIdentityProviderServiceException {
1008
+ name = "ServiceQuotaExceededException";
1009
+ $fault = "client";
1010
+ constructor(opts) {
1011
+ super({
1012
+ name: "ServiceQuotaExceededException",
1013
+ $fault: "client",
1014
+ ...opts,
1015
+ });
1016
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
1017
+ }
1018
+ }
1007
1019
  class EnableSoftwareTokenMFAException extends CognitoIdentityProviderServiceException {
1008
1020
  name = "EnableSoftwareTokenMFAException";
1009
1021
  $fault = "client";
@@ -1421,6 +1433,7 @@ const _FDN = "FriendlyDeviceName";
1421
1433
  const _FDR = "ForgetDeviceRequest";
1422
1434
  const _FDo = "ForgetDevice";
1423
1435
  const _FE = "ForbiddenException";
1436
+ const _FLV = "FreeLimitValue";
1424
1437
  const _FP = "ForgotPassword";
1425
1438
  const _FPR = "ForgotPasswordRequest";
1426
1439
  const _FPRo = "ForgotPasswordResponse";
@@ -1451,6 +1464,9 @@ const _GLDCR = "GetLogDeliveryConfigurationRequest";
1451
1464
  const _GLDCRe = "GetLogDeliveryConfigurationResponse";
1452
1465
  const _GLT = "GroupListType";
1453
1466
  const _GN = "GroupName";
1467
+ const _GPL = "GetProvisionedLimit";
1468
+ const _GPLR = "GetProvisionedLimitRequest";
1469
+ const _GPLRe = "GetProvisionedLimitResponse";
1454
1470
  const _GS = "GenerateSecret";
1455
1471
  const _GSC = "GetSigningCertificate";
1456
1472
  const _GSCR = "GetSigningCertificateRequest";
@@ -1527,12 +1543,15 @@ const _LC = "LambdaConfig";
1527
1543
  const _LCLT = "LogConfigurationListType";
1528
1544
  const _LCT = "LambdaConfigType";
1529
1545
  const _LCTo = "LogConfigurationType";
1546
+ const _LCi = "LimitClass";
1530
1547
  const _LCo = "LogConfigurations";
1531
- const _LD = "ListDevices";
1548
+ const _LD = "LimitDefinition";
1532
1549
  const _LDC = "LogDeliveryConfiguration";
1533
1550
  const _LDCT = "LogDeliveryConfigurationType";
1534
1551
  const _LDR = "ListDevicesRequest";
1535
1552
  const _LDRi = "ListDevicesResponse";
1553
+ const _LDT = "LimitDefinitionType";
1554
+ const _LDi = "ListDevices";
1536
1555
  const _LEE = "LimitExceededException";
1537
1556
  const _LG = "ListGroups";
1538
1557
  const _LGA = "LogGroupArn";
@@ -1546,12 +1565,13 @@ const _LMD = "LastModifiedDate";
1546
1565
  const _LRS = "ListResourceServers";
1547
1566
  const _LRSR = "ListResourceServersRequest";
1548
1567
  const _LRSRi = "ListResourceServersResponse";
1549
- const _LT = "ListTerms";
1568
+ const _LT = "LimitType";
1550
1569
  const _LTFR = "ListTagsForResource";
1551
1570
  const _LTFRR = "ListTagsForResourceRequest";
1552
1571
  const _LTFRRi = "ListTagsForResourceResponse";
1553
1572
  const _LTR = "ListTermsRequest";
1554
1573
  const _LTRi = "ListTermsResponse";
1574
+ const _LTi = "ListTerms";
1555
1575
  const _LU = "ListUsers";
1556
1576
  const _LUIG = "ListUsersInGroup";
1557
1577
  const _LUIGR = "ListUsersInGroupRequest";
@@ -1625,6 +1645,7 @@ const _PDr = "ProviderDescription";
1625
1645
  const _PHPVE = "PasswordHistoryPolicyViolationException";
1626
1646
  const _PHS = "PasswordHistorySize";
1627
1647
  const _PLT = "ProvidersListType";
1648
+ const _PLV = "ProvisionedLimitValue";
1628
1649
  const _PM = "PreferredMfa";
1629
1650
  const _PMS = "PreferredMfaSetting";
1630
1651
  const _PN = "ProviderName";
@@ -1668,6 +1689,7 @@ const _RECT = "RiskExceptionConfigurationType";
1668
1689
  const _RGPS = "RetryGracePeriodSeconds";
1669
1690
  const _RI = "ResourceId";
1670
1691
  const _RL = "RiskLevel";
1692
+ const _RLV = "RequestedLimitValue";
1671
1693
  const _RLe = "RequireLowercase";
1672
1694
  const _RM = "RecoveryMechanisms";
1673
1695
  const _RMR = "ReturnMergedResources";
@@ -1742,6 +1764,7 @@ const _SN = "ServerName";
1742
1764
  const _SNc = "ScopeName";
1743
1765
  const _SP = "ServerPath";
1744
1766
  const _SPe = "SecurityPolicy";
1767
+ const _SQEE = "ServiceQuotaExceededException";
1745
1768
  const _SR = "SecondaryRegion";
1746
1769
  const _SRC = "SetRiskConfiguration";
1747
1770
  const _SRCR = "SetRiskConfigurationRequest";
@@ -1876,6 +1899,9 @@ const _UPCT = "UserPoolClientType";
1876
1899
  const _UPCs = "UserPoolClients";
1877
1900
  const _UPDT = "UserPoolDescriptionType";
1878
1901
  const _UPI = "UserPoolId";
1902
+ const _UPL = "UpdateProvisionedLimit";
1903
+ const _UPLR = "UpdateProvisionedLimitRequest";
1904
+ const _UPLRp = "UpdateProvisionedLimitResponse";
1879
1905
  const _UPLT = "UserPoolListType";
1880
1906
  const _UPPT = "UserPoolPolicyType";
1881
1907
  const _UPR = "UserPoolReplica";
@@ -2158,6 +2184,12 @@ var ScopeDoesNotExistException$ = [-3, n0, _SDNEE,
2158
2184
  [0]
2159
2185
  ];
2160
2186
  n0_registry.registerError(ScopeDoesNotExistException$, ScopeDoesNotExistException);
2187
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
2188
+ { [_e]: _c, [_hE]: 400 },
2189
+ [_m],
2190
+ [0]
2191
+ ];
2192
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
2161
2193
  var SoftwareTokenMFANotFoundException$ = [-3, n0, _STMFANFE,
2162
2194
  { [_e]: _c, [_hE]: 400 },
2163
2195
  [_m],
@@ -3167,6 +3199,16 @@ var GetLogDeliveryConfigurationResponse$ = [3, n0, _GLDCRe,
3167
3199
  [_LDC],
3168
3200
  [() => LogDeliveryConfigurationType$]
3169
3201
  ];
3202
+ var GetProvisionedLimitRequest$ = [3, n0, _GPLR,
3203
+ 0,
3204
+ [_LD],
3205
+ [() => LimitDefinitionType$], 1
3206
+ ];
3207
+ var GetProvisionedLimitResponse$ = [3, n0, _GPLRe,
3208
+ 0,
3209
+ [_L],
3210
+ [() => LimitType$], 1
3211
+ ];
3170
3212
  var GetSigningCertificateRequest$ = [3, n0, _GSCR,
3171
3213
  0,
3172
3214
  [_UPI],
@@ -3292,6 +3334,16 @@ var LambdaConfigType$ = [3, n0, _LCT,
3292
3334
  [_PSU, _CMu, _PC, _PA, _PAo, _DAC, _CAC, _VACR, _PTG, _UM, _PTGC, _CSMSS, _CES, _KMSKID, _IF],
3293
3335
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => PreTokenGenerationVersionConfigType$, () => CustomSMSLambdaVersionConfigType$, () => CustomEmailLambdaVersionConfigType$, 0, () => InboundFederationLambdaType$]
3294
3336
  ];
3337
+ var LimitDefinitionType$ = [3, n0, _LDT,
3338
+ 0,
3339
+ [_LCi, _At],
3340
+ [0, 128 | 0], 2
3341
+ ];
3342
+ var LimitType$ = [3, n0, _LT,
3343
+ 0,
3344
+ [_LD, _PLV, _FLV],
3345
+ [() => LimitDefinitionType$, 1, 1], 3
3346
+ ];
3295
3347
  var ListDevicesRequest$ = [3, n0, _LDR,
3296
3348
  0,
3297
3349
  [_ATc, _L, _PTa],
@@ -3797,6 +3849,16 @@ var UpdateManagedLoginBrandingResponse$ = [3, n0, _UMLBRp,
3797
3849
  [_MLB],
3798
3850
  [() => ManagedLoginBrandingType$]
3799
3851
  ];
3852
+ var UpdateProvisionedLimitRequest$ = [3, n0, _UPLR,
3853
+ 0,
3854
+ [_LD, _RLV],
3855
+ [() => LimitDefinitionType$, 1], 2
3856
+ ];
3857
+ var UpdateProvisionedLimitResponse$ = [3, n0, _UPLRp,
3858
+ 0,
3859
+ [_L],
3860
+ [() => LimitType$], 1
3861
+ ];
3800
3862
  var UpdateResourceServerRequest$ = [3, n0, _URSR,
3801
3863
  0,
3802
3864
  [_UPI, _I, _Na, _Sc],
@@ -4273,6 +4335,9 @@ var GetIdentityProviderByIdentifier$ = [9, n0, _GIPBI,
4273
4335
  var GetLogDeliveryConfiguration$ = [9, n0, _GLDC,
4274
4336
  0, () => GetLogDeliveryConfigurationRequest$, () => GetLogDeliveryConfigurationResponse$
4275
4337
  ];
4338
+ var GetProvisionedLimit$ = [9, n0, _GPL,
4339
+ 0, () => GetProvisionedLimitRequest$, () => GetProvisionedLimitResponse$
4340
+ ];
4276
4341
  var GetSigningCertificate$ = [9, n0, _GSC,
4277
4342
  0, () => GetSigningCertificateRequest$, () => GetSigningCertificateResponse$
4278
4343
  ];
@@ -4300,7 +4365,7 @@ var GlobalSignOut$ = [9, n0, _GSO,
4300
4365
  var InitiateAuth$ = [9, n0, _IAn,
4301
4366
  0, () => InitiateAuthRequest$, () => InitiateAuthResponse$
4302
4367
  ];
4303
- var ListDevices$ = [9, n0, _LD,
4368
+ var ListDevices$ = [9, n0, _LDi,
4304
4369
  0, () => ListDevicesRequest$, () => ListDevicesResponse$
4305
4370
  ];
4306
4371
  var ListGroups$ = [9, n0, _LG,
@@ -4315,7 +4380,7 @@ var ListResourceServers$ = [9, n0, _LRS,
4315
4380
  var ListTagsForResource$ = [9, n0, _LTFR,
4316
4381
  0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
4317
4382
  ];
4318
- var ListTerms$ = [9, n0, _LT,
4383
+ var ListTerms$ = [9, n0, _LTi,
4319
4384
  0, () => ListTermsRequest$, () => ListTermsResponse$
4320
4385
  ];
4321
4386
  var ListUserImportJobs$ = [9, n0, _LUIJ,
@@ -4402,6 +4467,9 @@ var UpdateIdentityProvider$ = [9, n0, _UIP,
4402
4467
  var UpdateManagedLoginBranding$ = [9, n0, _UMLB,
4403
4468
  0, () => UpdateManagedLoginBrandingRequest$, () => UpdateManagedLoginBrandingResponse$
4404
4469
  ];
4470
+ var UpdateProvisionedLimit$ = [9, n0, _UPL,
4471
+ 0, () => UpdateProvisionedLimitRequest$, () => UpdateProvisionedLimitResponse$
4472
+ ];
4405
4473
  var UpdateResourceServer$ = [9, n0, _URS,
4406
4474
  0, () => UpdateResourceServerRequest$, () => UpdateResourceServerResponse$
4407
4475
  ];
@@ -4808,6 +4876,9 @@ class GetIdentityProviderByIdentifierCommand extends command(_ep0, _mw0, "GetIde
4808
4876
  class GetLogDeliveryConfigurationCommand extends command(_ep0, _mw0, "GetLogDeliveryConfiguration", GetLogDeliveryConfiguration$) {
4809
4877
  }
4810
4878
 
4879
+ class GetProvisionedLimitCommand extends command(_ep0, _mw0, "GetProvisionedLimit", GetProvisionedLimit$) {
4880
+ }
4881
+
4811
4882
  class GetSigningCertificateCommand extends command(_ep0, _mw0, "GetSigningCertificate", GetSigningCertificate$) {
4812
4883
  }
4813
4884
 
@@ -4937,6 +5008,9 @@ class UpdateIdentityProviderCommand extends command(_ep0, _mw0, "UpdateIdentityP
4937
5008
  class UpdateManagedLoginBrandingCommand extends command(_ep0, _mw0, "UpdateManagedLoginBranding", UpdateManagedLoginBranding$) {
4938
5009
  }
4939
5010
 
5011
+ class UpdateProvisionedLimitCommand extends command(_ep0, _mw0, "UpdateProvisionedLimit", UpdateProvisionedLimit$) {
5012
+ }
5013
+
4940
5014
  class UpdateResourceServerCommand extends command(_ep0, _mw0, "UpdateResourceServer", UpdateResourceServer$) {
4941
5015
  }
4942
5016
 
@@ -5057,6 +5131,7 @@ const commands = {
5057
5131
  GetGroupCommand,
5058
5132
  GetIdentityProviderByIdentifierCommand,
5059
5133
  GetLogDeliveryConfigurationCommand,
5134
+ GetProvisionedLimitCommand,
5060
5135
  GetSigningCertificateCommand,
5061
5136
  GetTokensFromRefreshTokenCommand,
5062
5137
  GetUICustomizationCommand,
@@ -5100,6 +5175,7 @@ const commands = {
5100
5175
  UpdateGroupCommand,
5101
5176
  UpdateIdentityProviderCommand,
5102
5177
  UpdateManagedLoginBrandingCommand,
5178
+ UpdateProvisionedLimitCommand,
5103
5179
  UpdateResourceServerCommand,
5104
5180
  UpdateTermsCommand,
5105
5181
  UpdateUserAttributesCommand,
@@ -5424,6 +5500,9 @@ const LogLevel = {
5424
5500
  ERROR: "ERROR",
5425
5501
  INFO: "INFO",
5426
5502
  };
5503
+ const LimitClass = {
5504
+ API_CATEGORY: "API_CATEGORY",
5505
+ };
5427
5506
  const WebAuthnFactorConfigurationType = {
5428
5507
  MULTI_FACTOR_WITH_USER_VERIFICATION: "MULTI_FACTOR_WITH_USER_VERIFICATION",
5429
5508
  SINGLE_FACTOR: "SINGLE_FACTOR",
@@ -5814,6 +5893,10 @@ exports.GetLogDeliveryConfiguration$ = GetLogDeliveryConfiguration$;
5814
5893
  exports.GetLogDeliveryConfigurationCommand = GetLogDeliveryConfigurationCommand;
5815
5894
  exports.GetLogDeliveryConfigurationRequest$ = GetLogDeliveryConfigurationRequest$;
5816
5895
  exports.GetLogDeliveryConfigurationResponse$ = GetLogDeliveryConfigurationResponse$;
5896
+ exports.GetProvisionedLimit$ = GetProvisionedLimit$;
5897
+ exports.GetProvisionedLimitCommand = GetProvisionedLimitCommand;
5898
+ exports.GetProvisionedLimitRequest$ = GetProvisionedLimitRequest$;
5899
+ exports.GetProvisionedLimitResponse$ = GetProvisionedLimitResponse$;
5817
5900
  exports.GetSigningCertificate$ = GetSigningCertificate$;
5818
5901
  exports.GetSigningCertificateCommand = GetSigningCertificateCommand;
5819
5902
  exports.GetSigningCertificateRequest$ = GetSigningCertificateRequest$;
@@ -5882,8 +5965,11 @@ exports.IssuerConfigurationType$ = IssuerConfigurationType$;
5882
5965
  exports.IssuerType = IssuerType;
5883
5966
  exports.KeyConfigurationType$ = KeyConfigurationType$;
5884
5967
  exports.LambdaConfigType$ = LambdaConfigType$;
5968
+ exports.LimitClass = LimitClass;
5969
+ exports.LimitDefinitionType$ = LimitDefinitionType$;
5885
5970
  exports.LimitExceededException = LimitExceededException;
5886
5971
  exports.LimitExceededException$ = LimitExceededException$;
5972
+ exports.LimitType$ = LimitType$;
5887
5973
  exports.ListDevices$ = ListDevices$;
5888
5974
  exports.ListDevicesCommand = ListDevicesCommand;
5889
5975
  exports.ListDevicesRequest$ = ListDevicesRequest$;
@@ -6006,6 +6092,8 @@ exports.SchemaAttributeType$ = SchemaAttributeType$;
6006
6092
  exports.ScopeDoesNotExistException = ScopeDoesNotExistException;
6007
6093
  exports.ScopeDoesNotExistException$ = ScopeDoesNotExistException$;
6008
6094
  exports.SecurityPolicyType = SecurityPolicyType;
6095
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
6096
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
6009
6097
  exports.SetLogDeliveryConfiguration$ = SetLogDeliveryConfiguration$;
6010
6098
  exports.SetLogDeliveryConfigurationCommand = SetLogDeliveryConfigurationCommand;
6011
6099
  exports.SetLogDeliveryConfigurationRequest$ = SetLogDeliveryConfigurationRequest$;
@@ -6110,6 +6198,10 @@ exports.UpdateManagedLoginBranding$ = UpdateManagedLoginBranding$;
6110
6198
  exports.UpdateManagedLoginBrandingCommand = UpdateManagedLoginBrandingCommand;
6111
6199
  exports.UpdateManagedLoginBrandingRequest$ = UpdateManagedLoginBrandingRequest$;
6112
6200
  exports.UpdateManagedLoginBrandingResponse$ = UpdateManagedLoginBrandingResponse$;
6201
+ exports.UpdateProvisionedLimit$ = UpdateProvisionedLimit$;
6202
+ exports.UpdateProvisionedLimitCommand = UpdateProvisionedLimitCommand;
6203
+ exports.UpdateProvisionedLimitRequest$ = UpdateProvisionedLimitRequest$;
6204
+ exports.UpdateProvisionedLimitResponse$ = UpdateProvisionedLimitResponse$;
6113
6205
  exports.UpdateReplicaStatusType = UpdateReplicaStatusType;
6114
6206
  exports.UpdateResourceServer$ = UpdateResourceServer$;
6115
6207
  exports.UpdateResourceServerCommand = UpdateResourceServerCommand;
@@ -74,6 +74,7 @@ import { GetDeviceCommand } from "./commands/GetDeviceCommand";
74
74
  import { GetGroupCommand } from "./commands/GetGroupCommand";
75
75
  import { GetIdentityProviderByIdentifierCommand, } from "./commands/GetIdentityProviderByIdentifierCommand";
76
76
  import { GetLogDeliveryConfigurationCommand, } from "./commands/GetLogDeliveryConfigurationCommand";
77
+ import { GetProvisionedLimitCommand, } from "./commands/GetProvisionedLimitCommand";
77
78
  import { GetSigningCertificateCommand, } from "./commands/GetSigningCertificateCommand";
78
79
  import { GetTokensFromRefreshTokenCommand, } from "./commands/GetTokensFromRefreshTokenCommand";
79
80
  import { GetUICustomizationCommand, } from "./commands/GetUICustomizationCommand";
@@ -117,6 +118,7 @@ import { UpdateDeviceStatusCommand, } from "./commands/UpdateDeviceStatusCommand
117
118
  import { UpdateGroupCommand, } from "./commands/UpdateGroupCommand";
118
119
  import { UpdateIdentityProviderCommand, } from "./commands/UpdateIdentityProviderCommand";
119
120
  import { UpdateManagedLoginBrandingCommand, } from "./commands/UpdateManagedLoginBrandingCommand";
121
+ import { UpdateProvisionedLimitCommand, } from "./commands/UpdateProvisionedLimitCommand";
120
122
  import { UpdateResourceServerCommand, } from "./commands/UpdateResourceServerCommand";
121
123
  import { UpdateTermsCommand, } from "./commands/UpdateTermsCommand";
122
124
  import { UpdateUserAttributesCommand, } from "./commands/UpdateUserAttributesCommand";
@@ -210,6 +212,7 @@ const commands = {
210
212
  GetGroupCommand,
211
213
  GetIdentityProviderByIdentifierCommand,
212
214
  GetLogDeliveryConfigurationCommand,
215
+ GetProvisionedLimitCommand,
213
216
  GetSigningCertificateCommand,
214
217
  GetTokensFromRefreshTokenCommand,
215
218
  GetUICustomizationCommand,
@@ -253,6 +256,7 @@ const commands = {
253
256
  UpdateGroupCommand,
254
257
  UpdateIdentityProviderCommand,
255
258
  UpdateManagedLoginBrandingCommand,
259
+ UpdateProvisionedLimitCommand,
256
260
  UpdateResourceServerCommand,
257
261
  UpdateTermsCommand,
258
262
  UpdateUserAttributesCommand,
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { GetProvisionedLimit$ } from "../schemas/schemas_0";
3
+ export class GetProvisionedLimitCommand extends command(_ep0, _mw0, "GetProvisionedLimit", GetProvisionedLimit$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { UpdateProvisionedLimit$ } from "../schemas/schemas_0";
3
+ export class UpdateProvisionedLimitCommand extends command(_ep0, _mw0, "UpdateProvisionedLimit", UpdateProvisionedLimit$) {
4
+ }
@@ -72,6 +72,7 @@ export * from "./GetDeviceCommand";
72
72
  export * from "./GetGroupCommand";
73
73
  export * from "./GetIdentityProviderByIdentifierCommand";
74
74
  export * from "./GetLogDeliveryConfigurationCommand";
75
+ export * from "./GetProvisionedLimitCommand";
75
76
  export * from "./GetSigningCertificateCommand";
76
77
  export * from "./GetTokensFromRefreshTokenCommand";
77
78
  export * from "./GetUICustomizationCommand";
@@ -115,6 +116,7 @@ export * from "./UpdateDeviceStatusCommand";
115
116
  export * from "./UpdateGroupCommand";
116
117
  export * from "./UpdateIdentityProviderCommand";
117
118
  export * from "./UpdateManagedLoginBrandingCommand";
119
+ export * from "./UpdateProvisionedLimitCommand";
118
120
  export * from "./UpdateResourceServerCommand";
119
121
  export * from "./UpdateTermsCommand";
120
122
  export * from "./UpdateUserAttributesCommand";
@@ -297,6 +297,9 @@ export const LogLevel = {
297
297
  ERROR: "ERROR",
298
298
  INFO: "INFO",
299
299
  };
300
+ export const LimitClass = {
301
+ API_CATEGORY: "API_CATEGORY",
302
+ };
300
303
  export const WebAuthnFactorConfigurationType = {
301
304
  MULTI_FACTOR_WITH_USER_VERIFICATION: "MULTI_FACTOR_WITH_USER_VERIFICATION",
302
305
  SINGLE_FACTOR: "SINGLE_FACTOR",
@@ -685,6 +685,18 @@ export class WebAuthnConfigurationMissingException extends __BaseException {
685
685
  Object.setPrototypeOf(this, WebAuthnConfigurationMissingException.prototype);
686
686
  }
687
687
  }
688
+ export class ServiceQuotaExceededException extends __BaseException {
689
+ name = "ServiceQuotaExceededException";
690
+ $fault = "client";
691
+ constructor(opts) {
692
+ super({
693
+ name: "ServiceQuotaExceededException",
694
+ $fault: "client",
695
+ ...opts,
696
+ });
697
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
698
+ }
699
+ }
688
700
  export class EnableSoftwareTokenMFAException extends __BaseException {
689
701
  name = "EnableSoftwareTokenMFAException";
690
702
  $fault = "client";
@@ -402,6 +402,7 @@ const _FDN = "FriendlyDeviceName";
402
402
  const _FDR = "ForgetDeviceRequest";
403
403
  const _FDo = "ForgetDevice";
404
404
  const _FE = "ForbiddenException";
405
+ const _FLV = "FreeLimitValue";
405
406
  const _FP = "ForgotPassword";
406
407
  const _FPR = "ForgotPasswordRequest";
407
408
  const _FPRo = "ForgotPasswordResponse";
@@ -432,6 +433,9 @@ const _GLDCR = "GetLogDeliveryConfigurationRequest";
432
433
  const _GLDCRe = "GetLogDeliveryConfigurationResponse";
433
434
  const _GLT = "GroupListType";
434
435
  const _GN = "GroupName";
436
+ const _GPL = "GetProvisionedLimit";
437
+ const _GPLR = "GetProvisionedLimitRequest";
438
+ const _GPLRe = "GetProvisionedLimitResponse";
435
439
  const _GS = "GenerateSecret";
436
440
  const _GSC = "GetSigningCertificate";
437
441
  const _GSCR = "GetSigningCertificateRequest";
@@ -508,12 +512,15 @@ const _LC = "LambdaConfig";
508
512
  const _LCLT = "LogConfigurationListType";
509
513
  const _LCT = "LambdaConfigType";
510
514
  const _LCTo = "LogConfigurationType";
515
+ const _LCi = "LimitClass";
511
516
  const _LCo = "LogConfigurations";
512
- const _LD = "ListDevices";
517
+ const _LD = "LimitDefinition";
513
518
  const _LDC = "LogDeliveryConfiguration";
514
519
  const _LDCT = "LogDeliveryConfigurationType";
515
520
  const _LDR = "ListDevicesRequest";
516
521
  const _LDRi = "ListDevicesResponse";
522
+ const _LDT = "LimitDefinitionType";
523
+ const _LDi = "ListDevices";
517
524
  const _LEE = "LimitExceededException";
518
525
  const _LG = "ListGroups";
519
526
  const _LGA = "LogGroupArn";
@@ -527,12 +534,13 @@ const _LMD = "LastModifiedDate";
527
534
  const _LRS = "ListResourceServers";
528
535
  const _LRSR = "ListResourceServersRequest";
529
536
  const _LRSRi = "ListResourceServersResponse";
530
- const _LT = "ListTerms";
537
+ const _LT = "LimitType";
531
538
  const _LTFR = "ListTagsForResource";
532
539
  const _LTFRR = "ListTagsForResourceRequest";
533
540
  const _LTFRRi = "ListTagsForResourceResponse";
534
541
  const _LTR = "ListTermsRequest";
535
542
  const _LTRi = "ListTermsResponse";
543
+ const _LTi = "ListTerms";
536
544
  const _LU = "ListUsers";
537
545
  const _LUIG = "ListUsersInGroup";
538
546
  const _LUIGR = "ListUsersInGroupRequest";
@@ -606,6 +614,7 @@ const _PDr = "ProviderDescription";
606
614
  const _PHPVE = "PasswordHistoryPolicyViolationException";
607
615
  const _PHS = "PasswordHistorySize";
608
616
  const _PLT = "ProvidersListType";
617
+ const _PLV = "ProvisionedLimitValue";
609
618
  const _PM = "PreferredMfa";
610
619
  const _PMS = "PreferredMfaSetting";
611
620
  const _PN = "ProviderName";
@@ -649,6 +658,7 @@ const _RECT = "RiskExceptionConfigurationType";
649
658
  const _RGPS = "RetryGracePeriodSeconds";
650
659
  const _RI = "ResourceId";
651
660
  const _RL = "RiskLevel";
661
+ const _RLV = "RequestedLimitValue";
652
662
  const _RLe = "RequireLowercase";
653
663
  const _RM = "RecoveryMechanisms";
654
664
  const _RMR = "ReturnMergedResources";
@@ -723,6 +733,7 @@ const _SN = "ServerName";
723
733
  const _SNc = "ScopeName";
724
734
  const _SP = "ServerPath";
725
735
  const _SPe = "SecurityPolicy";
736
+ const _SQEE = "ServiceQuotaExceededException";
726
737
  const _SR = "SecondaryRegion";
727
738
  const _SRC = "SetRiskConfiguration";
728
739
  const _SRCR = "SetRiskConfigurationRequest";
@@ -857,6 +868,9 @@ const _UPCT = "UserPoolClientType";
857
868
  const _UPCs = "UserPoolClients";
858
869
  const _UPDT = "UserPoolDescriptionType";
859
870
  const _UPI = "UserPoolId";
871
+ const _UPL = "UpdateProvisionedLimit";
872
+ const _UPLR = "UpdateProvisionedLimitRequest";
873
+ const _UPLRp = "UpdateProvisionedLimitResponse";
860
874
  const _UPLT = "UserPoolListType";
861
875
  const _UPPT = "UserPoolPolicyType";
862
876
  const _UPR = "UserPoolReplica";
@@ -939,7 +953,7 @@ const _se = "server";
939
953
  const n0 = "com.amazonaws.cognitoidentityprovider";
940
954
  import { TypeRegistry } from "@smithy/core/schema";
941
955
  import { CognitoIdentityProviderServiceException } from "../models/CognitoIdentityProviderServiceException";
942
- import { AccessDeniedException, AliasExistsException, CodeDeliveryFailureException, CodeMismatchException, ConcurrentModificationException, DeviceKeyExistsException, DuplicateProviderException, EnableSoftwareTokenMFAException, ExpiredCodeException, FeatureUnavailableInTierException, ForbiddenException, GroupExistsException, InternalErrorException, InternalServerException, InvalidEmailRoleAccessPolicyException, InvalidLambdaResponseException, InvalidOAuthFlowException, InvalidParameterException, InvalidPasswordException, InvalidSmsRoleAccessPolicyException, InvalidSmsRoleTrustRelationshipException, InvalidUserPoolConfigurationException, LimitExceededException, ManagedLoginBrandingExistsException, MFAMethodNotFoundException, NotAuthorizedException, OperationNotEnabledException, PasswordHistoryPolicyViolationException, PasswordResetRequiredException, PreconditionNotMetException, RefreshTokenReuseException, ResourceNotFoundException, ScopeDoesNotExistException, SoftwareTokenMFANotFoundException, TermsExistsException, TierChangeNotAllowedException, TooManyFailedAttemptsException, TooManyRequestsException, UnauthorizedException, UnexpectedLambdaException, UnsupportedIdentityProviderException, UnsupportedOperationException, UnsupportedTokenTypeException, UnsupportedUserStateException, UserImportInProgressException, UserLambdaValidationException, UsernameExistsException, UserNotConfirmedException, UserNotFoundException, UserPoolAddOnNotEnabledException, UserPoolTaggingException, WebAuthnChallengeNotFoundException, WebAuthnClientMismatchException, WebAuthnConfigurationMissingException, WebAuthnCredentialNotSupportedException, WebAuthnNotEnabledException, WebAuthnOriginNotAllowedException, WebAuthnRelyingPartyMismatchException, } from "../models/errors";
956
+ import { AccessDeniedException, AliasExistsException, CodeDeliveryFailureException, CodeMismatchException, ConcurrentModificationException, DeviceKeyExistsException, DuplicateProviderException, EnableSoftwareTokenMFAException, ExpiredCodeException, FeatureUnavailableInTierException, ForbiddenException, GroupExistsException, InternalErrorException, InternalServerException, InvalidEmailRoleAccessPolicyException, InvalidLambdaResponseException, InvalidOAuthFlowException, InvalidParameterException, InvalidPasswordException, InvalidSmsRoleAccessPolicyException, InvalidSmsRoleTrustRelationshipException, InvalidUserPoolConfigurationException, LimitExceededException, ManagedLoginBrandingExistsException, MFAMethodNotFoundException, NotAuthorizedException, OperationNotEnabledException, PasswordHistoryPolicyViolationException, PasswordResetRequiredException, PreconditionNotMetException, RefreshTokenReuseException, ResourceNotFoundException, ScopeDoesNotExistException, ServiceQuotaExceededException, SoftwareTokenMFANotFoundException, TermsExistsException, TierChangeNotAllowedException, TooManyFailedAttemptsException, TooManyRequestsException, UnauthorizedException, UnexpectedLambdaException, UnsupportedIdentityProviderException, UnsupportedOperationException, UnsupportedTokenTypeException, UnsupportedUserStateException, UserImportInProgressException, UserLambdaValidationException, UsernameExistsException, UserNotConfirmedException, UserNotFoundException, UserPoolAddOnNotEnabledException, UserPoolTaggingException, WebAuthnChallengeNotFoundException, WebAuthnClientMismatchException, WebAuthnConfigurationMissingException, WebAuthnCredentialNotSupportedException, WebAuthnNotEnabledException, WebAuthnOriginNotAllowedException, WebAuthnRelyingPartyMismatchException, } from "../models/errors";
943
957
  const _s_registry = TypeRegistry.for(_s);
944
958
  export var CognitoIdentityProviderServiceException$ = [-3, _s, "CognitoIdentityProviderServiceException", 0, [], []];
945
959
  _s_registry.registerError(CognitoIdentityProviderServiceException$, CognitoIdentityProviderServiceException);
@@ -1142,6 +1156,12 @@ export var ScopeDoesNotExistException$ = [-3, n0, _SDNEE,
1142
1156
  [0]
1143
1157
  ];
1144
1158
  n0_registry.registerError(ScopeDoesNotExistException$, ScopeDoesNotExistException);
1159
+ export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
1160
+ { [_e]: _c, [_hE]: 400 },
1161
+ [_m],
1162
+ [0]
1163
+ ];
1164
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1145
1165
  export var SoftwareTokenMFANotFoundException$ = [-3, n0, _STMFANFE,
1146
1166
  { [_e]: _c, [_hE]: 400 },
1147
1167
  [_m],
@@ -2151,6 +2171,16 @@ export var GetLogDeliveryConfigurationResponse$ = [3, n0, _GLDCRe,
2151
2171
  [_LDC],
2152
2172
  [() => LogDeliveryConfigurationType$]
2153
2173
  ];
2174
+ export var GetProvisionedLimitRequest$ = [3, n0, _GPLR,
2175
+ 0,
2176
+ [_LD],
2177
+ [() => LimitDefinitionType$], 1
2178
+ ];
2179
+ export var GetProvisionedLimitResponse$ = [3, n0, _GPLRe,
2180
+ 0,
2181
+ [_L],
2182
+ [() => LimitType$], 1
2183
+ ];
2154
2184
  export var GetSigningCertificateRequest$ = [3, n0, _GSCR,
2155
2185
  0,
2156
2186
  [_UPI],
@@ -2276,6 +2306,16 @@ export var LambdaConfigType$ = [3, n0, _LCT,
2276
2306
  [_PSU, _CMu, _PC, _PA, _PAo, _DAC, _CAC, _VACR, _PTG, _UM, _PTGC, _CSMSS, _CES, _KMSKID, _IF],
2277
2307
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => PreTokenGenerationVersionConfigType$, () => CustomSMSLambdaVersionConfigType$, () => CustomEmailLambdaVersionConfigType$, 0, () => InboundFederationLambdaType$]
2278
2308
  ];
2309
+ export var LimitDefinitionType$ = [3, n0, _LDT,
2310
+ 0,
2311
+ [_LCi, _At],
2312
+ [0, 128 | 0], 2
2313
+ ];
2314
+ export var LimitType$ = [3, n0, _LT,
2315
+ 0,
2316
+ [_LD, _PLV, _FLV],
2317
+ [() => LimitDefinitionType$, 1, 1], 3
2318
+ ];
2279
2319
  export var ListDevicesRequest$ = [3, n0, _LDR,
2280
2320
  0,
2281
2321
  [_ATc, _L, _PTa],
@@ -2781,6 +2821,16 @@ export var UpdateManagedLoginBrandingResponse$ = [3, n0, _UMLBRp,
2781
2821
  [_MLB],
2782
2822
  [() => ManagedLoginBrandingType$]
2783
2823
  ];
2824
+ export var UpdateProvisionedLimitRequest$ = [3, n0, _UPLR,
2825
+ 0,
2826
+ [_LD, _RLV],
2827
+ [() => LimitDefinitionType$, 1], 2
2828
+ ];
2829
+ export var UpdateProvisionedLimitResponse$ = [3, n0, _UPLRp,
2830
+ 0,
2831
+ [_L],
2832
+ [() => LimitType$], 1
2833
+ ];
2784
2834
  export var UpdateResourceServerRequest$ = [3, n0, _URSR,
2785
2835
  0,
2786
2836
  [_UPI, _I, _Na, _Sc],
@@ -3066,6 +3116,7 @@ var ChallengeResponsesType = [2, n0, _CRTh,
3066
3116
  var ClientMetadataType = 128 | 0;
3067
3117
  var LinksType = 128 | 0;
3068
3118
  var ProviderDetailsType = 128 | 0;
3119
+ var StringToStringMapType = 128 | 0;
3069
3120
  var UserPoolTagsType = 128 | 0;
3070
3121
  export var AddCustomAttributes$ = [9, n0, _ACA,
3071
3122
  0, () => AddCustomAttributesRequest$, () => AddCustomAttributesResponse$
@@ -3289,6 +3340,9 @@ export var GetIdentityProviderByIdentifier$ = [9, n0, _GIPBI,
3289
3340
  export var GetLogDeliveryConfiguration$ = [9, n0, _GLDC,
3290
3341
  0, () => GetLogDeliveryConfigurationRequest$, () => GetLogDeliveryConfigurationResponse$
3291
3342
  ];
3343
+ export var GetProvisionedLimit$ = [9, n0, _GPL,
3344
+ 0, () => GetProvisionedLimitRequest$, () => GetProvisionedLimitResponse$
3345
+ ];
3292
3346
  export var GetSigningCertificate$ = [9, n0, _GSC,
3293
3347
  0, () => GetSigningCertificateRequest$, () => GetSigningCertificateResponse$
3294
3348
  ];
@@ -3316,7 +3370,7 @@ export var GlobalSignOut$ = [9, n0, _GSO,
3316
3370
  export var InitiateAuth$ = [9, n0, _IAn,
3317
3371
  0, () => InitiateAuthRequest$, () => InitiateAuthResponse$
3318
3372
  ];
3319
- export var ListDevices$ = [9, n0, _LD,
3373
+ export var ListDevices$ = [9, n0, _LDi,
3320
3374
  0, () => ListDevicesRequest$, () => ListDevicesResponse$
3321
3375
  ];
3322
3376
  export var ListGroups$ = [9, n0, _LG,
@@ -3331,7 +3385,7 @@ export var ListResourceServers$ = [9, n0, _LRS,
3331
3385
  export var ListTagsForResource$ = [9, n0, _LTFR,
3332
3386
  0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
3333
3387
  ];
3334
- export var ListTerms$ = [9, n0, _LT,
3388
+ export var ListTerms$ = [9, n0, _LTi,
3335
3389
  0, () => ListTermsRequest$, () => ListTermsResponse$
3336
3390
  ];
3337
3391
  export var ListUserImportJobs$ = [9, n0, _LUIJ,
@@ -3418,6 +3472,9 @@ export var UpdateIdentityProvider$ = [9, n0, _UIP,
3418
3472
  export var UpdateManagedLoginBranding$ = [9, n0, _UMLB,
3419
3473
  0, () => UpdateManagedLoginBrandingRequest$, () => UpdateManagedLoginBrandingResponse$
3420
3474
  ];
3475
+ export var UpdateProvisionedLimit$ = [9, n0, _UPL,
3476
+ 0, () => UpdateProvisionedLimitRequest$, () => UpdateProvisionedLimitResponse$
3477
+ ];
3421
3478
  export var UpdateResourceServer$ = [9, n0, _URS,
3422
3479
  0, () => UpdateResourceServerRequest$, () => UpdateResourceServerResponse$
3423
3480
  ];
@@ -74,6 +74,7 @@ import { type GetDeviceCommandInput, type GetDeviceCommandOutput } from "./comma
74
74
  import { type GetGroupCommandInput, type GetGroupCommandOutput } from "./commands/GetGroupCommand";
75
75
  import { type GetIdentityProviderByIdentifierCommandInput, type GetIdentityProviderByIdentifierCommandOutput } from "./commands/GetIdentityProviderByIdentifierCommand";
76
76
  import { type GetLogDeliveryConfigurationCommandInput, type GetLogDeliveryConfigurationCommandOutput } from "./commands/GetLogDeliveryConfigurationCommand";
77
+ import { type GetProvisionedLimitCommandInput, type GetProvisionedLimitCommandOutput } from "./commands/GetProvisionedLimitCommand";
77
78
  import { type GetSigningCertificateCommandInput, type GetSigningCertificateCommandOutput } from "./commands/GetSigningCertificateCommand";
78
79
  import { type GetTokensFromRefreshTokenCommandInput, type GetTokensFromRefreshTokenCommandOutput } from "./commands/GetTokensFromRefreshTokenCommand";
79
80
  import { type GetUICustomizationCommandInput, type GetUICustomizationCommandOutput } from "./commands/GetUICustomizationCommand";
@@ -117,6 +118,7 @@ import { type UpdateDeviceStatusCommandInput, type UpdateDeviceStatusCommandOutp
117
118
  import { type UpdateGroupCommandInput, type UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
118
119
  import { type UpdateIdentityProviderCommandInput, type UpdateIdentityProviderCommandOutput } from "./commands/UpdateIdentityProviderCommand";
119
120
  import { type UpdateManagedLoginBrandingCommandInput, type UpdateManagedLoginBrandingCommandOutput } from "./commands/UpdateManagedLoginBrandingCommand";
121
+ import { type UpdateProvisionedLimitCommandInput, type UpdateProvisionedLimitCommandOutput } from "./commands/UpdateProvisionedLimitCommand";
120
122
  import { type UpdateResourceServerCommandInput, type UpdateResourceServerCommandOutput } from "./commands/UpdateResourceServerCommand";
121
123
  import { type UpdateTermsCommandInput, type UpdateTermsCommandOutput } from "./commands/UpdateTermsCommand";
122
124
  import { type UpdateUserAttributesCommandInput, type UpdateUserAttributesCommandOutput } from "./commands/UpdateUserAttributesCommand";
@@ -572,6 +574,12 @@ export interface CognitoIdentityProvider {
572
574
  getLogDeliveryConfiguration(args: GetLogDeliveryConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetLogDeliveryConfigurationCommandOutput>;
573
575
  getLogDeliveryConfiguration(args: GetLogDeliveryConfigurationCommandInput, cb: (err: any, data?: GetLogDeliveryConfigurationCommandOutput) => void): void;
574
576
  getLogDeliveryConfiguration(args: GetLogDeliveryConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLogDeliveryConfigurationCommandOutput) => void): void;
577
+ /**
578
+ * @see {@link GetProvisionedLimitCommand}
579
+ */
580
+ getProvisionedLimit(args: GetProvisionedLimitCommandInput, options?: __HttpHandlerOptions): Promise<GetProvisionedLimitCommandOutput>;
581
+ getProvisionedLimit(args: GetProvisionedLimitCommandInput, cb: (err: any, data?: GetProvisionedLimitCommandOutput) => void): void;
582
+ getProvisionedLimit(args: GetProvisionedLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProvisionedLimitCommandOutput) => void): void;
575
583
  /**
576
584
  * @see {@link GetSigningCertificateCommand}
577
585
  */
@@ -831,6 +839,12 @@ export interface CognitoIdentityProvider {
831
839
  updateManagedLoginBranding(args: UpdateManagedLoginBrandingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateManagedLoginBrandingCommandOutput>;
832
840
  updateManagedLoginBranding(args: UpdateManagedLoginBrandingCommandInput, cb: (err: any, data?: UpdateManagedLoginBrandingCommandOutput) => void): void;
833
841
  updateManagedLoginBranding(args: UpdateManagedLoginBrandingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateManagedLoginBrandingCommandOutput) => void): void;
842
+ /**
843
+ * @see {@link UpdateProvisionedLimitCommand}
844
+ */
845
+ updateProvisionedLimit(args: UpdateProvisionedLimitCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProvisionedLimitCommandOutput>;
846
+ updateProvisionedLimit(args: UpdateProvisionedLimitCommandInput, cb: (err: any, data?: UpdateProvisionedLimitCommandOutput) => void): void;
847
+ updateProvisionedLimit(args: UpdateProvisionedLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProvisionedLimitCommandOutput) => void): void;
834
848
  /**
835
849
  * @see {@link UpdateResourceServerCommand}
836
850
  */