UNPKG

pulumi-fusionauth

Version:

A Pulumi package for managing FusionAuth instances.

58 lines 1.73 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getIdpOutput = exports.getIdp = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * ## # Application Resource * * [Identity Providers API](https://fusionauth.io/docs/v1/tech/apis/identity-providers/) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fusionauth from "@pulumi/fusionauth"; * * const fusionAuth = fusionauth.getIdp({ * name: "Apple", * type: "Apple", * }); * ``` */ function getIdp(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("fusionauth:index/getIdp:getIdp", { "name": args.name, "type": args.type, }, opts); } exports.getIdp = getIdp; /** * ## # Application Resource * * [Identity Providers API](https://fusionauth.io/docs/v1/tech/apis/identity-providers/) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fusionauth from "@pulumi/fusionauth"; * * const fusionAuth = fusionauth.getIdp({ * name: "Apple", * type: "Apple", * }); * ``` */ function getIdpOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("fusionauth:index/getIdp:getIdp", { "name": args.name, "type": args.type, }, opts); } exports.getIdpOutput = getIdpOutput; //# sourceMappingURL=getIdp.js.map