import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustRiskScoringIntegration = new cloudflare.ZeroTrustRiskScoringIntegration("example_zero_trust_risk_scoring_integration", { * accountId: "account_id", * integrationType: "Okta", * tenantUrl: "https://example.com", * referenceId: "reference_id", * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/zeroTrustRiskScoringIntegration:ZeroTrustRiskScoringIntegration example '/' * ``` */ export declare class ZeroTrustRiskScoringIntegration extends pulumi.CustomResource { /** * Get an existing ZeroTrustRiskScoringIntegration resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ZeroTrustRiskScoringIntegrationState, opts?: pulumi.CustomResourceOptions): ZeroTrustRiskScoringIntegration; /** * Returns true if the given object is an instance of ZeroTrustRiskScoringIntegration. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ZeroTrustRiskScoringIntegration; readonly accountId: pulumi.Output; /** * The Cloudflare account tag. */ readonly accountTag: pulumi.Output; /** * Whether this integration is enabled. If disabled, no risk changes will be exported to the third-party. */ readonly active: pulumi.Output; /** * When the integration was created in RFC3339 format. */ readonly createdAt: pulumi.Output; /** * Available values: "Okta". */ readonly integrationType: pulumi.Output; /** * A reference id that can be supplied by the client. Currently this should be set to the Access-Okta IDP ID (a UUIDv4). * https://developers.cloudflare.com/api/operations/access-identity-providers-get-an-access-identity-provider */ readonly referenceId: pulumi.Output; /** * The base url of the tenant, e.g. "https://tenant.okta.com". */ readonly tenantUrl: pulumi.Output; /** * The URL for the Shared Signals Framework configuration, e.g. "/.well-known/sse-configuration/{integration*uuid}/". https://openid.net/specs/openid-sse-framework-1*0.html#rfc.section.6.2.1. */ readonly wellKnownUrl: pulumi.Output; /** * Create a ZeroTrustRiskScoringIntegration resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ZeroTrustRiskScoringIntegrationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustRiskScoringIntegration resources. */ export interface ZeroTrustRiskScoringIntegrationState { accountId?: pulumi.Input; /** * The Cloudflare account tag. */ accountTag?: pulumi.Input; /** * Whether this integration is enabled. If disabled, no risk changes will be exported to the third-party. */ active?: pulumi.Input; /** * When the integration was created in RFC3339 format. */ createdAt?: pulumi.Input; /** * Available values: "Okta". */ integrationType?: pulumi.Input; /** * A reference id that can be supplied by the client. Currently this should be set to the Access-Okta IDP ID (a UUIDv4). * https://developers.cloudflare.com/api/operations/access-identity-providers-get-an-access-identity-provider */ referenceId?: pulumi.Input; /** * The base url of the tenant, e.g. "https://tenant.okta.com". */ tenantUrl?: pulumi.Input; /** * The URL for the Shared Signals Framework configuration, e.g. "/.well-known/sse-configuration/{integration*uuid}/". https://openid.net/specs/openid-sse-framework-1*0.html#rfc.section.6.2.1. */ wellKnownUrl?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustRiskScoringIntegration resource. */ export interface ZeroTrustRiskScoringIntegrationArgs { accountId: pulumi.Input; /** * Whether this integration is enabled. If disabled, no risk changes will be exported to the third-party. */ active?: pulumi.Input; /** * Available values: "Okta". */ integrationType: pulumi.Input; /** * A reference id that can be supplied by the client. Currently this should be set to the Access-Okta IDP ID (a UUIDv4). * https://developers.cloudflare.com/api/operations/access-identity-providers-get-an-access-identity-provider */ referenceId?: pulumi.Input; /** * The base url of the tenant, e.g. "https://tenant.okta.com". */ tenantUrl: pulumi.Input; }