upcloud.Tag
Explore with Pulumi AI
This resource is deprecated, use tags schema in server resource
Create Tag Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Tag(name: string, args?: TagArgs, opts?: CustomResourceOptions);
@overload
def Tag(resource_name: str,
args: Optional[TagArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Tag(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
servers: Optional[Sequence[str]] = None)
func NewTag(ctx *Context, name string, args *TagArgs, opts ...ResourceOption) (*Tag, error)
public Tag(string name, TagArgs? args = null, CustomResourceOptions? opts = null)
type: upcloud:Tag
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var tagResource = new UpCloud.Tag("tagResource", new()
{
Description = "string",
Name = "string",
Servers = new[]
{
"string",
},
});
example, err := upcloud.NewTag(ctx, "tagResource", &upcloud.TagArgs{
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Servers: pulumi.StringArray{
pulumi.String("string"),
},
})
var tagResource = new Tag("tagResource", TagArgs.builder()
.description("string")
.name("string")
.servers("string")
.build());
tag_resource = upcloud.Tag("tagResource",
description="string",
name="string",
servers=["string"])
const tagResource = new upcloud.Tag("tagResource", {
description: "string",
name: "string",
servers: ["string"],
});
type: upcloud:Tag
properties:
description: string
name: string
servers:
- string
Tag Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Tag resource accepts the following input properties:
- Description string
- Free form text representing the meaning of the tag
- Name string
- The value representing the tag
- Servers List<string>
- A collection of servers that have been assigned the tag
- Description string
- Free form text representing the meaning of the tag
- Name string
- The value representing the tag
- Servers []string
- A collection of servers that have been assigned the tag
- description String
- Free form text representing the meaning of the tag
- name String
- The value representing the tag
- servers List<String>
- A collection of servers that have been assigned the tag
- description string
- Free form text representing the meaning of the tag
- name string
- The value representing the tag
- servers string[]
- A collection of servers that have been assigned the tag
- description str
- Free form text representing the meaning of the tag
- name str
- The value representing the tag
- servers Sequence[str]
- A collection of servers that have been assigned the tag
- description String
- Free form text representing the meaning of the tag
- name String
- The value representing the tag
- servers List<String>
- A collection of servers that have been assigned the tag
Outputs
All input properties are implicitly available as output properties. Additionally, the Tag resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Tag Resource
Get an existing Tag resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TagState, opts?: CustomResourceOptions): Tag
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
servers: Optional[Sequence[str]] = None) -> Tag
func GetTag(ctx *Context, name string, id IDInput, state *TagState, opts ...ResourceOption) (*Tag, error)
public static Tag Get(string name, Input<string> id, TagState? state, CustomResourceOptions? opts = null)
public static Tag get(String name, Output<String> id, TagState state, CustomResourceOptions options)
resources: _: type: upcloud:Tag get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- Free form text representing the meaning of the tag
- Name string
- The value representing the tag
- Servers List<string>
- A collection of servers that have been assigned the tag
- Description string
- Free form text representing the meaning of the tag
- Name string
- The value representing the tag
- Servers []string
- A collection of servers that have been assigned the tag
- description String
- Free form text representing the meaning of the tag
- name String
- The value representing the tag
- servers List<String>
- A collection of servers that have been assigned the tag
- description string
- Free form text representing the meaning of the tag
- name string
- The value representing the tag
- servers string[]
- A collection of servers that have been assigned the tag
- description str
- Free form text representing the meaning of the tag
- name str
- The value representing the tag
- servers Sequence[str]
- A collection of servers that have been assigned the tag
- description String
- Free form text representing the meaning of the tag
- name String
- The value representing the tag
- servers List<String>
- A collection of servers that have been assigned the tag
Package Details
- Repository
- upcloud UpCloudLtd/pulumi-upcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
upcloud
Terraform Provider.