import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IdpPingConfig 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_ping#certificates IdpPing#certificates} */ readonly certificates: string[]; /** * True if Ping is disabled. Defaults to `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#disabled IdpPing#disabled} */ readonly disabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#id IdpPing#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 Ping. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#issuer_uri IdpPing#issuer_uri} */ readonly issuerUri: string; /** * Name of the provider * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#name IdpPing#name} */ readonly name?: string; /** * String used to identify Genesys Cloud to Ping. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#relying_party_identifier IdpPing#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_ping#sign_authn_requests IdpPing#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_ping#slo_binding IdpPing#slo_binding} */ readonly sloBinding?: string; /** * Provided on app creation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#slo_uri IdpPing#slo_uri} */ readonly sloUri?: string; /** * Target URI provided by Ping. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#target_uri IdpPing#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_ping#timeouts IdpPing#timeouts} */ readonly timeouts?: IdpPingTimeouts; } export interface IdpPingTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#read IdpPing#read} */ readonly read?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#update IdpPing#update} */ readonly update?: string; } export declare function idpPingTimeoutsToTerraform(struct?: IdpPingTimeouts | cdktf.IResolvable): any; export declare function idpPingTimeoutsToHclTerraform(struct?: IdpPingTimeouts | cdktf.IResolvable): any; export declare class IdpPingTimeoutsOutputReference 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(): IdpPingTimeouts | cdktf.IResolvable | undefined; set internalValue(value: IdpPingTimeouts | 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_ping genesyscloud_idp_ping} */ export declare class IdpPing extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_idp_ping"; /** * Generates CDKTF code for importing a IdpPing 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 IdpPing to import * @param importFromId The id of the existing IdpPing that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/idp_ping#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IdpPing 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_ping genesyscloud_idp_ping} 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 IdpPingConfig */ constructor(scope: Construct, id: string, config: IdpPingConfig); 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(): IdpPingTimeoutsOutputReference; putTimeouts(value: IdpPingTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }