import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OrganizationExternalSamlIdentityProviderConfig extends cdktf.TerraformMetaArguments { /** * Another X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#another_x509_certificate OrganizationExternalSamlIdentityProvider#another_x509_certificate} */ readonly anotherX509Certificate?: string; /** * IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#encoded_metadata_document OrganizationExternalSamlIdentityProvider#encoded_metadata_document} */ readonly encodedMetadataDocument?: string; /** * IdP identifier. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#entity_id OrganizationExternalSamlIdentityProvider#entity_id} */ readonly entityId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#id OrganizationExternalSamlIdentityProvider#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * IdP login URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#login_url OrganizationExternalSamlIdentityProvider#login_url} */ readonly loginUrl?: string; /** * SSO enabling status. Valid values: Enabled, Disabled (default). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#sso_status OrganizationExternalSamlIdentityProvider#sso_status} */ readonly ssoStatus?: string; /** * X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#x509_certificate OrganizationExternalSamlIdentityProvider#x509_certificate} */ readonly x509Certificate?: string; /** * Space ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#zone_id OrganizationExternalSamlIdentityProvider#zone_id} */ readonly zoneId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider tencentcloud_organization_external_saml_identity_provider} */ export declare class OrganizationExternalSamlIdentityProvider extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_organization_external_saml_identity_provider"; /** * Generates CDKTF code for importing a OrganizationExternalSamlIdentityProvider resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the OrganizationExternalSamlIdentityProvider to import * @param importFromId The id of the existing OrganizationExternalSamlIdentityProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OrganizationExternalSamlIdentityProvider to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_external_saml_identity_provider tencentcloud_organization_external_saml_identity_provider} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options OrganizationExternalSamlIdentityProviderConfig */ constructor(scope: Construct, id: string, config: OrganizationExternalSamlIdentityProviderConfig); get anotherCertificateId(): any; private _anotherX509Certificate?; get anotherX509Certificate(): string; set anotherX509Certificate(value: string); resetAnotherX509Certificate(): void; get anotherX509CertificateInput(): string; get certificateId(): any; get createTime(): any; private _encodedMetadataDocument?; get encodedMetadataDocument(): string; set encodedMetadataDocument(value: string); resetEncodedMetadataDocument(): void; get encodedMetadataDocumentInput(): string; private _entityId?; get entityId(): string; set entityId(value: string); resetEntityId(): void; get entityIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _loginUrl?; get loginUrl(): string; set loginUrl(value: string); resetLoginUrl(): void; get loginUrlInput(): string; private _ssoStatus?; get ssoStatus(): string; set ssoStatus(value: string); resetSsoStatus(): void; get ssoStatusInput(): string; get updateTime(): any; private _x509Certificate?; get x509Certificate(): string; set x509Certificate(value: string); resetX509Certificate(): void; get x509CertificateInput(): string; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }