// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListSAMLProvidersResponseBodySAMLProvidersSAMLProvider extends $dara.Model { arn?: string; createDate?: string; description?: string; SAMLProviderName?: string; updateDate?: string; static names(): { [key: string]: string } { return { arn: 'Arn', createDate: 'CreateDate', description: 'Description', SAMLProviderName: 'SAMLProviderName', updateDate: 'UpdateDate', }; } static types(): { [key: string]: any } { return { arn: 'string', createDate: 'string', description: 'string', SAMLProviderName: 'string', updateDate: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListSAMLProvidersResponseBodySAMLProviders extends $dara.Model { SAMLProvider?: ListSAMLProvidersResponseBodySAMLProvidersSAMLProvider[]; static names(): { [key: string]: string } { return { SAMLProvider: 'SAMLProvider', }; } static types(): { [key: string]: any } { return { SAMLProvider: { 'type': 'array', 'itemType': ListSAMLProvidersResponseBodySAMLProvidersSAMLProvider }, }; } validate() { if(Array.isArray(this.SAMLProvider)) { $dara.Model.validateArray(this.SAMLProvider); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListSAMLProvidersResponseBody extends $dara.Model { /** * @remarks * Indicates whether the response is truncated. Valid values: * * - true * * - false * * @example * true */ isTruncated?: boolean; /** * @remarks * The `marker`. This parameter is returned only if the value of `IsTruncated` is `true`. If the parameter is returned, you can call this operation again and set this parameter to obtain the truncated part.\\`\\` * * @example * EXAMPLE */ marker?: string; /** * @remarks * The request ID. * * @example * 2D8B70D3-E194-41C9-93C5-F6A10D716D24 */ requestId?: string; SAMLProviders?: ListSAMLProvidersResponseBodySAMLProviders; static names(): { [key: string]: string } { return { isTruncated: 'IsTruncated', marker: 'Marker', requestId: 'RequestId', SAMLProviders: 'SAMLProviders', }; } static types(): { [key: string]: any } { return { isTruncated: 'boolean', marker: 'string', requestId: 'string', SAMLProviders: ListSAMLProvidersResponseBodySAMLProviders, }; } validate() { if(this.SAMLProviders && typeof (this.SAMLProviders as any).validate === 'function') { (this.SAMLProviders as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }