netapp

package
v1.8.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 12, 2019 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Account

type Account struct {
	// contains filtered or unexported fields
}

Manages a NetApp Account.

> **NOTE:** Azure allows only one active directory can be joined to a single subscription at a time for NetApp Account.

> This content is derived from https://github.com/terraform-providers/terraform-provider-azurerm/blob/master/website/docs/r/netapp_account.html.markdown.

func GetAccount

func GetAccount(ctx *pulumi.Context,
	name string, id pulumi.ID, state *AccountState, opts ...pulumi.ResourceOpt) (*Account, error)

GetAccount gets an existing Account resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewAccount

func NewAccount(ctx *pulumi.Context,
	name string, args *AccountArgs, opts ...pulumi.ResourceOpt) (*Account, error)

NewAccount registers a new resource with the given unique name, arguments, and options.

func (*Account) ActiveDirectory

func (r *Account) ActiveDirectory() pulumi.Output

A `activeDirectory` block as defined below.

func (*Account) ID

func (r *Account) ID() pulumi.IDOutput

ID is this resource's unique identifier assigned by its provider.

func (*Account) Location

func (r *Account) Location() pulumi.StringOutput

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

func (*Account) Name

func (r *Account) Name() pulumi.StringOutput

The name of the NetApp Account. Changing this forces a new resource to be created.

func (*Account) ResourceGroupName

func (r *Account) ResourceGroupName() pulumi.StringOutput

The name of the resource group where the NetApp Account should be created. Changing this forces a new resource to be created.

func (*Account) URN

func (r *Account) URN() pulumi.URNOutput

URN is this resource's unique name assigned by Pulumi.

type AccountArgs

type AccountArgs struct {
	// A `activeDirectory` block as defined below.
	ActiveDirectory interface{}
	// Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
	Location interface{}
	// The name of the NetApp Account. Changing this forces a new resource to be created.
	Name interface{}
	// The name of the resource group where the NetApp Account should be created. Changing this forces a new resource to be created.
	ResourceGroupName interface{}
}

The set of arguments for constructing a Account resource.

type AccountState

type AccountState struct {
	// A `activeDirectory` block as defined below.
	ActiveDirectory interface{}
	// Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
	Location interface{}
	// The name of the NetApp Account. Changing this forces a new resource to be created.
	Name interface{}
	// The name of the resource group where the NetApp Account should be created. Changing this forces a new resource to be created.
	ResourceGroupName interface{}
}

Input properties used for looking up and filtering Account resources.

type GetAccountArgs

type GetAccountArgs struct {
	// The name of the NetApp Account.
	Name interface{}
	// The Name of the Resource Group where the NetApp Account exists.
	ResourceGroupName interface{}
}

A collection of arguments for invoking getAccount.

type GetAccountResult

type GetAccountResult struct {
	// The Azure Region where the NetApp Account exists.
	Location          interface{}
	Name              interface{}
	ResourceGroupName interface{}
	// id is the provider-assigned unique ID for this managed resource.
	Id interface{}
}

A collection of values returned by getAccount.

func LookupAccount

func LookupAccount(ctx *pulumi.Context, args *GetAccountArgs) (*GetAccountResult, error)

Uses this data source to access information about an existing NetApp Account.

> This content is derived from https://github.com/terraform-providers/terraform-provider-azurerm/blob/master/website/docs/d/netapp_account.html.markdown.

type GetPoolArgs

type GetPoolArgs struct {
	// The name of the NetApp account where the NetApp pool exists.
	AccountName interface{}
	// The name of the NetApp Pool.
	Name interface{}
	// The Name of the Resource Group where the NetApp Pool exists.
	ResourceGroupName interface{}
}

A collection of arguments for invoking getPool.

type GetPoolResult

