Show / Hide Table of Contents

Class VmfsDatastoreArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VmfsDatastoreArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.VSphere
Assembly: Pulumi.VSphere.dll
Syntax
public sealed class VmfsDatastoreArgs : ResourceArgs

Constructors

View Source

VmfsDatastoreArgs()

Declaration
public VmfsDatastoreArgs()

Properties

View Source

CustomAttributes

Map of custom attribute ids to attribute value string to set on datastore resource.

Declaration
public InputMap<string> CustomAttributes { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

DatastoreClusterId

The managed object ID of a datastore cluster to put this datastore in. Conflicts with folder.

Declaration
public Input<string> DatastoreClusterId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Disks

The disks to use with the datastore.

Declaration
public InputList<string> Disks { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Folder

The relative path to a folder to put this datastore in. This is a path relative to the datacenter you are deploying the datastore to. Example: for the dc1 datacenter, and a provided folder of foo/bar, The provider will place a datastore named test in a datastore folder located at /dc1/datastore/foo/bar, with the final inventory path being /dc1/datastore/foo/bar/test. Conflicts with datastore_cluster_id.

Declaration
public Input<string> Folder { get; set; }
Property Value
Type Description
Input<System.String>
View Source

HostSystemId

The managed object ID of the host to set the datastore up on. Note that this is not necessarily the only host that the datastore will be set up on - see here for more info. Forces a new resource if changed.

Declaration
public Input<string> HostSystemId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the datastore. Forces a new resource if changed.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

The IDs of any tags to attach to this resource.

Declaration
public InputList<string> Tags { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.