UNPKG

@upcloud/pulumi-upcloud

Version:

A Pulumi package for creating and managing UpCloud resources.

25 lines (24 loc) 955 B
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * > Consider using labels instead of tags. Tags are an access control feature and only available for a limited set of resources. Use labels to describe and filter your resources. * * Data-source is deprecated. */ export declare function getTags(opts?: pulumi.InvokeOptions): Promise<GetTagsResult>; /** * A collection of values returned by getTags. */ export interface GetTagsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly tags: outputs.GetTagsTag[]; } /** * > Consider using labels instead of tags. Tags are an access control feature and only available for a limited set of resources. Use labels to describe and filter your resources. * * Data-source is deprecated. */ export declare function getTagsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTagsResult>;