UNPKG

@natzka-oss/pulumi-netbox

Version:

A Pulumi package for creating and managing Netbox cloud resources.

29 lines (28 loc) 916 B
import * as pulumi from "@pulumi/pulumi"; export declare function getTenantGroup(args: GetTenantGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetTenantGroupResult>; /** * A collection of arguments for invoking getTenantGroup. */ export interface GetTenantGroupArgs { name: string; } /** * A collection of values returned by getTenantGroup. */ export interface GetTenantGroupResult { readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly parentId: number; readonly slug: string; } export declare function getTenantGroupOutput(args: GetTenantGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTenantGroupResult>; /** * A collection of arguments for invoking getTenantGroup. */ export interface GetTenantGroupOutputArgs { name: pulumi.Input<string>; }