nutanix.RolesV2
Explore with Pulumi AI
Provides a resource to add a Role.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const example = new nutanix.RolesV2("example", {
description: "test description",
displayName: "{{ display-name }}",
operations: "{{ operations }}",
});
import pulumi
import pulumi_nutanix as nutanix
example = nutanix.RolesV2("example",
description="test description",
display_name="{{ display-name }}",
operations="{{ operations }}")
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nutanix.NewRolesV2(ctx, "example", &nutanix.RolesV2Args{
Description: pulumi.String("test description"),
DisplayName: pulumi.String("{{ display-name }}"),
Operations: pulumi.StringArray("{{ operations }}"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
var example = new Nutanix.RolesV2("example", new()
{
Description = "test description",
DisplayName = "{{ display-name }}",
Operations = "{{ operations }}",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.RolesV2;
import com.pulumi.nutanix.RolesV2Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new RolesV2("example", RolesV2Args.builder()
.description("test description")
.displayName("{{ display-name }}")
.operations("{{ operations }}")
.build());
}
}
resources:
example:
type: nutanix:RolesV2
properties:
description: test description
displayName: '{{ display-name }}'
operations: '{{ operations }}'
Create RolesV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RolesV2(name: string, args: RolesV2Args, opts?: CustomResourceOptions);
@overload
def RolesV2(resource_name: str,
args: RolesV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def RolesV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
operations: Optional[Sequence[str]] = None,
client_name: Optional[str] = None,
description: Optional[str] = None,
ext_id: Optional[str] = None)
func NewRolesV2(ctx *Context, name string, args RolesV2Args, opts ...ResourceOption) (*RolesV2, error)
public RolesV2(string name, RolesV2Args args, CustomResourceOptions? opts = null)
public RolesV2(String name, RolesV2Args args)
public RolesV2(String name, RolesV2Args args, CustomResourceOptions options)
type: nutanix:RolesV2
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 RolesV2Args
- 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 RolesV2Args
- 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 RolesV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RolesV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RolesV2Args
- 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 rolesV2Resource = new Nutanix.RolesV2("rolesV2Resource", new()
{
DisplayName = "string",
Operations = new[]
{
"string",
},
ClientName = "string",
Description = "string",
ExtId = "string",
});
example, err := nutanix.NewRolesV2(ctx, "rolesV2Resource", &nutanix.RolesV2Args{
DisplayName: pulumi.String("string"),
Operations: pulumi.StringArray{
pulumi.String("string"),
},
ClientName: pulumi.String("string"),
Description: pulumi.String("string"),
ExtId: pulumi.String("string"),
})
var rolesV2Resource = new RolesV2("rolesV2Resource", RolesV2Args.builder()
.displayName("string")
.operations("string")
.clientName("string")
.description("string")
.extId("string")
.build());
roles_v2_resource = nutanix.RolesV2("rolesV2Resource",
display_name="string",
operations=["string"],
client_name="string",
description="string",
ext_id="string")
const rolesV2Resource = new nutanix.RolesV2("rolesV2Resource", {
displayName: "string",
operations: ["string"],
clientName: "string",
description: "string",
extId: "string",
});
type: nutanix:RolesV2
properties:
clientName: string
description: string
displayName: string
extId: string
operations:
- string
RolesV2 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 RolesV2 resource accepts the following input properties:
- Display
Name string - -(Required) The display name for the Role.
- Operations List<string>
- -(Required) List of operations for the role.
- Client
Name string - Client that created the entity.
- Description string
- Description of the Role.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Display
Name string - -(Required) The display name for the Role.
- Operations []string
- -(Required) List of operations for the role.
- Client
Name string - Client that created the entity.
- Description string
- Description of the Role.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- display
Name String - -(Required) The display name for the Role.
- operations List<String>
- -(Required) List of operations for the role.
- client
Name String - Client that created the entity.
- description String
- Description of the Role.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- display
Name string - -(Required) The display name for the Role.
- operations string[]
- -(Required) List of operations for the role.
- client
Name string - Client that created the entity.
- description string
- Description of the Role.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- display_
name str - -(Required) The display name for the Role.
- operations Sequence[str]
- -(Required) List of operations for the role.
- client_
name str - Client that created the entity.
- description str
- Description of the Role.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- display
Name String - -(Required) The display name for the Role.
- operations List<String>
- -(Required) List of operations for the role.
- client
Name String - Client that created the entity.
- description String
- Description of the Role.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
Outputs
All input properties are implicitly available as output properties. Additionally, the RolesV2 resource produces the following output properties:
- Accessible
Clients List<string> - List of Accessible Clients for the Role.
- Accessible
Entity List<string>Types - List of Accessible Entity Types for the Role.
- Assigned
Users intCount - Number of Users assigned to given Role.
- Assigned
Users intGroups Count - Number of User Groups assigned to given Role.
- Created
By string - User or Service Name that created the Role.
- Created
Time string - The creation time of the Role.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
System boolDefined - Flag identifying if the Role is system defined or not.
- Last
Updated stringTime - The time when the Role was last updated.
- Links
List<Piers
Karsenbarg. Nutanix. Outputs. Roles V2Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Accessible
Clients []string - List of Accessible Clients for the Role.
- Accessible
Entity []stringTypes - List of Accessible Entity Types for the Role.
- Assigned
Users intCount - Number of Users assigned to given Role.
- Assigned
Users intGroups Count - Number of User Groups assigned to given Role.
- Created
By string - User or Service Name that created the Role.
- Created
Time string - The creation time of the Role.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
System boolDefined - Flag identifying if the Role is system defined or not.
- Last
Updated stringTime - The time when the Role was last updated.
- Links
[]Roles
V2Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible
Clients List<String> - List of Accessible Clients for the Role.
- accessible
Entity List<String>Types - List of Accessible Entity Types for the Role.
- assigned
Users IntegerCount - Number of Users assigned to given Role.
- assigned
Users IntegerGroups Count - Number of User Groups assigned to given Role.
- created
By String - User or Service Name that created the Role.
- created
Time String - The creation time of the Role.
- id String
- The provider-assigned unique ID for this managed resource.
- is
System BooleanDefined - Flag identifying if the Role is system defined or not.
- last
Updated StringTime - The time when the Role was last updated.
- links
List<Roles
V2Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible
Clients string[] - List of Accessible Clients for the Role.
- accessible
Entity string[]Types - List of Accessible Entity Types for the Role.
- assigned
Users numberCount - Number of Users assigned to given Role.
- assigned
Users numberGroups Count - Number of User Groups assigned to given Role.
- created
By string - User or Service Name that created the Role.
- created
Time string - The creation time of the Role.
- id string
- The provider-assigned unique ID for this managed resource.
- is
System booleanDefined - Flag identifying if the Role is system defined or not.
- last
Updated stringTime - The time when the Role was last updated.
- links
Roles
V2Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible_
clients Sequence[str] - List of Accessible Clients for the Role.
- accessible_
entity_ Sequence[str]types - List of Accessible Entity Types for the Role.
- assigned_
users_ intcount - Number of Users assigned to given Role.
- assigned_
users_ intgroups_ count - Number of User Groups assigned to given Role.
- created_
by str - User or Service Name that created the Role.
- created_
time str - The creation time of the Role.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
system_ booldefined - Flag identifying if the Role is system defined or not.
- last_
updated_ strtime - The time when the Role was last updated.
- links
Sequence[Roles
V2Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant_
id str - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible
Clients List<String> - List of Accessible Clients for the Role.
- accessible
Entity List<String>Types - List of Accessible Entity Types for the Role.
- assigned
Users NumberCount - Number of Users assigned to given Role.
- assigned
Users NumberGroups Count - Number of User Groups assigned to given Role.
- created
By String - User or Service Name that created the Role.
- created
Time String - The creation time of the Role.
- id String
- The provider-assigned unique ID for this managed resource.
- is
System BooleanDefined - Flag identifying if the Role is system defined or not.
- last
Updated StringTime - The time when the Role was last updated.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
Look up Existing RolesV2 Resource
Get an existing RolesV2 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?: RolesV2State, opts?: CustomResourceOptions): RolesV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accessible_clients: Optional[Sequence[str]] = None,
accessible_entity_types: Optional[Sequence[str]] = None,
assigned_users_count: Optional[int] = None,
assigned_users_groups_count: Optional[int] = None,
client_name: Optional[str] = None,
created_by: Optional[str] = None,
created_time: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
ext_id: Optional[str] = None,
is_system_defined: Optional[bool] = None,
last_updated_time: Optional[str] = None,
links: Optional[Sequence[RolesV2LinkArgs]] = None,
operations: Optional[Sequence[str]] = None,
tenant_id: Optional[str] = None) -> RolesV2
func GetRolesV2(ctx *Context, name string, id IDInput, state *RolesV2State, opts ...ResourceOption) (*RolesV2, error)
public static RolesV2 Get(string name, Input<string> id, RolesV2State? state, CustomResourceOptions? opts = null)
public static RolesV2 get(String name, Output<String> id, RolesV2State state, CustomResourceOptions options)
resources: _: type: nutanix:RolesV2 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.
- Accessible
Clients List<string> - List of Accessible Clients for the Role.
- Accessible
Entity List<string>Types - List of Accessible Entity Types for the Role.
- Assigned
Users intCount - Number of Users assigned to given Role.
- Assigned
Users intGroups Count - Number of User Groups assigned to given Role.
- Client
Name string - Client that created the entity.
- Created
By string - User or Service Name that created the Role.
- Created
Time string - The creation time of the Role.
- Description string
- Description of the Role.
- Display
Name string - -(Required) The display name for the Role.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Is
System boolDefined - Flag identifying if the Role is system defined or not.
- Last
Updated stringTime - The time when the Role was last updated.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Roles V2Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Operations List<string>
- -(Required) List of operations for the role.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Accessible
Clients []string - List of Accessible Clients for the Role.
- Accessible
Entity []stringTypes - List of Accessible Entity Types for the Role.
- Assigned
Users intCount - Number of Users assigned to given Role.
- Assigned
Users intGroups Count - Number of User Groups assigned to given Role.
- Client
Name string - Client that created the entity.
- Created
By string - User or Service Name that created the Role.
- Created
Time string - The creation time of the Role.
- Description string
- Description of the Role.
- Display
Name string - -(Required) The display name for the Role.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Is
System boolDefined - Flag identifying if the Role is system defined or not.
- Last
Updated stringTime - The time when the Role was last updated.
- Links
[]Roles
V2Link Args - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Operations []string
- -(Required) List of operations for the role.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible
Clients List<String> - List of Accessible Clients for the Role.
- accessible
Entity List<String>Types - List of Accessible Entity Types for the Role.
- assigned
Users IntegerCount - Number of Users assigned to given Role.
- assigned
Users IntegerGroups Count - Number of User Groups assigned to given Role.
- client
Name String - Client that created the entity.
- created
By String - User or Service Name that created the Role.
- created
Time String - The creation time of the Role.
- description String
- Description of the Role.
- display
Name String - -(Required) The display name for the Role.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- is
System BooleanDefined - Flag identifying if the Role is system defined or not.
- last
Updated StringTime - The time when the Role was last updated.
- links
List<Roles
V2Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- operations List<String>
- -(Required) List of operations for the role.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible
Clients string[] - List of Accessible Clients for the Role.
- accessible
Entity string[]Types - List of Accessible Entity Types for the Role.
- assigned
Users numberCount - Number of Users assigned to given Role.
- assigned
Users numberGroups Count - Number of User Groups assigned to given Role.
- client
Name string - Client that created the entity.
- created
By string - User or Service Name that created the Role.
- created
Time string - The creation time of the Role.
- description string
- Description of the Role.
- display
Name string - -(Required) The display name for the Role.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- is
System booleanDefined - Flag identifying if the Role is system defined or not.
- last
Updated stringTime - The time when the Role was last updated.
- links
Roles
V2Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- operations string[]
- -(Required) List of operations for the role.
- tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible_
clients Sequence[str] - List of Accessible Clients for the Role.
- accessible_
entity_ Sequence[str]types - List of Accessible Entity Types for the Role.
- assigned_
users_ intcount - Number of Users assigned to given Role.
- assigned_
users_ intgroups_ count - Number of User Groups assigned to given Role.
- client_
name str - Client that created the entity.
- created_
by str - User or Service Name that created the Role.
- created_
time str - The creation time of the Role.
- description str
- Description of the Role.
- display_
name str - -(Required) The display name for the Role.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- is_
system_ booldefined - Flag identifying if the Role is system defined or not.
- last_
updated_ strtime - The time when the Role was last updated.
- links
Sequence[Roles
V2Link Args] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- operations Sequence[str]
- -(Required) List of operations for the role.
- tenant_
id str - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- accessible
Clients List<String> - List of Accessible Clients for the Role.
- accessible
Entity List<String>Types - List of Accessible Entity Types for the Role.
- assigned
Users NumberCount - Number of Users assigned to given Role.
- assigned
Users NumberGroups Count - Number of User Groups assigned to given Role.
- client
Name String - Client that created the entity.
- created
By String - User or Service Name that created the Role.
- created
Time String - The creation time of the Role.
- description String
- Description of the Role.
- display
Name String - -(Required) The display name for the Role.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- is
System BooleanDefined - Flag identifying if the Role is system defined or not.
- last
Updated StringTime - The time when the Role was last updated.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- operations List<String>
- -(Required) List of operations for the role.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
Supporting Types
RolesV2Link, RolesV2LinkArgs
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.