type GetPoolResult struct {
	AccountName interface{}
	// The Azure Region where the NetApp Pool exists.
	Location          interface{}
	Name              interface{}
	ResourceGroupName interface{}
	// The service level of the file system.
	ServiceLevel interface{}
	// Provisioned size of the pool in TB.
	SizeInTb interface{}
	// id is the provider-assigned unique ID for this managed resource.
	Id interface{}
}

A collection of values returned by getPool.

func LookupPool

func LookupPool(ctx *pulumi.Context, args *GetPoolArgs) (*GetPoolResult, error)

Uses this data source to access information about an existing NetApp Pool.

> This content is derived from https://github.com/terraform-providers/terraform-provider-azurerm/blob/master/website/docs/d/netapp_pool.html.markdown.

type Pool

type Pool struct {
	// contains filtered or unexported fields
}

Manages a Pool within a NetApp Account.

> This content is derived from https://github.com/terraform-providers/terraform-provider-azurerm/blob/master/website/docs/r/netapp_pool.html.markdown.

func GetPool

func GetPool(ctx *pulumi.Context,
	name string, id pulumi.ID, state *PoolState, opts ...pulumi.ResourceOpt) (*Pool, error)

GetPool gets an existing Pool resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewPool

func NewPool(ctx *pulumi.Context,
	name string, args *PoolArgs, opts ...pulumi.ResourceOpt) (*Pool, error)

NewPool registers a new resource with the given unique name, arguments, and options.

func (*Pool) AccountName

func (r *Pool) AccountName() pulumi.StringOutput

The name of the NetApp account in which the NetApp Pool should be created.

func (*Pool) ID

func (r *Pool) ID() pulumi.IDOutput

ID is this resource's unique identifier assigned by its provider.

func (*Pool) Location

func (r *Pool) Location() pulumi.StringOutput

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

func (*Pool) Name

func (r *Pool) Name() pulumi.StringOutput

The name of the NetApp Pool. Changing this forces a new resource to be created.

func (*Pool) ResourceGroupName

func (r *Pool) ResourceGroupName() pulumi.StringOutput

The name of the resource group where the NetApp Pool should be created. Changing this forces a new resource to be created.

func (*Pool) ServiceLevel

func (r *Pool) ServiceLevel() pulumi.StringOutput

The service level of the file system. Valid values include `Premium`, `Standard`, or `Ultra`.

func (*Pool) SizeInTb

func (r *Pool) SizeInTb() pulumi.IntOutput

Provisioned size of the pool in TB. Value must be between `4` and `500`.

func (*Pool) URN

func (r *Pool) URN() pulumi.URNOutput

URN is this resource's unique name assigned by Pulumi.

type PoolArgs

type PoolArgs struct {
	// The name of the NetApp account in which the NetApp Pool should be created.
	AccountName interface{}
	// Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
	Location interface{}
	// The name of the NetApp Pool. Changing this forces a new resource to be created.
	Name interface{}
	// The name of the resource group where the NetApp Pool should be created. Changing this forces a new resource to be created.
	ResourceGroupName interface{}
	// The service level of the file system. Valid values include `Premium`, `Standard`, or `Ultra`.
	ServiceLevel interface{}
	// Provisioned size of the pool in TB. Value must be between `4` and `500`.
	SizeInTb interface{}
}

The set of arguments for constructing a Pool resource.

type PoolState

type PoolState struct {
	// The name of the NetApp account in which the NetApp Pool should be created.
	AccountName interface{}
	// Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
	Location interface{}
	// The name of the NetApp Pool. Changing this forces a new resource to be created.
	Name interface{}
	// The name of the resource group where the NetApp Pool should be created. Changing this forces a new resource to be created.
	ResourceGroupName interface{}
	// The service level of the file system. Valid values include `Premium`, `Standard`, or `Ultra`.
	ServiceLevel interface{}
	// Provisioned size of the pool in TB. Value must be between `4` and `500`.
	SizeInTb interface{}
}

Input properties used for looking up and filtering Pool resources.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL