1. Packages
  2. Nutanix
  3. API Docs
  4. RolesV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.RolesV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

    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:

    DisplayName string
    -(Required) The display name for the Role.
    Operations List<string>
    -(Required) List of operations for the role.
    ClientName string
    • Client that created the entity.
    Description string
    • Description of the Role.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    DisplayName string
    -(Required) The display name for the Role.
    Operations []string
    -(Required) List of operations for the role.
    ClientName string
    • Client that created the entity.
    Description string
    • Description of the Role.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    displayName String
    -(Required) The display name for the Role.
    operations List<String>
    -(Required) List of operations for the role.
    clientName String
    • Client that created the entity.
    description String
    • Description of the Role.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    displayName string
    -(Required) The display name for the Role.
    operations string[]
    -(Required) List of operations for the role.
    clientName string
    • Client that created the entity.
    description string
    • Description of the Role.
    extId 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.
    displayName String
    -(Required) The display name for the Role.
    operations List<String>
    -(Required) List of operations for the role.
    clientName String
    • Client that created the entity.
    description String
    • Description of the Role.
    extId 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:

    AccessibleClients List<string>
    • List of Accessible Clients for the Role.
    AccessibleEntityTypes List<string>
    • List of Accessible Entity Types for the Role.
    AssignedUsersCount int
    • Number of Users assigned to given Role.
    AssignedUsersGroupsCount int
    • Number of User Groups assigned to given Role.
    CreatedBy string
    • User or Service Name that created the Role.
    CreatedTime string
    • The creation time of the Role.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsSystemDefined bool
    • Flag identifying if the Role is system defined or not.
    LastUpdatedTime string
    • The time when the Role was last updated.
    Links List<PiersKarsenbarg.Nutanix.Outputs.RolesV2Link>
    • 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.
    TenantId 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).
    AccessibleClients []string
    • List of Accessible Clients for the Role.
    AccessibleEntityTypes []string
    • List of Accessible Entity Types for the Role.
    AssignedUsersCount int
    • Number of Users assigned to given Role.
    AssignedUsersGroupsCount int
    • Number of User Groups assigned to given Role.
    CreatedBy string
    • User or Service Name that created the Role.
    CreatedTime string
    • The creation time of the Role.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsSystemDefined bool
    • Flag identifying if the Role is system defined or not.
    LastUpdatedTime string
    • The time when the Role was last updated.
    Links []RolesV2Link
    • 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.
    TenantId 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).
    accessibleClients List<String>
    • List of Accessible Clients for the Role.
    accessibleEntityTypes List<String>
    • List of Accessible Entity Types for the Role.
    assignedUsersCount Integer
    • Number of Users assigned to given Role.
    assignedUsersGroupsCount Integer
    • Number of User Groups assigned to given Role.
    createdBy String
    • User or Service Name that created the Role.
    createdTime String
    • The creation time of the Role.
    id String
    The provider-assigned unique ID for this managed resource.
    isSystemDefined Boolean
    • Flag identifying if the Role is system defined or not.
    lastUpdatedTime String
    • The time when the Role was last updated.
    links List<RolesV2Link>
    • 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.
    tenantId 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).
    accessibleClients string[]
    • List of Accessible Clients for the Role.
    accessibleEntityTypes string[]
    • List of Accessible Entity Types for the Role.
    assignedUsersCount number
    • Number of Users assigned to given Role.
    assignedUsersGroupsCount number
    • Number of User Groups assigned to given Role.
    createdBy string
    • User or Service Name that created the Role.
    createdTime string
    • The creation time of the Role.
    id string
    The provider-assigned unique ID for this managed resource.
    isSystemDefined boolean
    • Flag identifying if the Role is system defined or not.
    lastUpdatedTime string
    • The time when the Role was last updated.
    links RolesV2Link[]
    • 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.
    tenantId 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_types Sequence[str]
    • List of Accessible Entity Types for the Role.
    assigned_users_count int
    • Number of Users assigned to given Role.
    assigned_users_groups_count int
    • 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_defined bool
    • Flag identifying if the Role is system defined or not.
    last_updated_time str
    • The time when the Role was last updated.
    links Sequence[RolesV2Link]
    • 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).
    accessibleClients List<String>
    • List of Accessible Clients for the Role.
    accessibleEntityTypes List<String>
    • List of Accessible Entity Types for the Role.
    assignedUsersCount Number
    • Number of Users assigned to given Role.
    assignedUsersGroupsCount Number
    • Number of User Groups assigned to given Role.
    createdBy String
    • User or Service Name that created the Role.
    createdTime String
    • The creation time of the Role.
    id String
    The provider-assigned unique ID for this managed resource.
    isSystemDefined Boolean
    • Flag identifying if the Role is system defined or not.
    lastUpdatedTime String
    • 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.
    tenantId 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.
    The following state arguments are supported:
    AccessibleClients List<string>
    • List of Accessible Clients for the Role.
    AccessibleEntityTypes List<string>
    • List of Accessible Entity Types for the Role.
    AssignedUsersCount int
    • Number of Users assigned to given Role.
    AssignedUsersGroupsCount int
    • Number of User Groups assigned to given Role.
    ClientName string
    • Client that created the entity.
    CreatedBy string
    • User or Service Name that created the Role.
    CreatedTime string
    • The creation time of the Role.
    Description string
    • Description of the Role.
    DisplayName string
    -(Required) The display name for the Role.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    IsSystemDefined bool
    • Flag identifying if the Role is system defined or not.
    LastUpdatedTime string
    • The time when the Role was last updated.
    Links List<PiersKarsenbarg.Nutanix.Inputs.RolesV2Link>
    • 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.
    TenantId 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).
    AccessibleClients []string
    • List of Accessible Clients for the Role.
    AccessibleEntityTypes []string
    • List of Accessible Entity Types for the Role.
    AssignedUsersCount int
    • Number of Users assigned to given Role.
    AssignedUsersGroupsCount int
    • Number of User Groups assigned to given Role.
    ClientName string
    • Client that created the entity.
    CreatedBy string
    • User or Service Name that created the Role.
    CreatedTime string
    • The creation time of the Role.
    Description string
    • Description of the Role.
    DisplayName string
    -(Required) The display name for the Role.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    IsSystemDefined bool
    • Flag identifying if the Role is system defined or not.
    LastUpdatedTime string
    • The time when the Role was last updated.
    Links []RolesV2LinkArgs
    • 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.
    TenantId 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).
    accessibleClients List<String>
    • List of Accessible Clients for the Role.
    accessibleEntityTypes List<String>
    • List of Accessible Entity Types for the Role.
    assignedUsersCount Integer
    • Number of Users assigned to given Role.
    assignedUsersGroupsCount Integer
    • Number of User Groups assigned to given Role.
    clientName String
    • Client that created the entity.
    createdBy String
    • User or Service Name that created the Role.
    createdTime String
    • The creation time of the Role.
    description String
    • Description of the Role.
    displayName String
    -(Required) The display name for the Role.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    isSystemDefined Boolean
    • Flag identifying if the Role is system defined or not.
    lastUpdatedTime String
    • The time when the Role was last updated.
    links List<RolesV2Link>
    • 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.
    tenantId 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).
    accessibleClients string[]
    • List of Accessible Clients for the Role.
    accessibleEntityTypes string[]
    • List of Accessible Entity Types for the Role.
    assignedUsersCount number
    • Number of Users assigned to given Role.
    assignedUsersGroupsCount number
    • Number of User Groups assigned to given Role.
    clientName string
    • Client that created the entity.
    createdBy string
    • User or Service Name that created the Role.
    createdTime string
    • The creation time of the Role.
    description string
    • Description of the Role.
    displayName string
    -(Required) The display name for the Role.
    extId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    isSystemDefined boolean
    • Flag identifying if the Role is system defined or not.
    lastUpdatedTime string
    • The time when the Role was last updated.
    links RolesV2Link[]
    • 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.
    tenantId 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_types Sequence[str]
    • List of Accessible Entity Types for the Role.
    assigned_users_count int
    • Number of Users assigned to given Role.
    assigned_users_groups_count int
    • 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_defined bool
    • Flag identifying if the Role is system defined or not.
    last_updated_time str
    • The time when the Role was last updated.
    links Sequence[RolesV2LinkArgs]
    • 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).
    accessibleClients List<String>
    • List of Accessible Clients for the Role.
    accessibleEntityTypes List<String>
    • List of Accessible Entity Types for the Role.
    assignedUsersCount Number
    • Number of Users assigned to given Role.
    assignedUsersGroupsCount Number
    • Number of User Groups assigned to given Role.
    clientName String
    • Client that created the entity.
    createdBy String
    • User or Service Name that created the Role.
    createdTime String
    • The creation time of the Role.
    description String
    • Description of the Role.
    displayName String
    -(Required) The display name for the Role.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    isSystemDefined Boolean
    • Flag identifying if the Role is system defined or not.
    lastUpdatedTime String
    • 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.
    tenantId 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

    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href string
    • The URL at which the entity described by the link can be accessed.
    rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href str
    • The URL at which the entity described by the link can be accessed.
    rel str
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg