import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IdpAdfsConfig extends cdktf.TerraformMetaArguments { /** * PEM or DER encoded public X.509 certificates for SAML signature validation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#certificates IdpAdfs#certificates} */ readonly certificates: string[]; /** * True if ADFS is disabled. Defaults to `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#disabled IdpAdfs#disabled} */ readonly disabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#id IdpAdfs#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; /** * Issuer URI provided by ADFS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#issuer_uri IdpAdfs#issuer_uri} */ readonly issuerUri: string; /** * IDP ADFS resource name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#name IdpAdfs#name} */ readonly name?: string; /** * String used to identify Genesys Cloud to ADFS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#relying_party_identifier IdpAdfs#relying_party_identifier} */ readonly relyingPartyIdentifier?: string; /** * True if the Genesys Cloud authentication request should be signed. Defaults to `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#sign_authn_requests IdpAdfs#sign_authn_requests} */ readonly signAuthnRequests?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#slo_binding IdpAdfs#slo_binding} */ readonly sloBinding?: string; /** * Provided by ADFS on app creation * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#slo_uri IdpAdfs#slo_uri} */ readonly sloUri?: string; /** * Target URI provided by ADFS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#target_uri IdpAdfs#target_uri} */ readonly targetUri?: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#timeouts IdpAdfs#timeouts} */ readonly timeouts?: IdpAdfsTimeouts; } export interface IdpAdfsTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#read IdpAdfs#read} */ readonly read?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#update IdpAdfs#update} */ readonly update?: string; } export declare function idpAdfsTimeoutsToTerraform(struct?: IdpAdfsTimeouts | cdktf.IResolvable): any; export declare function idpAdfsTimeoutsToHclTerraform(struct?: IdpAdfsTimeouts | cdktf.IResolvable): any; export declare class IdpAdfsTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): IdpAdfsTimeouts | cdktf.IResolvable | undefined; set internalValue(value: IdpAdfsTimeouts | cdktf.IResolvable | undefined); private _read?; get read(): string; set read(value: string); resetRead(): void; get readInput(): string; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs genesyscloud_idp_adfs} */ export declare class IdpAdfs extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_idp_adfs"; /** * Generates CDKTF code for importing a IdpAdfs 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 IdpAdfs to import * @param importFromId The id of the existing IdpAdfs that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IdpAdfs 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/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_adfs genesyscloud_idp_adfs} 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 IdpAdfsConfig */ constructor(scope: Construct, id: string, config: IdpAdfsConfig); private _certificates?; get certificates(): string[]; set certificates(value: string[]); get certificatesInput(): string[]; private _disabled?; get disabled(): boolean | cdktf.IResolvable; set disabled(value: boolean | cdktf.IResolvable); resetDisabled(): void; get disabledInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _issuerUri?; get issuerUri(): string; set issuerUri(value: string); get issuerUriInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _relyingPartyIdentifier?; get relyingPartyIdentifier(): string; set relyingPartyIdentifier(value: string); resetRelyingPartyIdentifier(): void; get relyingPartyIdentifierInput(): string; private _signAuthnRequests?; get signAuthnRequests(): boolean | cdktf.IResolvable; set signAuthnRequests(value: boolean | cdktf.IResolvable); resetSignAuthnRequests(): void; get signAuthnRequestsInput(): any; private _sloBinding?; get sloBinding(): string; set sloBinding(value: string); resetSloBinding(): void; get sloBindingInput(): string; private _sloUri?; get sloUri(): string; set sloUri(value: string); resetSloUri(): void; get sloUriInput(): string; private _targetUri?; get targetUri(): string; set targetUri(value: string); resetTargetUri(): void; get targetUriInput(): string; private _timeouts; get timeouts(): IdpAdfsTimeoutsOutputReference; putTimeouts(value: IdpAdfsTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }