UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

72 lines 2.59 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getAuthenticationSequenceListOutput = exports.getAuthenticationSequenceList = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Retrieves a listing of config items. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const allSequences = scm.getAuthenticationSequenceList({ * limit: 10, * folder: "All", * }); * export const fetchedSequenceListSummary = { * countOfSequencesFetched: allSequences.then(allSequences => allSequences.total), * firstRuleName: allSequences.then(allSequences => allSequences.datas?.[0]?.name), * }; * ``` */ function getAuthenticationSequenceList(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scm:index/getAuthenticationSequenceList:getAuthenticationSequenceList", { "device": args.device, "folder": args.folder, "limit": args.limit, "name": args.name, "offset": args.offset, "snippet": args.snippet, }, opts); } exports.getAuthenticationSequenceList = getAuthenticationSequenceList; /** * Retrieves a listing of config items. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const allSequences = scm.getAuthenticationSequenceList({ * limit: 10, * folder: "All", * }); * export const fetchedSequenceListSummary = { * countOfSequencesFetched: allSequences.then(allSequences => allSequences.total), * firstRuleName: allSequences.then(allSequences => allSequences.datas?.[0]?.name), * }; * ``` */ function getAuthenticationSequenceListOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scm:index/getAuthenticationSequenceList:getAuthenticationSequenceList", { "device": args.device, "folder": args.folder, "limit": args.limit, "name": args.name, "offset": args.offset, "snippet": args.snippet, }, opts); } exports.getAuthenticationSequenceListOutput = getAuthenticationSequenceListOutput; //# sourceMappingURL=getAuthenticationSequenceList.js.map