LinkTag resource
Create LinkTag Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LinkTag(name: string, args?: LinkTagArgs, opts?: CustomResourceOptions);@overload
def LinkTag(resource_name: str,
args: Optional[LinkTagArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def LinkTag(resource_name: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None)func NewLinkTag(ctx *Context, name string, args *LinkTagArgs, opts ...ResourceOption) (*LinkTag, error)public LinkTag(string name, LinkTagArgs? args = null, CustomResourceOptions? opts = null)
public LinkTag(String name, LinkTagArgs args)
public LinkTag(String name, LinkTagArgs args, CustomResourceOptions options)
type: scm:LinkTag
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 LinkTagArgs
- 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 LinkTagArgs
- 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 LinkTagArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LinkTagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LinkTagArgs
- 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 linkTagResource = new Scm.LinkTag("linkTagResource", new()
{
Color = "string",
Comments = "string",
Device = "string",
Folder = "string",
Name = "string",
Snippet = "string",
});
example, err := scm.NewLinkTag(ctx, "linkTagResource", &scm.LinkTagArgs{
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Name: pulumi.String("string"),
Snippet: pulumi.String("string"),
})
var linkTagResource = new LinkTag("linkTagResource", LinkTagArgs.builder()
.color("string")
.comments("string")
.device("string")
.folder("string")
.name("string")
.snippet("string")
.build());
link_tag_resource = scm.LinkTag("linkTagResource",
color="string",
comments="string",
device="string",
folder="string",
name="string",
snippet="string")
const linkTagResource = new scm.LinkTag("linkTagResource", {
color: "string",
comments: "string",
device: "string",
folder: "string",
name: "string",
snippet: "string",
});
type: scm:LinkTag
properties:
color: string
comments: string
device: string
folder: string
name: string
snippet: string
LinkTag 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 LinkTag resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the LinkTag resource produces the following output properties:
Look up Existing LinkTag Resource
Get an existing LinkTag 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?: LinkTagState, opts?: CustomResourceOptions): LinkTag@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None) -> LinkTagfunc GetLinkTag(ctx *Context, name string, id IDInput, state *LinkTagState, opts ...ResourceOption) (*LinkTag, error)public static LinkTag Get(string name, Input<string> id, LinkTagState? state, CustomResourceOptions? opts = null)public static LinkTag get(String name, Output<String> id, LinkTagState state, CustomResourceOptions options)resources: _: type: scm:LinkTag 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.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
