zenduty.TeamPermissions
Explore with Pulumi AI
Create TeamPermissions Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TeamPermissions(name: string, args: TeamPermissionsArgs, opts?: CustomResourceOptions);
@overload
def TeamPermissions(resource_name: str,
args: TeamPermissionsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TeamPermissions(resource_name: str,
opts: Optional[ResourceOptions] = None,
permissions: Optional[Sequence[str]] = None,
team_id: Optional[str] = None,
team_permissions_id: Optional[str] = None)
func NewTeamPermissions(ctx *Context, name string, args TeamPermissionsArgs, opts ...ResourceOption) (*TeamPermissions, error)
public TeamPermissions(string name, TeamPermissionsArgs args, CustomResourceOptions? opts = null)
public TeamPermissions(String name, TeamPermissionsArgs args)
public TeamPermissions(String name, TeamPermissionsArgs args, CustomResourceOptions options)
type: zenduty:TeamPermissions
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 TeamPermissionsArgs
- 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 TeamPermissionsArgs
- 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 TeamPermissionsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeamPermissionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TeamPermissionsArgs
- 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 teamPermissionsResource = new Zenduty.TeamPermissions("teamPermissionsResource", new()
{
Permissions = new[]
{
"string",
},
TeamId = "string",
TeamPermissionsId = "string",
});
example, err := zenduty.NewTeamPermissions(ctx, "teamPermissionsResource", &zenduty.TeamPermissionsArgs{
Permissions: pulumi.StringArray{
pulumi.String("string"),
},
TeamId: pulumi.String("string"),
TeamPermissionsId: pulumi.String("string"),
})
var teamPermissionsResource = new TeamPermissions("teamPermissionsResource", TeamPermissionsArgs.builder()
.permissions("string")
.teamId("string")
.teamPermissionsId("string")
.build());
team_permissions_resource = zenduty.TeamPermissions("teamPermissionsResource",
permissions=["string"],
team_id="string",
team_permissions_id="string")
const teamPermissionsResource = new zenduty.TeamPermissions("teamPermissionsResource", {
permissions: ["string"],
teamId: "string",
teamPermissionsId: "string",
});
type: zenduty:TeamPermissions
properties:
permissions:
- string
teamId: string
teamPermissionsId: string
TeamPermissions 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 TeamPermissions resource accepts the following input properties:
- Permissions List<string>
- Team
Id string - Team
Permissions stringId
- Permissions []string
- Team
Id string - Team
Permissions stringId
- permissions List<String>
- team
Id String - team
Permissions StringId
- permissions string[]
- team
Id string - team
Permissions stringId
- permissions Sequence[str]
- team_
id str - team_
permissions_ strid
- permissions List<String>
- team
Id String - team
Permissions StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the TeamPermissions 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 TeamPermissions Resource
Get an existing TeamPermissions 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?: TeamPermissionsState, opts?: CustomResourceOptions): TeamPermissions
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
permissions: Optional[Sequence[str]] = None,
team_id: Optional[str] = None,
team_permissions_id: Optional[str] = None) -> TeamPermissions
func GetTeamPermissions(ctx *Context, name string, id IDInput, state *TeamPermissionsState, opts ...ResourceOption) (*TeamPermissions, error)
public static TeamPermissions Get(string name, Input<string> id, TeamPermissionsState? state, CustomResourceOptions? opts = null)
public static TeamPermissions get(String name, Output<String> id, TeamPermissionsState state, CustomResourceOptions options)
resources: _: type: zenduty:TeamPermissions 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.
- Permissions List<string>
- Team
Id string - Team
Permissions stringId
- Permissions []string
- Team
Id string - Team
Permissions stringId
- permissions List<String>
- team
Id String - team
Permissions StringId
- permissions string[]
- team
Id string - team
Permissions stringId
- permissions Sequence[str]
- team_
id str - team_
permissions_ strid
- permissions List<String>
- team
Id String - team
Permissions StringId
Package Details
- Repository
- zenduty zenduty/terraform-provider-zenduty
- License
- Notes
- This Pulumi package is based on the
zenduty
Terraform Provider.