@@ -184,6 +184,7 @@ import {
184184 CreateResourceServerCommandInput ,
185185 CreateResourceServerCommandOutput ,
186186} from "./commands/CreateResourceServerCommand" ;
187+ import { CreateTermsCommand , CreateTermsCommandInput , CreateTermsCommandOutput } from "./commands/CreateTermsCommand" ;
187188import {
188189 CreateUserImportJobCommand ,
189190 CreateUserImportJobCommandInput ,
@@ -220,6 +221,7 @@ import {
220221 DeleteResourceServerCommandInput ,
221222 DeleteResourceServerCommandOutput ,
222223} from "./commands/DeleteResourceServerCommand" ;
224+ import { DeleteTermsCommand , DeleteTermsCommandInput , DeleteTermsCommandOutput } from "./commands/DeleteTermsCommand" ;
223225import {
224226 DeleteUserAttributesCommand ,
225227 DeleteUserAttributesCommandInput ,
@@ -271,6 +273,11 @@ import {
271273 DescribeRiskConfigurationCommandInput ,
272274 DescribeRiskConfigurationCommandOutput ,
273275} from "./commands/DescribeRiskConfigurationCommand" ;
276+ import {
277+ DescribeTermsCommand ,
278+ DescribeTermsCommandInput ,
279+ DescribeTermsCommandOutput ,
280+ } from "./commands/DescribeTermsCommand" ;
274281import {
275282 DescribeUserImportJobCommand ,
276283 DescribeUserImportJobCommandInput ,
@@ -376,6 +383,7 @@ import {
376383 ListTagsForResourceCommandInput ,
377384 ListTagsForResourceCommandOutput ,
378385} from "./commands/ListTagsForResourceCommand" ;
386+ import { ListTermsCommand , ListTermsCommandInput , ListTermsCommandOutput } from "./commands/ListTermsCommand" ;
379387import {
380388 ListUserImportJobsCommand ,
381389 ListUserImportJobsCommandInput ,
@@ -491,6 +499,7 @@ import {
491499 UpdateResourceServerCommandInput ,
492500 UpdateResourceServerCommandOutput ,
493501} from "./commands/UpdateResourceServerCommand" ;
502+ import { UpdateTermsCommand , UpdateTermsCommandInput , UpdateTermsCommandOutput } from "./commands/UpdateTermsCommand" ;
494503import {
495504 UpdateUserAttributesCommand ,
496505 UpdateUserAttributesCommandInput ,
@@ -560,6 +569,7 @@ const commands = {
560569 CreateIdentityProviderCommand,
561570 CreateManagedLoginBrandingCommand,
562571 CreateResourceServerCommand,
572+ CreateTermsCommand,
563573 CreateUserImportJobCommand,
564574 CreateUserPoolCommand,
565575 CreateUserPoolClientCommand,
@@ -568,6 +578,7 @@ const commands = {
568578 DeleteIdentityProviderCommand,
569579 DeleteManagedLoginBrandingCommand,
570580 DeleteResourceServerCommand,
581+ DeleteTermsCommand,
571582 DeleteUserCommand,
572583 DeleteUserAttributesCommand,
573584 DeleteUserPoolCommand,
@@ -579,6 +590,7 @@ const commands = {
579590 DescribeManagedLoginBrandingByClientCommand,
580591 DescribeResourceServerCommand,
581592 DescribeRiskConfigurationCommand,
593+ DescribeTermsCommand,
582594 DescribeUserImportJobCommand,
583595 DescribeUserPoolCommand,
584596 DescribeUserPoolClientCommand,
@@ -604,6 +616,7 @@ const commands = {
604616 ListIdentityProvidersCommand,
605617 ListResourceServersCommand,
606618 ListTagsForResourceCommand,
619+ ListTermsCommand,
607620 ListUserImportJobsCommand,
608621 ListUserPoolClientsCommand,
609622 ListUserPoolsCommand,
@@ -631,6 +644,7 @@ const commands = {
631644 UpdateIdentityProviderCommand,
632645 UpdateManagedLoginBrandingCommand,
633646 UpdateResourceServerCommand,
647+ UpdateTermsCommand,
634648 UpdateUserAttributesCommand,
635649 UpdateUserPoolCommand,
636650 UpdateUserPoolClientCommand,
@@ -1231,6 +1245,17 @@ export interface CognitoIdentityProvider {
12311245 cb : ( err : any , data ?: CreateResourceServerCommandOutput ) => void
12321246 ) : void ;
12331247
1248+ /**
1249+ * @see {@link CreateTermsCommand }
1250+ */
1251+ createTerms ( args : CreateTermsCommandInput , options ?: __HttpHandlerOptions ) : Promise < CreateTermsCommandOutput > ;
1252+ createTerms ( args : CreateTermsCommandInput , cb : ( err : any , data ?: CreateTermsCommandOutput ) => void ) : void ;
1253+ createTerms (
1254+ args : CreateTermsCommandInput ,
1255+ options : __HttpHandlerOptions ,
1256+ cb : ( err : any , data ?: CreateTermsCommandOutput ) => void
1257+ ) : void ;
1258+
12341259 /**
12351260 * @see {@link CreateUserImportJobCommand }
12361261 */
@@ -1358,6 +1383,17 @@ export interface CognitoIdentityProvider {
13581383 cb : ( err : any , data ?: DeleteResourceServerCommandOutput ) => void
13591384 ) : void ;
13601385
1386+ /**
1387+ * @see {@link DeleteTermsCommand }
1388+ */
1389+ deleteTerms ( args : DeleteTermsCommandInput , options ?: __HttpHandlerOptions ) : Promise < DeleteTermsCommandOutput > ;
1390+ deleteTerms ( args : DeleteTermsCommandInput , cb : ( err : any , data ?: DeleteTermsCommandOutput ) => void ) : void ;
1391+ deleteTerms (
1392+ args : DeleteTermsCommandInput ,
1393+ options : __HttpHandlerOptions ,
1394+ cb : ( err : any , data ?: DeleteTermsCommandOutput ) => void
1395+ ) : void ;
1396+
13611397 /**
13621398 * @see {@link DeleteUserCommand }
13631399 */
@@ -1536,6 +1572,17 @@ export interface CognitoIdentityProvider {
15361572 cb : ( err : any , data ?: DescribeRiskConfigurationCommandOutput ) => void
15371573 ) : void ;
15381574
1575+ /**
1576+ * @see {@link DescribeTermsCommand }
1577+ */
1578+ describeTerms ( args : DescribeTermsCommandInput , options ?: __HttpHandlerOptions ) : Promise < DescribeTermsCommandOutput > ;
1579+ describeTerms ( args : DescribeTermsCommandInput , cb : ( err : any , data ?: DescribeTermsCommandOutput ) => void ) : void ;
1580+ describeTerms (
1581+ args : DescribeTermsCommandInput ,
1582+ options : __HttpHandlerOptions ,
1583+ cb : ( err : any , data ?: DescribeTermsCommandOutput ) => void
1584+ ) : void ;
1585+
15391586 /**
15401587 * @see {@link DescribeUserImportJobCommand }
15411588 */
@@ -1904,6 +1951,17 @@ export interface CognitoIdentityProvider {
19041951 cb : ( err : any , data ?: ListTagsForResourceCommandOutput ) => void
19051952 ) : void ;
19061953
1954+ /**
1955+ * @see {@link ListTermsCommand }
1956+ */
1957+ listTerms ( args : ListTermsCommandInput , options ?: __HttpHandlerOptions ) : Promise < ListTermsCommandOutput > ;
1958+ listTerms ( args : ListTermsCommandInput , cb : ( err : any , data ?: ListTermsCommandOutput ) => void ) : void ;
1959+ listTerms (
1960+ args : ListTermsCommandInput ,
1961+ options : __HttpHandlerOptions ,
1962+ cb : ( err : any , data ?: ListTermsCommandOutput ) => void
1963+ ) : void ;
1964+
19071965 /**
19081966 * @see {@link ListUserImportJobsCommand }
19091967 */
@@ -2319,6 +2377,17 @@ export interface CognitoIdentityProvider {
23192377 cb : ( err : any , data ?: UpdateResourceServerCommandOutput ) => void
23202378 ) : void ;
23212379
2380+ /**
2381+ * @see {@link UpdateTermsCommand }
2382+ */
2383+ updateTerms ( args : UpdateTermsCommandInput , options ?: __HttpHandlerOptions ) : Promise < UpdateTermsCommandOutput > ;
2384+ updateTerms ( args : UpdateTermsCommandInput , cb : ( err : any , data ?: UpdateTermsCommandOutput ) => void ) : void ;
2385+ updateTerms (
2386+ args : UpdateTermsCommandInput ,
2387+ options : __HttpHandlerOptions ,
2388+ cb : ( err : any , data ?: UpdateTermsCommandOutput ) => void
2389+ ) : void ;
2390+
23222391 /**
23232392 * @see {@link UpdateUserAttributesCommand }
23242393 */
0 commit comments