zenduty.Invite
Explore with Pulumi AI
Create Invite Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Invite(name: string, args: InviteArgs, opts?: CustomResourceOptions);
@overload
def Invite(resource_name: str,
args: InviteArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Invite(resource_name: str,
opts: Optional[ResourceOptions] = None,
email_accounts: Optional[Sequence[InviteEmailAccountArgs]] = None,
team: Optional[str] = None,
invite_id: Optional[str] = None)
func NewInvite(ctx *Context, name string, args InviteArgs, opts ...ResourceOption) (*Invite, error)
public Invite(string name, InviteArgs args, CustomResourceOptions? opts = null)
public Invite(String name, InviteArgs args)
public Invite(String name, InviteArgs args, CustomResourceOptions options)
type: zenduty:Invite
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 InviteArgs
- 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 InviteArgs
- 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 InviteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InviteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InviteArgs
- 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 inviteResource = new Zenduty.Invite("inviteResource", new()
{
EmailAccounts = new[]
{
new Zenduty.Inputs.InviteEmailAccountArgs
{
Email = "string",
FirstName = "string",
LastName = "string",
Role = 0,
},
},
Team = "string",
InviteId = "string",
});
example, err := zenduty.NewInvite(ctx, "inviteResource", &zenduty.InviteArgs{
EmailAccounts: .InviteEmailAccountArray{
&.InviteEmailAccountArgs{
Email: pulumi.String("string"),
FirstName: pulumi.String("string"),
LastName: pulumi.String("string"),
Role: pulumi.Float64(0),
},
},
Team: pulumi.String("string"),
InviteId: pulumi.String("string"),
})
var inviteResource = new Invite("inviteResource", InviteArgs.builder()
.emailAccounts(InviteEmailAccountArgs.builder()
.email("string")
.firstName("string")
.lastName("string")
.role(0)
.build())
.team("string")
.inviteId("string")
.build());
invite_resource = zenduty.Invite("inviteResource",
email_accounts=[{
"email": "string",
"first_name": "string",
"last_name": "string",
"role": 0,
}],
team="string",
invite_id="string")
const inviteResource = new zenduty.Invite("inviteResource", {
emailAccounts: [{
email: "string",
firstName: "string",
lastName: "string",
role: 0,
}],
team: "string",
inviteId: "string",
});
type: zenduty:Invite
properties:
emailAccounts:
- email: string
firstName: string
lastName: string
role: 0
inviteId: string
team: string
Invite 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 Invite resource accepts the following input properties:
- Email
Accounts List<InviteEmail Account> - Team string
- Invite
Id string
- Email
Accounts []InviteEmail Account Args - Team string
- Invite
Id string
- email
Accounts List<InviteEmail Account> - team String
- invite
Id String
- email
Accounts InviteEmail Account[] - team string
- invite
Id string
- email
Accounts List<Property Map> - team String
- invite
Id String
Outputs
All input properties are implicitly available as output properties. Additionally, the Invite 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 Invite Resource
Get an existing Invite 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?: InviteState, opts?: CustomResourceOptions): Invite
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
email_accounts: Optional[Sequence[InviteEmailAccountArgs]] = None,
invite_id: Optional[str] = None,
team: Optional[str] = None) -> Invite
func GetInvite(ctx *Context, name string, id IDInput, state *InviteState, opts ...ResourceOption) (*Invite, error)
public static Invite Get(string name, Input<string> id, InviteState? state, CustomResourceOptions? opts = null)
public static Invite get(String name, Output<String> id, InviteState state, CustomResourceOptions options)
resources: _: type: zenduty:Invite 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.
- Email
Accounts List<InviteEmail Account> - Invite
Id string - Team string
- Email
Accounts []InviteEmail Account Args - Invite
Id string - Team string
- email
Accounts List<InviteEmail Account> - invite
Id String - team String
- email
Accounts InviteEmail Account[] - invite
Id string - team string
- email
Accounts List<Property Map> - invite
Id String - team String
Supporting Types
InviteEmailAccount, InviteEmailAccountArgs
- email str
- first_
name str - last_
name str - role float
Package Details
- Repository
- zenduty zenduty/terraform-provider-zenduty
- License
- Notes
- This Pulumi package is based on the
zenduty
Terraform Provider.