UNPKG

@pulumi/scm

Version:

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

112 lines (111 loc) 3.4 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * GeneralSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getGeneralSetting({ * id: "f7e61db6-b03a-493b-a70d-da39ed2e21b0", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getGeneralSetting(args: GetGeneralSettingArgs, opts?: pulumi.InvokeOptions): Promise<GetGeneralSettingResult>; /** * A collection of arguments for invoking getGeneralSetting. */ export interface GetGeneralSettingArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * UUID of the resource */ id: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: string; } /** * A collection of values returned by getGeneralSetting. */ export interface GetGeneralSettingResult { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * General */ readonly general: outputs.GetGeneralSettingGeneral; /** * UUID of the resource */ readonly id: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; readonly tfid: string; } /** * GeneralSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getGeneralSetting({ * id: "f7e61db6-b03a-493b-a70d-da39ed2e21b0", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getGeneralSettingOutput(args: GetGeneralSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGeneralSettingResult>; /** * A collection of arguments for invoking getGeneralSetting. */ export interface GetGeneralSettingOutputArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: pulumi.Input<string>; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * UUID of the resource */ id: pulumi.Input<string>; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; }