import * as $dara from '@darabonba/typescript'; export declare class CreateServiceCredentialResponseBodyServiceCredential extends $dara.Model { /** * @remarks * The time when the service credential was created. * * @example * 2026-01-01T10:05:24Z */ createTime?: string; /** * @remarks * The expiration time of the service credential. * This field is not returned for permanently valid service credentials. * * @example * 2026-02-01T10:05:24Z * * **if can be null:** * true */ expirationTime?: string; /** * @remarks * The service credential ID. * * @example * SC************* */ serviceCredentialId?: string; /** * @remarks * The service credential name. * * @example * yourServiceCredentialName */ serviceCredentialName?: string; /** * @remarks * The secret of the service credential. * * @example * yourServiceCredentialSecret */ serviceCredentialSecret?: string; /** * @remarks * The Alibaba Cloud service name. * * @example * xxx.aliyuncs.com */ serviceName?: string; /** * @remarks * The status of the service credential. * * @example * Active */ status?: string; /** * @remarks * The logon name of the RAM user. * * @example * test@example.onaliyun.com */ userPrincipalName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateServiceCredentialResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 81313F5E-3C85-478F-BCC9-E1B70E4556DB */ requestId?: string; /** * @remarks * The service credential information. */ serviceCredential?: CreateServiceCredentialResponseBodyServiceCredential; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }