azurerm_vmware_private_cloud

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 {
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// InternetConnectionEnabled: bool, optional
	InternetConnectionEnabled terra.BoolValue `hcl:"internet_connection_enabled,attr"`
	// Location: string, required
	Location terra.StringValue `hcl:"location,attr" validate:"required"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// NetworkSubnetCidr: string, required
	NetworkSubnetCidr terra.StringValue `hcl:"network_subnet_cidr,attr" validate:"required"`
	// NsxtPassword: string, optional
	NsxtPassword terra.StringValue `hcl:"nsxt_password,attr"`
	// ResourceGroupName: string, required
	ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"`
	// SkuName: string, required
	SkuName terra.StringValue `hcl:"sku_name,attr" validate:"required"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
	// VcenterPassword: string, optional
	VcenterPassword terra.StringValue `hcl:"vcenter_password,attr"`
	// ManagementCluster: required
	ManagementCluster *ManagementCluster `hcl:"management_cluster,block" validate:"required"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for azurerm_vmware_private_cloud.

type CircuitAttributes

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

func (CircuitAttributes) ExpressRouteId

func (c CircuitAttributes) ExpressRouteId() terra.StringValue

func (CircuitAttributes) ExpressRoutePrivatePeeringId

func (c CircuitAttributes) ExpressRoutePrivatePeeringId() terra.StringValue

func (CircuitAttributes) InternalRef

func (c CircuitAttributes) InternalRef() (terra.Reference, error)

func (CircuitAttributes) InternalTokens

func (c CircuitAttributes) InternalTokens() (hclwrite.Tokens, error)

func (CircuitAttributes) InternalWithRef

func (c CircuitAttributes) InternalWithRef(ref terra.Reference) CircuitAttributes

func (CircuitAttributes) PrimarySubnetCidr

func (c CircuitAttributes) PrimarySubnetCidr() terra.StringValue

func (CircuitAttributes) SecondarySubnetCidr

func (c CircuitAttributes) SecondarySubnetCidr() terra.StringValue

type CircuitState

type CircuitState struct {
	ExpressRouteId               string `json:"express_route_id"`
	ExpressRoutePrivatePeeringId string `json:"express_route_private_peering_id"`
	PrimarySubnetCidr            string `json:"primary_subnet_cidr"`
	SecondarySubnetCidr          string `json:"secondary_subnet_cidr"`
}

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"`
	// Timeouts: optional
	Timeouts *DataTimeouts `hcl:"timeouts,block"`
}

DataArgs contains the configurations for azurerm_vmware_private_cloud.

type DataCircuitAttributes

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

func (DataCircuitAttributes) ExpressRouteId

func (c DataCircuitAttributes) ExpressRouteId() terra.StringValue

func (DataCircuitAttributes) ExpressRoutePrivatePeeringId

func (c DataCircuitAttributes) ExpressRoutePrivatePeeringId() terra.StringValue

func (DataCircuitAttributes) InternalRef

func (c DataCircuitAttributes) InternalRef() (terra.Reference, error)

func (DataCircuitAttributes) InternalTokens

func (c DataCircuitAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataCircuitAttributes) InternalWithRef

func (DataCircuitAttributes) PrimarySubnetCidr

func (c DataCircuitAttributes) PrimarySubnetCidr() terra.StringValue

func (DataCircuitAttributes) SecondarySubnetCidr

func (c DataCircuitAttributes) SecondarySubnetCidr() terra.StringValue

type DataCircuitState

type DataCircuitState struct {
	ExpressRouteId               string `json:"express_route_id"`
	ExpressRoutePrivatePeeringId string `json:"express_route_private_peering_id"`
	PrimarySubnetCidr            string `json:"primary_subnet_cidr"`
	SecondarySubnetCidr          string `json:"secondary_subnet_cidr"`
}

type DataManagementClusterAttributes

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

func (DataManagementClusterAttributes) Hosts

func (DataManagementClusterAttributes) Id

func (DataManagementClusterAttributes) InternalRef

func (DataManagementClusterAttributes) InternalTokens

func (mc DataManagementClusterAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataManagementClusterAttributes) InternalWithRef

func (DataManagementClusterAttributes) Size

type DataManagementClusterState

type DataManagementClusterState struct {
	Hosts []string `json:"hosts"`
	Id    float64  `json:"id"`
	Size  float64  `json:"size"`
}

type DataSource

type DataSource struct {
	Name string
	Args DataArgs
}

DataSource represents the Terraform data resource azurerm_vmware_private_cloud.

func Data

func Data(name string, args DataArgs) *DataSource

Data creates a new instance of DataSource.

func (*DataSource) Attributes

func (avpc *DataSource) Attributes() dataAzurermVmwarePrivateCloudAttributes

Attributes returns the attributes for DataSource.

func (*DataSource) Configuration

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

Configuration returns the configuration (args) for DataSource.

func (*DataSource) DataSource

func (avpc *DataSource) DataSource() string

DataSource returns the Terraform object type for DataSource.

func (*DataSource) LocalName

func (avpc *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 ManagementCluster

type ManagementCluster struct {
	// Size: number, required
	Size terra.NumberValue `hcl:"size,attr" validate:"required"`
}

type ManagementClusterAttributes

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

func (ManagementClusterAttributes) Hosts

func (ManagementClusterAttributes) Id

func (ManagementClusterAttributes) InternalRef

func (mc ManagementClusterAttributes) InternalRef() (terra.Reference, error)

func (ManagementClusterAttributes) InternalTokens

func (mc ManagementClusterAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ManagementClusterAttributes) InternalWithRef

func (ManagementClusterAttributes) Size

type ManagementClusterState

type ManagementClusterState struct {
	Hosts []string `json:"hosts"`
	Id    float64  `json:"id"`
	Size  float64  `json:"size"`
}

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_vmware_private_cloud.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (avpc *Resource) Attributes() azurermVmwarePrivateCloudAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

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

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

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

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

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

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

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

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

func (*Resource) LifecycleManagement

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

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (avpc *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (avpc *Resource) State() (*azurermVmwarePrivateCloudState, bool)

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

func (*Resource) StateMust

func (avpc *Resource) StateMust() *azurermVmwarePrivateCloudState

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

func (*Resource) Type

func (avpc *Resource) Type() string

Type returns the Terraform object type for Resource.

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