Nutanix v0.10.0 published on Monday, Sep 1, 2025 by Piers Karsenbarg
nutanix.getObjectStoreV2
Explore with Pulumi AI
Get an Object store for the provided UUID
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const example = nutanix.getObjectStoreV2({
extId: "95eb5f66-f547-4aea-9af8-b580e2060693",
});
import pulumi
import pulumi_nutanix as nutanix
example = nutanix.get_object_store_v2(ext_id="95eb5f66-f547-4aea-9af8-b580e2060693")
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.LookupObjectStoreV2(ctx, &nutanix.LookupObjectStoreV2Args{
ExtId: "95eb5f66-f547-4aea-9af8-b580e2060693",
}, 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 example = Nutanix.GetObjectStoreV2.Invoke(new()
{
ExtId = "95eb5f66-f547-4aea-9af8-b580e2060693",
});
});
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.GetObjectStoreV2Args;
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 example = NutanixFunctions.getObjectStoreV2(GetObjectStoreV2Args.builder()
.extId("95eb5f66-f547-4aea-9af8-b580e2060693")
.build());
}
}
variables:
example:
fn::invoke:
function: nutanix:getObjectStoreV2
arguments:
extId: 95eb5f66-f547-4aea-9af8-b580e2060693
Using getObjectStoreV2
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 getObjectStoreV2(args: GetObjectStoreV2Args, opts?: InvokeOptions): Promise<GetObjectStoreV2Result>
function getObjectStoreV2Output(args: GetObjectStoreV2OutputArgs, opts?: InvokeOptions): Output<GetObjectStoreV2Result>
def get_object_store_v2(ext_id: Optional[str] = None,
num_worker_nodes: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetObjectStoreV2Result
def get_object_store_v2_output(ext_id: Optional[pulumi.Input[str]] = None,
num_worker_nodes: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetObjectStoreV2Result]
func LookupObjectStoreV2(ctx *Context, args *LookupObjectStoreV2Args, opts ...InvokeOption) (*LookupObjectStoreV2Result, error)
func LookupObjectStoreV2Output(ctx *Context, args *LookupObjectStoreV2OutputArgs, opts ...InvokeOption) LookupObjectStoreV2ResultOutput
> Note: This function is named LookupObjectStoreV2
in the Go SDK.
public static class GetObjectStoreV2
{
public static Task<GetObjectStoreV2Result> InvokeAsync(GetObjectStoreV2Args args, InvokeOptions? opts = null)
public static Output<GetObjectStoreV2Result> Invoke(GetObjectStoreV2InvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetObjectStoreV2Result> getObjectStoreV2(GetObjectStoreV2Args args, InvokeOptions options)
public static Output<GetObjectStoreV2Result> getObjectStoreV2(GetObjectStoreV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getObjectStoreV2:getObjectStoreV2
arguments:
# arguments dictionary
The following arguments are supported:
- Ext
Id string - -(Required) The UUID of the Object store.
- Num
Worker intNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- Ext
Id string - -(Required) The UUID of the Object store.
- Num
Worker intNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- ext
Id String - -(Required) The UUID of the Object store.
- num
Worker IntegerNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- ext
Id string - -(Required) The UUID of the Object store.
- num
Worker numberNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- ext_
id str - -(Required) The UUID of the Object store.
- num_
worker_ intnodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- ext
Id String - -(Required) The UUID of the Object store.
- num
Worker NumberNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
getObjectStoreV2 Result
The following output properties are available:
- Certificate
Ext List<string>Ids - A list of the UUIDs of the certificates of an Object store.
- Cluster
Ext stringId - UUID of the AHV or ESXi cluster.
- Creation
Time string - The time when the Object store was created.
- Deployment
Version string - The deployment version of the Object store.
- Description string
- A brief description of the Object store.
- Domain string
- The DNS domain/subdomain the Object store belongs to. All the Object stores under one Prism Central must have the same domain name. The domain name must consist of at least 2 parts separated by a '.'. Each part can contain upper and lower case letters, digits, hyphens, or underscores. Each part can be up to 63 characters long. The domain must begin and end with an alphanumeric character. For example - 'objects-0.pc_nutanix.com'.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Update stringTime - The time when the Object store was last updated.
- Links
List<Piers
Karsenbarg. Nutanix. Outputs. Get Object Store 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.
- Metadatas
List<Piers
Karsenbarg. Nutanix. Outputs. Get Object Store V2Metadata> - Metadata associated with this resource.
- Name string
- The name of the Object store.
- Num
Worker intNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- Public
Network List<PiersIps Karsenbarg. Nutanix. Outputs. Get Object Store V2Public Network Ip> - A list of static IP addresses used as public IPs to access the Object store.
- Public
Network stringReference - Public network reference of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- Region string
- The region in which the Object store is deployed.
- State string
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
DEPLOYING_OBJECT_STORE
| The Object store is being deployed. | |OBJECT_STORE_DEPLOYMENT_FAILED
| The Object store deployment has failed. | |DELETING_OBJECT_STORE
| A deployed Object store is being deleted. | |OBJECT_STORE_OPERATION_FAILED
| There was an error while performing an operation on the Object store. | |UNDEPLOYED_OBJECT_STORE
| The Object store is not deployed. | |OBJECT_STORE_OPERATION_PENDING
| There is an ongoing operation on the Object store. | |OBJECT_STORE_AVAILABLE
| There are no ongoing operations on the deployed Object store. | |OBJECT_STORE_CERT_CREATION_FAILED
| Creating the Object store certificate has failed. | |CREATING_OBJECT_STORE_CERT
| A certificate is being created for the Object store. | |OBJECT_STORE_DELETION_FAILED
| There was an error deleting the Object store. |
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
- Storage
Network List<PiersDns Ips Karsenbarg. Nutanix. Outputs. Get Object Store V2Storage Network Dns Ip> - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- Storage
Network stringReference - Reference to the Storage Network of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- Storage
Network List<PiersVips Karsenbarg. Nutanix. Outputs. Get Object Store V2Storage Network Vip> - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- 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).
- Total
Capacity intGib - Size of the Object store in GiB.
- Certificate
Ext []stringIds - A list of the UUIDs of the certificates of an Object store.
- Cluster
Ext stringId - UUID of the AHV or ESXi cluster.
- Creation
Time string - The time when the Object store was created.
- Deployment
Version string - The deployment version of the Object store.
- Description string
- A brief description of the Object store.
- Domain string
- The DNS domain/subdomain the Object store belongs to. All the Object stores under one Prism Central must have the same domain name. The domain name must consist of at least 2 parts separated by a '.'. Each part can contain upper and lower case letters, digits, hyphens, or underscores. Each part can be up to 63 characters long. The domain must begin and end with an alphanumeric character. For example - 'objects-0.pc_nutanix.com'.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Update stringTime - The time when the Object store was last updated.
- Links
[]Get
Object Store 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.
- Metadatas
[]Get
Object Store V2Metadata - Metadata associated with this resource.
- Name string
- The name of the Object store.
- Num
Worker intNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- Public
Network []GetIps Object Store V2Public Network Ip - A list of static IP addresses used as public IPs to access the Object store.
- Public
Network stringReference - Public network reference of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- Region string
- The region in which the Object store is deployed.
- State string
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
DEPLOYING_OBJECT_STORE
| The Object store is being deployed. | |OBJECT_STORE_DEPLOYMENT_FAILED
| The Object store deployment has failed. | |DELETING_OBJECT_STORE
| A deployed Object store is being deleted. | |OBJECT_STORE_OPERATION_FAILED
| There was an error while performing an operation on the Object store. | |UNDEPLOYED_OBJECT_STORE
| The Object store is not deployed. | |OBJECT_STORE_OPERATION_PENDING
| There is an ongoing operation on the Object store. | |OBJECT_STORE_AVAILABLE
| There are no ongoing operations on the deployed Object store. | |OBJECT_STORE_CERT_CREATION_FAILED
| Creating the Object store certificate has failed. | |CREATING_OBJECT_STORE_CERT
| A certificate is being created for the Object store. | |OBJECT_STORE_DELETION_FAILED
| There was an error deleting the Object store. |
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
- Storage
Network []GetDns Ips Object Store V2Storage Network Dns Ip - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- Storage
Network stringReference - Reference to the Storage Network of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- Storage
Network []GetVips Object Store V2Storage Network Vip - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- 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).
- Total
Capacity intGib - Size of the Object store in GiB.
- certificate
Ext List<String>Ids - A list of the UUIDs of the certificates of an Object store.
- cluster
Ext StringId - UUID of the AHV or ESXi cluster.
- creation
Time String - The time when the Object store was created.
- deployment
Version String - The deployment version of the Object store.
- description String
- A brief description of the Object store.
- domain String
- The DNS domain/subdomain the Object store belongs to. All the Object stores under one Prism Central must have the same domain name. The domain name must consist of at least 2 parts separated by a '.'. Each part can contain upper and lower case letters, digits, hyphens, or underscores. Each part can be up to 63 characters long. The domain must begin and end with an alphanumeric character. For example - 'objects-0.pc_nutanix.com'.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Update StringTime - The time when the Object store was last updated.
- links
List<Get
Object Store 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.
- metadatas
List<Get
Object Store V2Metadata> - Metadata associated with this resource.
- name String
- The name of the Object store.
- num
Worker IntegerNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- public
Network List<GetIps Object Store V2Public Network Ip> - A list of static IP addresses used as public IPs to access the Object store.
- public
Network StringReference - Public network reference of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- region String
- The region in which the Object store is deployed.
- state String
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
DEPLOYING_OBJECT_STORE
| The Object store is being deployed. | |OBJECT_STORE_DEPLOYMENT_FAILED
| The Object store deployment has failed. | |DELETING_OBJECT_STORE
| A deployed Object store is being deleted. | |OBJECT_STORE_OPERATION_FAILED
| There was an error while performing an operation on the Object store. | |UNDEPLOYED_OBJECT_STORE
| The Object store is not deployed. | |OBJECT_STORE_OPERATION_PENDING
| There is an ongoing operation on the Object store. | |OBJECT_STORE_AVAILABLE
| There are no ongoing operations on the deployed Object store. | |OBJECT_STORE_CERT_CREATION_FAILED
| Creating the Object store certificate has failed. | |CREATING_OBJECT_STORE_CERT
| A certificate is being created for the Object store. | |OBJECT_STORE_DELETION_FAILED
| There was an error deleting the Object store. |
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
- storage
Network List<GetDns Ips Object Store V2Storage Network Dns Ip> - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- storage
Network StringReference - Reference to the Storage Network of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- storage
Network List<GetVips Object Store V2Storage Network Vip> - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- 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).
- total
Capacity IntegerGib - Size of the Object store in GiB.
- certificate
Ext string[]Ids - A list of the UUIDs of the certificates of an Object store.
- cluster
Ext stringId - UUID of the AHV or ESXi cluster.
- creation
Time string - The time when the Object store was created.
- deployment
Version string - The deployment version of the Object store.
- description string
- A brief description of the Object store.
- domain string
- The DNS domain/subdomain the Object store belongs to. All the Object stores under one Prism Central must have the same domain name. The domain name must consist of at least 2 parts separated by a '.'. Each part can contain upper and lower case letters, digits, hyphens, or underscores. Each part can be up to 63 characters long. The domain must begin and end with an alphanumeric character. For example - 'objects-0.pc_nutanix.com'.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Update stringTime - The time when the Object store was last updated.
- links
Get
Object Store 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.
- metadatas
Get
Object Store V2Metadata[] - Metadata associated with this resource.
- name string
- The name of the Object store.
- num
Worker numberNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- public
Network GetIps Object Store V2Public Network Ip[] - A list of static IP addresses used as public IPs to access the Object store.
- public
Network stringReference - Public network reference of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- region string
- The region in which the Object store is deployed.
- state string
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
DEPLOYING_OBJECT_STORE
| The Object store is being deployed. | |OBJECT_STORE_DEPLOYMENT_FAILED
| The Object store deployment has failed. | |DELETING_OBJECT_STORE
| A deployed Object store is being deleted. | |OBJECT_STORE_OPERATION_FAILED
| There was an error while performing an operation on the Object store. | |UNDEPLOYED_OBJECT_STORE
| The Object store is not deployed. | |OBJECT_STORE_OPERATION_PENDING
| There is an ongoing operation on the Object store. | |OBJECT_STORE_AVAILABLE
| There are no ongoing operations on the deployed Object store. | |OBJECT_STORE_CERT_CREATION_FAILED
| Creating the Object store certificate has failed. | |CREATING_OBJECT_STORE_CERT
| A certificate is being created for the Object store. | |OBJECT_STORE_DELETION_FAILED
| There was an error deleting the Object store. |
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
- storage
Network GetDns Ips Object Store V2Storage Network Dns Ip[] - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- storage
Network stringReference - Reference to the Storage Network of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- storage
Network GetVips Object Store V2Storage Network Vip[] - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- 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).
- total
Capacity numberGib - Size of the Object store in GiB.
- certificate_
ext_ Sequence[str]ids - A list of the UUIDs of the certificates of an Object store.
- cluster_
ext_ strid - UUID of the AHV or ESXi cluster.
- creation_
time str - The time when the Object store was created.
- deployment_
version str - The deployment version of the Object store.
- description str
- A brief description of the Object store.
- domain str
- The DNS domain/subdomain the Object store belongs to. All the Object stores under one Prism Central must have the same domain name. The domain name must consist of at least 2 parts separated by a '.'. Each part can contain upper and lower case letters, digits, hyphens, or underscores. Each part can be up to 63 characters long. The domain must begin and end with an alphanumeric character. For example - 'objects-0.pc_nutanix.com'.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
update_ strtime - The time when the Object store was last updated.
- links
Sequence[Get
Object Store 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.
- metadatas
Sequence[Get
Object Store V2Metadata] - Metadata associated with this resource.
- name str
- The name of the Object store.
- num_
worker_ intnodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- public_
network_ Sequence[Getips Object Store V2Public Network Ip] - A list of static IP addresses used as public IPs to access the Object store.
- public_
network_ strreference - Public network reference of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- region str
- The region in which the Object store is deployed.
- state str
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
DEPLOYING_OBJECT_STORE
| The Object store is being deployed. | |OBJECT_STORE_DEPLOYMENT_FAILED
| The Object store deployment has failed. | |DELETING_OBJECT_STORE
| A deployed Object store is being deleted. | |OBJECT_STORE_OPERATION_FAILED
| There was an error while performing an operation on the Object store. | |UNDEPLOYED_OBJECT_STORE
| The Object store is not deployed. | |OBJECT_STORE_OPERATION_PENDING
| There is an ongoing operation on the Object store. | |OBJECT_STORE_AVAILABLE
| There are no ongoing operations on the deployed Object store. | |OBJECT_STORE_CERT_CREATION_FAILED
| Creating the Object store certificate has failed. | |CREATING_OBJECT_STORE_CERT
| A certificate is being created for the Object store. | |OBJECT_STORE_DELETION_FAILED
| There was an error deleting the Object store. |
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
- storage_
network_ Sequence[Getdns_ ips Object Store V2Storage Network Dns Ip] - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- storage_
network_ strreference - Reference to the Storage Network of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- storage_
network_ Sequence[Getvips Object Store V2Storage Network Vip] - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- 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).
- total_
capacity_ intgib - Size of the Object store in GiB.
- certificate
Ext List<String>Ids - A list of the UUIDs of the certificates of an Object store.
- cluster
Ext StringId - UUID of the AHV or ESXi cluster.
- creation
Time String - The time when the Object store was created.
- deployment
Version String - The deployment version of the Object store.
- description String
- A brief description of the Object store.
- domain String
- The DNS domain/subdomain the Object store belongs to. All the Object stores under one Prism Central must have the same domain name. The domain name must consist of at least 2 parts separated by a '.'. Each part can contain upper and lower case letters, digits, hyphens, or underscores. Each part can be up to 63 characters long. The domain must begin and end with an alphanumeric character. For example - 'objects-0.pc_nutanix.com'.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Update StringTime - The time when the Object store 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.
- metadatas List<Property Map>
- Metadata associated with this resource.
- name String
- The name of the Object store.
- num
Worker NumberNodes - The number of worker nodes (VMs) to be created for the Object store. Each worker node requires 10 vCPUs and 32 GiB of memory.
- public
Network List<Property Map>Ips - A list of static IP addresses used as public IPs to access the Object store.
- public
Network StringReference - Public network reference of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- region String
- The region in which the Object store is deployed.
- state String
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
DEPLOYING_OBJECT_STORE
| The Object store is being deployed. | |OBJECT_STORE_DEPLOYMENT_FAILED
| The Object store deployment has failed. | |DELETING_OBJECT_STORE
| A deployed Object store is being deleted. | |OBJECT_STORE_OPERATION_FAILED
| There was an error while performing an operation on the Object store. | |UNDEPLOYED_OBJECT_STORE
| The Object store is not deployed. | |OBJECT_STORE_OPERATION_PENDING
| There is an ongoing operation on the Object store. | |OBJECT_STORE_AVAILABLE
| There are no ongoing operations on the deployed Object store. | |OBJECT_STORE_CERT_CREATION_FAILED
| Creating the Object store certificate has failed. | |CREATING_OBJECT_STORE_CERT
| A certificate is being created for the Object store. | |OBJECT_STORE_DELETION_FAILED
| There was an error deleting the Object store. |
- Enum for the state of the Object store.
| Enum | Description |
|----------------------------------------|-----------------------------------------------------------------|
|
- storage
Network List<Property Map>Dns Ips - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- storage
Network StringReference - Reference to the Storage Network of the Object store. This is the subnet UUID for an AHV cluster or the IPAM name for an ESXi cluster.
- storage
Network List<Property Map>Vips - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- 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).
- total
Capacity NumberGib - Size of the Object store in GiB.
Supporting Types
GetObjectStoreV2Link
GetObjectStoreV2Metadata
- Category
Ids List<string> - A list of globally unique identifiers that represent all the categories the resource is associated with.
- Owner
Reference stringId - A globally unique identifier that represents the owner of this resource.
- Owner
User stringName - The userName of the owner of this resource.
- Project
Name string - The name of the project this resource belongs to.
- Project
Reference stringId - A globally unique identifier that represents the project this resource belongs to.
- Category
Ids []string - A list of globally unique identifiers that represent all the categories the resource is associated with.
- Owner
Reference stringId - A globally unique identifier that represents the owner of this resource.
- Owner
User stringName - The userName of the owner of this resource.
- Project
Name string - The name of the project this resource belongs to.
- Project
Reference stringId - A globally unique identifier that represents the project this resource belongs to.
- category
Ids List<String> - A list of globally unique identifiers that represent all the categories the resource is associated with.
- owner
Reference StringId - A globally unique identifier that represents the owner of this resource.
- owner
User StringName - The userName of the owner of this resource.
- project
Name String - The name of the project this resource belongs to.
- project
Reference StringId - A globally unique identifier that represents the project this resource belongs to.
- category
Ids string[] - A list of globally unique identifiers that represent all the categories the resource is associated with.
- owner
Reference stringId - A globally unique identifier that represents the owner of this resource.
- owner
User stringName - The userName of the owner of this resource.
- project
Name string - The name of the project this resource belongs to.
- project
Reference stringId - A globally unique identifier that represents the project this resource belongs to.
- category_
ids Sequence[str] - A list of globally unique identifiers that represent all the categories the resource is associated with.
- owner_
reference_ strid - A globally unique identifier that represents the owner of this resource.
- owner_
user_ strname - The userName of the owner of this resource.
- project_
name str - The name of the project this resource belongs to.
- project_
reference_ strid - A globally unique identifier that represents the project this resource belongs to.
- category
Ids List<String> - A list of globally unique identifiers that represent all the categories the resource is associated with.
- owner
Reference StringId - A globally unique identifier that represents the owner of this resource.
- owner
User StringName - The userName of the owner of this resource.
- project
Name String - The name of the project this resource belongs to.
- project
Reference StringId - A globally unique identifier that represents the project this resource belongs to.
GetObjectStoreV2PublicNetworkIp
- Ipv4
Piers
Karsenbarg. Nutanix. Inputs. Get Object Store V2Public Network Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6
Piers
Karsenbarg. Nutanix. Inputs. Get Object Store V2Public Network Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4
Get
Object Store V2Public Network Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6
Get
Object Store V2Public Network Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Public Network Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Public Network Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Public Network Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Public Network Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Public Network Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Public Network Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4 Property Map
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6 Property Map
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetObjectStoreV2PublicNetworkIpIpv4
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value string
- The IPv4/IPv6 address of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value str
- The IPv4/IPv6 address of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
GetObjectStoreV2PublicNetworkIpIpv6
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value string
- The IPv4/IPv6 address of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value str
- The IPv4/IPv6 address of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
GetObjectStoreV2StorageNetworkDnsIp
- Ipv4
Piers
Karsenbarg. Nutanix. Inputs. Get Object Store V2Storage Network Dns Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6
Piers
Karsenbarg. Nutanix. Inputs. Get Object Store V2Storage Network Dns Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4
Get
Object Store V2Storage Network Dns Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6
Get
Object Store V2Storage Network Dns Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Storage Network Dns Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Storage Network Dns Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Storage Network Dns Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Storage Network Dns Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Storage Network Dns Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Storage Network Dns Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4 Property Map
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6 Property Map
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetObjectStoreV2StorageNetworkDnsIpIpv4
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value string
- The IPv4/IPv6 address of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value str
- The IPv4/IPv6 address of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
GetObjectStoreV2StorageNetworkDnsIpIpv6
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value string
- The IPv4/IPv6 address of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value str
- The IPv4/IPv6 address of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
GetObjectStoreV2StorageNetworkVip
- Ipv4
Piers
Karsenbarg. Nutanix. Inputs. Get Object Store V2Storage Network Vip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6
Piers
Karsenbarg. Nutanix. Inputs. Get Object Store V2Storage Network Vip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4
Get
Object Store V2Storage Network Vip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6
Get
Object Store V2Storage Network Vip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Storage Network Vip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Storage Network Vip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Storage Network Vip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Storage Network Vip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4
Get
Object Store V2Storage Network Vip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6
Get
Object Store V2Storage Network Vip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4 Property Map
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6 Property Map
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetObjectStoreV2StorageNetworkVipIpv4
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value string
- The IPv4/IPv6 address of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value str
- The IPv4/IPv6 address of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
GetObjectStoreV2StorageNetworkVipIpv6
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- Value string
- The IPv4/IPv6 address of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value string
- The IPv4/IPv6 address of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value str
- The IPv4/IPv6 address of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
- value String
- The IPv4/IPv6 address of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4 address belongs. Default for IPv4 is 32 and for IPv6 is 128.
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.