azurerm_mssql_elasticpool

package
v0.0.0-...-4deecce Latest Latest
Warning

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

Go to latest
Published: Apr 16, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Args

type Args struct {
	// EnclaveType: string, optional
	EnclaveType terra.StringValue `hcl:"enclave_type,attr"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// LicenseType: string, optional
	LicenseType terra.StringValue `hcl:"license_type,attr"`
	// Location: string, required
	Location terra.StringValue `hcl:"location,attr" validate:"required"`
	// MaintenanceConfigurationName: string, optional
	MaintenanceConfigurationName terra.StringValue `hcl:"maintenance_configuration_name,attr"`
	// MaxSizeBytes: number, optional
	MaxSizeBytes terra.NumberValue `hcl:"max_size_bytes,attr"`
	// MaxSizeGb: number, optional
	MaxSizeGb terra.NumberValue `hcl:"max_size_gb,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// ResourceGroupName: string, required
	ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"`
	// ServerName: string, required
	ServerName terra.StringValue `hcl:"server_name,attr" validate:"required"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
	// ZoneRedundant: bool, optional
	ZoneRedundant terra.BoolValue `hcl:"zone_redundant,attr"`
	// PerDatabaseSettings: required
	PerDatabaseSettings *PerDatabaseSettings `hcl:"per_database_settings,block" validate:"required"`
	// Sku: required
	Sku *Sku `hcl:"sku,block" validate:"required"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for azurerm_mssql_elasticpool.

type DataArgs

type DataArgs struct {
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// ResourceGroupName: string, required
	ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"`
	// ServerName: string, required
	ServerName terra.StringValue `hcl:"server_name,attr" validate:"required"`
	// Timeouts: optional
	Timeouts *DataTimeouts `hcl:"timeouts,block"`
}

DataArgs contains the configurations for azurerm_mssql_elasticpool.

type DataSkuAttributes

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

func (DataSkuAttributes) Capacity

func (s DataSkuAttributes) Capacity() terra.NumberValue

func (DataSkuAttributes) Family

func (s DataSkuAttributes) Family() terra.StringValue

func (DataSkuAttributes) InternalRef

func (s DataSkuAttributes) InternalRef() (terra.Reference, error)

func (DataSkuAttributes) InternalTokens

func (s DataSkuAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataSkuAttributes) InternalWithRef

func (s DataSkuAttributes) InternalWithRef(ref terra.Reference) DataSkuAttributes

func (DataSkuAttributes) Name

func (DataSkuAttributes) Tier

type DataSkuState

type DataSkuState struct {
	Capacity float64 `json:"capacity"`
	Family   string  `json:"family"`
	Name     string  `json:"name"`
	Tier     string  `json:"tier"`
}

type DataSource

type DataSource struct {
	Name string
	Args DataArgs
}

DataSource represents the Terraform data resource azurerm_mssql_elasticpool.

func Data

func Data(name string, args DataArgs) *DataSource

Data creates a new instance of DataSource.

func (*DataSource) Attributes

func (ame *DataSource) Attributes() dataAzurermMssqlElasticpoolAttributes

Attributes returns the attributes for DataSource.

func (*DataSource) Configuration

func (ame *DataSource) Configuration() interface{}

Configuration returns the configuration (args) for DataSource.

func (*DataSource) DataSource

func (ame *DataSource) DataSource() string

DataSource returns the Terraform object type for DataSource.

func (*DataSource) LocalName

func (ame *DataSource) LocalName() string

LocalName returns the local name for DataSource.

type DataTimeouts

type DataTimeouts struct {
	// Read: string, optional
	Read terra.StringValue `hcl:"read,attr"`
}

type DataTimeoutsAttributes

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

func (DataTimeoutsAttributes) InternalRef

func (t DataTimeoutsAttributes) InternalRef() (terra.Reference, error)

func (DataTimeoutsAttributes) InternalTokens

func (t DataTimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataTimeoutsAttributes) InternalWithRef

func (DataTimeoutsAttributes) Read

type DataTimeoutsState

type DataTimeoutsState struct {
	Read string `json:"read"`
}

type PerDatabaseSettings

type PerDatabaseSettings struct {
	// MaxCapacity: number, required
	MaxCapacity terra.NumberValue `hcl:"max_capacity,attr" validate:"required"`
	// MinCapacity: number, required
	MinCapacity terra.NumberValue `hcl:"min_capacity,attr" validate:"required"`
}

type PerDatabaseSettingsAttributes

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

func (PerDatabaseSettingsAttributes) InternalRef

func (pds PerDatabaseSettingsAttributes) InternalRef() (terra.Reference, error)

func (PerDatabaseSettingsAttributes) InternalTokens

func (pds PerDatabaseSettingsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (PerDatabaseSettingsAttributes) InternalWithRef

func (PerDatabaseSettingsAttributes) MaxCapacity

func (PerDatabaseSettingsAttributes) MinCapacity

type PerDatabaseSettingsState

type PerDatabaseSettingsState struct {
	MaxCapacity float64 `json:"max_capacity"`
	MinCapacity float64 `json:"min_capacity"`
}

type Resource

type Resource struct {
	Name string
	Args Args

	DependsOn terra.Dependencies
	Lifecycle *terra.Lifecycle
	// contains filtered or unexported fields
}

Resource represents the Terraform resource azurerm_mssql_elasticpool.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (ame *Resource) Attributes() azurermMssqlElasticpoolAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (ame *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (ame *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (ame *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (ame *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (ame *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (ame *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (ame *Resource) State() (*azurermMssqlElasticpoolState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (ame *Resource) StateMust() *azurermMssqlElasticpoolState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (ame *Resource) Type() string

Type returns the Terraform object type for Resource.

type Sku

type Sku struct {
	// Capacity: number, required
	Capacity terra.NumberValue `hcl:"capacity,attr" validate:"required"`
	// Family: string, optional
	Family terra.StringValue `hcl:"family,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// Tier: string, required
	Tier terra.StringValue `hcl:"tier,attr" validate:"required"`
}

type SkuAttributes

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

func (SkuAttributes) Capacity

func (s SkuAttributes) Capacity() terra.NumberValue

func (SkuAttributes) Family

func (s SkuAttributes) Family() terra.StringValue

func (SkuAttributes) InternalRef

func (s SkuAttributes) InternalRef() (terra.Reference, error)

func (SkuAttributes) InternalTokens

func (s SkuAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SkuAttributes) InternalWithRef

func (s SkuAttributes) InternalWithRef(ref terra.Reference) SkuAttributes

func (SkuAttributes) Name

func (s SkuAttributes) Name() terra.StringValue

func (SkuAttributes) Tier

func (s SkuAttributes) Tier() terra.StringValue

type SkuState

type SkuState struct {
	Capacity float64 `json:"capacity"`
	Family   string  `json:"family"`
	Name     string  `json:"name"`
	Tier     string  `json:"tier"`
}

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,attr"`
	// Read: string, optional
	Read terra.StringValue `hcl:"read,attr"`
	// Update: string, optional
	Update terra.StringValue `hcl:"update,attr"`
}

type TimeoutsAttributes

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

func (TimeoutsAttributes) Create

func (TimeoutsAttributes) Delete

func (TimeoutsAttributes) InternalRef

func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)

func (TimeoutsAttributes) InternalTokens

func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (TimeoutsAttributes) InternalWithRef

func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes

func (TimeoutsAttributes) Read

func (TimeoutsAttributes) Update

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Read   string `json:"read"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

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