// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class RemoveClientIdFromOIDCProviderResponseBodyOIDCProvider extends $dara.Model { /** * @remarks * The Alibaba Cloud Resource Name (ARN) of the OIDC IdP. * * @example * acs:ram::177242285274****:oidc-provider/TestOIDCProvider */ arn?: string; /** * @remarks * The ID of the client. If multiple client IDs are returned, the client IDs are separated by commas (,). * * @example * 598469743454717**** */ clientIds?: string; /** * @remarks * The time when the OIDC IdP was created. The time is displayed in UTC. * * @example * 2021-11-11T06:56:03Z */ createDate?: string; /** * @remarks * The description of the OIDC IdP. * * @example * This is a new OIDC Provider. */ description?: string; /** * @remarks * The fingerprint of the HTTPS certificate. If multiple fingerprints are returned, the fingerprints are separated by commas (,). * * @example * 902ef2deeb3c5b13ea4c3d5193629309e231**** */ fingerprints?: string; /** * @remarks * The timestamp when the OIDC IdP was created. * * @example * 1636613763000 */ gmtCreate?: string; /** * @remarks * The timestamp when the OIDC IdP was modified. * * @example * 1636706309000 */ gmtModified?: string; /** * @remarks * The earliest time when an external IdP can issue an ID token. If the value of the iat field in the ID token is later than the current time, the request is rejected. Unit: hours. Valid values: 1 to 168. * * @example * 12 */ issuanceLimitTime?: number; /** * @remarks * The URL of the issuer. * * @example * https://xxxxxx.example.com */ issuerUrl?: string; /** * @remarks * The name of the OIDC IdP. * * @example * TestOIDCProvider */ OIDCProviderName?: string; /** * @remarks * The time when the OIDC IdP was modified. The time is displayed in UTC. * * @example * 2021-11-12T08:38:29Z */ updateDate?: string; static names(): { [key: string]: string } { return { arn: 'Arn', clientIds: 'ClientIds', createDate: 'CreateDate', description: 'Description', fingerprints: 'Fingerprints', gmtCreate: 'GmtCreate', gmtModified: 'GmtModified', issuanceLimitTime: 'IssuanceLimitTime', issuerUrl: 'IssuerUrl', OIDCProviderName: 'OIDCProviderName', updateDate: 'UpdateDate', }; } static types(): { [key: string]: any } { return { arn: 'string', clientIds: 'string', createDate: 'string', description: 'string', fingerprints: 'string', gmtCreate: 'string', gmtModified: 'string', issuanceLimitTime: 'number', issuerUrl: 'string', OIDCProviderName: 'string', updateDate: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveClientIdFromOIDCProviderResponseBody extends $dara.Model { /** * @remarks * The information about the OIDC IdP. */ OIDCProvider?: RemoveClientIdFromOIDCProviderResponseBodyOIDCProvider; /** * @remarks * The request ID. * * @example * EC9A8F3B-AFA5-5C8F-999D-F97BC7CF1FC5 */ requestId?: string; static names(): { [key: string]: string } { return { OIDCProvider: 'OIDCProvider', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { OIDCProvider: RemoveClientIdFromOIDCProviderResponseBodyOIDCProvider, requestId: 'string', }; } validate() { if(this.OIDCProvider && typeof (this.OIDCProvider as any).validate === 'function') { (this.OIDCProvider as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }