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

nutanix.getUsersV2

Explore with Pulumi AI

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

    Provides a datasource to retrieve all User(s).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pulumi/nutanix";
    
    const users = nutanix.getUsersV2({});
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    users = nutanix.get_users_v2()
    
    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.LookupUsersV2(ctx, &nutanix.LookupUsersV2Args{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = Pulumi.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var users = Nutanix.GetUsersV2.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.NutanixFunctions;
    import com.pulumi.nutanix.inputs.GetUsersV2Args;
    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) {
            final var users = NutanixFunctions.getUsersV2();
    
        }
    }
    
    variables:
      users:
        fn::invoke:
          function: nutanix:getUsersV2
          arguments: {}
    

    Argument Reference

    The following arguments are supported:

    • page: - A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    • limit : A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    • filter :A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example, filter ‘$filter=name eq ‘karbon-ntnx-1.0’ would filter the result on cluster name ‘karbon-ntnx1.0’, filter ‘$filter=startswith(name, ‘C’)’ would filter on cluster name starting with ‘C’. The filter can be applied to the following fields:
      • createdBy
      • displayName
      • emailId
      • extId
      • firstName
      • idpId
      • lastName
      • lastUpdatedBy
      • status
      • userType
      • username
    • orderby : A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. For example, ‘$orderby=templateName desc’ would get all templates sorted by templateName in descending order. The orderby can be applied to the following fields: * createdBy
      • createdTime
      • displayName
      • emailId
      • extId
      • firstName
      • lastLoginTime
      • lastName
      • lastUpdatedTime
      • userType
      • username
    • select : A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. following fields:
      • additionalAttributes
      • bucketsAccessKeys
      • createdBy
      • createdTime
      • displayName
      • emailId
      • extId
      • firstName
      • idpId
      • isForceResetPasswordEnabled
      • lastLoginTime
      • lastName
      • lastUpdatedBy
      • lastUpdatedTime
      • links
      • locale
      • middleInitial
      • region
      • status
      • tenantId
      • userType
      • username

    Using getUsersV2

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getUsersV2(args: GetUsersV2Args, opts?: InvokeOptions): Promise<GetUsersV2Result>
    function getUsersV2Output(args: GetUsersV2OutputArgs, opts?: InvokeOptions): Output<GetUsersV2Result>
    def get_users_v2(filter: Optional[str] = None,
                     limit: Optional[int] = None,
                     order_by: Optional[str] = None,
                     page: Optional[int] = None,
                     select: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetUsersV2Result
    def get_users_v2_output(filter: Optional[pulumi.Input[str]] = None,
                     limit: Optional[pulumi.Input[int]] = None,
                     order_by: Optional[pulumi.Input[str]] = None,
                     page: Optional[pulumi.Input[int]] = None,
                     select: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetUsersV2Result]
    func LookupUsersV2(ctx *Context, args *LookupUsersV2Args, opts ...InvokeOption) (*LookupUsersV2Result, error)
    func LookupUsersV2Output(ctx *Context, args *LookupUsersV2OutputArgs, opts ...InvokeOption) LookupUsersV2ResultOutput

    > Note: This function is named LookupUsersV2 in the Go SDK.

    public static class GetUsersV2 
    {
        public static Task<GetUsersV2Result> InvokeAsync(GetUsersV2Args args, InvokeOptions? opts = null)
        public static Output<GetUsersV2Result> Invoke(GetUsersV2InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUsersV2Result> getUsersV2(GetUsersV2Args args, InvokeOptions options)
    public static Output<GetUsersV2Result> getUsersV2(GetUsersV2Args args, InvokeOptions options)
    
    fn::invoke:
      function: nutanix:index/getUsersV2:getUsersV2
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filter string
    Limit int
    OrderBy string
    Page int
    Select string
    Filter string
    Limit int
    OrderBy string
    Page int
    Select string
    filter String
    limit Integer
    orderBy String
    page Integer
    select String
    filter string
    limit number
    orderBy string
    page number
    select string
    filter str
    limit int
    order_by str
    page int
    select str
    filter String
    limit Number
    orderBy String
    page Number
    select String

    getUsersV2 Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Users List<PiersKarsenbarg.Nutanix.Outputs.GetUsersV2User>
    List all User(s).
    Filter string
    Limit int
    OrderBy string
    Page int
    Select string
    Id string
    The provider-assigned unique ID for this managed resource.
    Users []GetUsersV2User
    List all User(s).
    Filter string
    Limit int
    OrderBy string
    Page int
    Select string
    id String
    The provider-assigned unique ID for this managed resource.
    users List<GetUsersV2User>
    List all User(s).
    filter String
    limit Integer
    orderBy String
    page Integer
    select String
    id string
    The provider-assigned unique ID for this managed resource.
    users GetUsersV2User[]
    List all User(s).
    filter string
    limit number
    orderBy string
    page number
    select string
    id str
    The provider-assigned unique ID for this managed resource.
    users Sequence[GetUsersV2User]
    List all User(s).
    filter str
    limit int
    order_by str
    page int
    select str
    id String
    The provider-assigned unique ID for this managed resource.
    users List<Property Map>
    List all User(s).
    filter String
    limit Number
    orderBy String
    page Number
    select String

    Supporting Types

    GetUsersV2User

    AdditionalAttributes List<PiersKarsenbarg.Nutanix.Inputs.GetUsersV2UserAdditionalAttribute>
    • Any additional attribute for the User.
    BucketsAccessKeys List<PiersKarsenbarg.Nutanix.Inputs.GetUsersV2UserBucketsAccessKey>
    • Bucket Access Keys for the User.
    CreatedBy string
    • User or Service who created the User.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    DisplayName string
    • Display name for the User.
    EmailId string
    • Email Id for the User.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    FirstName string
    • First name for the User.
    IdpId string
    • Identifier of the IDP for the User.
    IsForceResetPassword bool
    • Flag to force the User to reset password.
    LastLoginTime string
    • Last successful logged in time for the User.
    LastName string
    • Last name for the User.
    LastUpdatedBy string
    • Last updated by this User ID.
    LastUpdatedTime string
    • Last updated time of the User.
    Links List<PiersKarsenbarg.Nutanix.Inputs.GetUsersV2UserLink>
    • 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.
    Locale string
    • Default locale for the User.
    MiddleInitial string
    • Middle name for the User.
    Region string
    • Default Region for the User.
    Status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    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).
    UserType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    Username string
    • Identifier for the User in the form an email address.
    AdditionalAttributes []GetUsersV2UserAdditionalAttribute
    • Any additional attribute for the User.
    BucketsAccessKeys []GetUsersV2UserBucketsAccessKey
    • Bucket Access Keys for the User.
    CreatedBy string
    • User or Service who created the User.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    DisplayName string
    • Display name for the User.
    EmailId string
    • Email Id for the User.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    FirstName string
    • First name for the User.
    IdpId string
    • Identifier of the IDP for the User.
    IsForceResetPassword bool
    • Flag to force the User to reset password.
    LastLoginTime string
    • Last successful logged in time for the User.
    LastName string
    • Last name for the User.
    LastUpdatedBy string
    • Last updated by this User ID.
    LastUpdatedTime string
    • Last updated time of the User.
    Links []GetUsersV2UserLink
    • 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.
    Locale string
    • Default locale for the User.
    MiddleInitial string
    • Middle name for the User.
    Region string
    • Default Region for the User.
    Status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    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).
    UserType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    Username string
    • Identifier for the User in the form an email address.
    additionalAttributes List<GetUsersV2UserAdditionalAttribute>
    • Any additional attribute for the User.
    bucketsAccessKeys List<GetUsersV2UserBucketsAccessKey>
    • Bucket Access Keys for the User.
    createdBy String
    • User or Service who created the User.
    createdTime String
    • Creation time for the Bucket Access Key.
    displayName String
    • Display name for the User.
    emailId String
    • Email Id for the User.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    firstName String
    • First name for the User.
    idpId String
    • Identifier of the IDP for the User.
    isForceResetPassword Boolean
    • Flag to force the User to reset password.
    lastLoginTime String
    • Last successful logged in time for the User.
    lastName String
    • Last name for the User.
    lastUpdatedBy String
    • Last updated by this User ID.
    lastUpdatedTime String
    • Last updated time of the User.
    links List<GetUsersV2UserLink>
    • 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.
    locale String
    • Default locale for the User.
    middleInitial String
    • Middle name for the User.
    region String
    • Default Region for the User.
    status String
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    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).
    userType String
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username String
    • Identifier for the User in the form an email address.
    additionalAttributes GetUsersV2UserAdditionalAttribute[]
    • Any additional attribute for the User.
    bucketsAccessKeys GetUsersV2UserBucketsAccessKey[]
    • Bucket Access Keys for the User.
    createdBy string
    • User or Service who created the User.
    createdTime string
    • Creation time for the Bucket Access Key.
    displayName string
    • Display name for the User.
    emailId string
    • Email Id for the User.
    extId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    firstName string
    • First name for the User.
    idpId string
    • Identifier of the IDP for the User.
    isForceResetPassword boolean
    • Flag to force the User to reset password.
    lastLoginTime string
    • Last successful logged in time for the User.
    lastName string
    • Last name for the User.
    lastUpdatedBy string
    • Last updated by this User ID.
    lastUpdatedTime string
    • Last updated time of the User.
    links GetUsersV2UserLink[]
    • 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.
    locale string
    • Default locale for the User.
    middleInitial string
    • Middle name for the User.
    region string
    • Default Region for the User.
    status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    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).
    userType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username string
    • Identifier for the User in the form an email address.
    additional_attributes Sequence[GetUsersV2UserAdditionalAttribute]
    • Any additional attribute for the User.
    buckets_access_keys Sequence[GetUsersV2UserBucketsAccessKey]
    • Bucket Access Keys for the User.
    created_by str
    • User or Service who created the User.
    created_time str
    • Creation time for the Bucket Access Key.
    display_name str
    • Display name for the User.
    email_id str
    • Email Id for the User.
    ext_id str
    • A globally unique identifier of an instance that is suitable for external consumption.
    first_name str
    • First name for the User.
    idp_id str
    • Identifier of the IDP for the User.
    is_force_reset_password bool
    • Flag to force the User to reset password.
    last_login_time str
    • Last successful logged in time for the User.
    last_name str
    • Last name for the User.
    last_updated_by str
    • Last updated by this User ID.
    last_updated_time str
    • Last updated time of the User.
    links Sequence[GetUsersV2UserLink]
    • 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.
    locale str
    • Default locale for the User.
    middle_initial str
    • Middle name for the User.
    region str
    • Default Region for the User.
    status str
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    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).
    user_type str
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username str
    • Identifier for the User in the form an email address.
    additionalAttributes List<Property Map>
    • Any additional attribute for the User.
    bucketsAccessKeys List<Property Map>
    • Bucket Access Keys for the User.
    createdBy String
    • User or Service who created the User.
    createdTime String
    • Creation time for the Bucket Access Key.
    displayName String
    • Display name for the User.
    emailId String
    • Email Id for the User.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    firstName String
    • First name for the User.
    idpId String
    • Identifier of the IDP for the User.
    isForceResetPassword Boolean
    • Flag to force the User to reset password.
    lastLoginTime String
    • Last successful logged in time for the User.
    lastName String
    • Last name for the User.
    lastUpdatedBy String
    • Last updated by this User ID.
    lastUpdatedTime String
    • Last updated time of the User.
    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.
    locale String
    • Default locale for the User.
    middleInitial String
    • Middle name for the User.
    region String
    • Default Region for the User.
    status String
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    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).
    userType String
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username String
    • Identifier for the User in the form an email address.

    GetUsersV2UserAdditionalAttribute

    Name string
    • The URL at which the entity described by the link can be accessed.
    Value int
    • 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.
    Name string
    • The URL at which the entity described by the link can be accessed.
    Value int
    • 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.
    name String
    • The URL at which the entity described by the link can be accessed.
    value Integer
    • 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.
    name string
    • The URL at which the entity described by the link can be accessed.
    value number
    • 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.
    name str
    • The URL at which the entity described by the link can be accessed.
    value int
    • 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.
    name String
    • The URL at which the entity described by the link can be accessed.
    value Number
    • 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.

    GetUsersV2UserBucketsAccessKey

    AccessKeyName string
    • Name of the Bucket Access Key.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    Links List<PiersKarsenbarg.Nutanix.Inputs.GetUsersV2UserBucketsAccessKeyLink>
    • 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.
    SecretAccessKey string
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    UserId string
    • User Identifier who owns the Bucket Access Key.
    AccessKeyName string
    • Name of the Bucket Access Key.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    Links []GetUsersV2UserBucketsAccessKeyLink
    • 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.
    SecretAccessKey string
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    UserId string
    • User Identifier who owns the Bucket Access Key.
    accessKeyName String
    • Name of the Bucket Access Key.
    createdTime String
    • Creation time for the Bucket Access Key.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    links List<GetUsersV2UserBucketsAccessKeyLink>
    • 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.
    secretAccessKey String
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    userId String
    • User Identifier who owns the Bucket Access Key.
    accessKeyName string
    • Name of the Bucket Access Key.
    createdTime string
    • Creation time for the Bucket Access Key.
    extId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    links GetUsersV2UserBucketsAccessKeyLink[]
    • 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.
    secretAccessKey string
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    userId string
    • User Identifier who owns the Bucket Access Key.
    access_key_name str
    • Name of the Bucket Access Key.
    created_time str
    • Creation time for the Bucket Access Key.
    ext_id str
    • A globally unique identifier of an instance that is suitable for external consumption.
    links Sequence[GetUsersV2UserBucketsAccessKeyLink]
    • 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.
    secret_access_key str
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    user_id str
    • User Identifier who owns the Bucket Access Key.
    accessKeyName String
    • Name of the Bucket Access Key.
    createdTime String
    • Creation time for the Bucket Access Key.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    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.
    secretAccessKey String
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    userId String
    • User Identifier who owns the Bucket Access Key.
    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.
    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