zenduty.Priorities
Explore with Pulumi AI
Create Priorities Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Priorities(name: string, args: PrioritiesArgs, opts?: CustomResourceOptions);
@overload
def Priorities(resource_name: str,
args: PrioritiesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Priorities(resource_name: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
team_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
priorities_id: Optional[str] = None)
func NewPriorities(ctx *Context, name string, args PrioritiesArgs, opts ...ResourceOption) (*Priorities, error)
public Priorities(string name, PrioritiesArgs args, CustomResourceOptions? opts = null)
public Priorities(String name, PrioritiesArgs args)
public Priorities(String name, PrioritiesArgs args, CustomResourceOptions options)
type: zenduty:Priorities
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 PrioritiesArgs
- 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 PrioritiesArgs
- 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 PrioritiesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrioritiesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrioritiesArgs
- 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 prioritiesResource = new Zenduty.Priorities("prioritiesResource", new()
{
Color = "string",
TeamId = "string",
Description = "string",
Name = "string",
PrioritiesId = "string",
});
example, err := zenduty.NewPriorities(ctx, "prioritiesResource", &zenduty.PrioritiesArgs{
Color: pulumi.String("string"),
TeamId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
PrioritiesId: pulumi.String("string"),
})
var prioritiesResource = new Priorities("prioritiesResource", PrioritiesArgs.builder()
.color("string")
.teamId("string")
.description("string")
.name("string")
.prioritiesId("string")
.build());
priorities_resource = zenduty.Priorities("prioritiesResource",
color="string",
team_id="string",
description="string",
name="string",
priorities_id="string")
const prioritiesResource = new zenduty.Priorities("prioritiesResource", {
color: "string",
teamId: "string",
description: "string",
name: "string",
prioritiesId: "string",
});
type: zenduty:Priorities
properties:
color: string
description: string
name: string
prioritiesId: string
teamId: string
Priorities 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 Priorities resource accepts the following input properties:
- Color string
- Team
Id string - Description string
- Name string
- Priorities
Id string
- Color string
- Team
Id string - Description string
- Name string
- Priorities
Id string
- color String
- team
Id String - description String
- name String
- priorities
Id String
- color string
- team
Id string - description string
- name string
- priorities
Id string
- color str
- team_
id str - description str
- name str
- priorities_
id str
- color String
- team
Id String - description String
- name String
- priorities
Id String
Outputs
All input properties are implicitly available as output properties. Additionally, the Priorities 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 Priorities Resource
Get an existing Priorities 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?: PrioritiesState, opts?: CustomResourceOptions): Priorities
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
priorities_id: Optional[str] = None,
team_id: Optional[str] = None) -> Priorities
func GetPriorities(ctx *Context, name string, id IDInput, state *PrioritiesState, opts ...ResourceOption) (*Priorities, error)
public static Priorities Get(string name, Input<string> id, PrioritiesState? state, CustomResourceOptions? opts = null)
public static Priorities get(String name, Output<String> id, PrioritiesState state, CustomResourceOptions options)
resources: _: type: zenduty:Priorities 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.
- Color string
- Description string
- Name string
- Priorities
Id string - Team
Id string
- Color string
- Description string
- Name string
- Priorities
Id string - Team
Id string
- color String
- description String
- name String
- priorities
Id String - team
Id String
- color string
- description string
- name string
- priorities
Id string - team
Id string
- color str
- description str
- name str
- priorities_
id str - team_
id str
- color String
- description String
- name String
- priorities
Id String - team
Id String
Package Details
- Repository
- zenduty zenduty/terraform-provider-zenduty
- License
- Notes
- This Pulumi package is based on the
zenduty
Terraform Provider.