finspacekxenvironment

package
v0.0.0-...-964ba77 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2024 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 AttachmentNetworkAclConfiguration

type AttachmentNetworkAclConfiguration struct {
	// CidrBlock: string, required
	CidrBlock terra.StringValue `hcl:"cidr_block,attr" validate:"required"`
	// Protocol: string, required
	Protocol terra.StringValue `hcl:"protocol,attr" validate:"required"`
	// RuleAction: string, required
	RuleAction terra.StringValue `hcl:"rule_action,attr" validate:"required"`
	// RuleNumber: number, required
	RuleNumber terra.NumberValue `hcl:"rule_number,attr" validate:"required"`
	// IcmpTypeCode: optional
	IcmpTypeCode *IcmpTypeCode `hcl:"icmp_type_code,block"`
	// PortRange: optional
	PortRange *PortRange `hcl:"port_range,block"`
}

type AttachmentNetworkAclConfigurationAttributes

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

func (AttachmentNetworkAclConfigurationAttributes) CidrBlock

func (AttachmentNetworkAclConfigurationAttributes) IcmpTypeCode

func (AttachmentNetworkAclConfigurationAttributes) InternalRef

func (AttachmentNetworkAclConfigurationAttributes) InternalTokens

func (AttachmentNetworkAclConfigurationAttributes) InternalWithRef

func (AttachmentNetworkAclConfigurationAttributes) PortRange

func (AttachmentNetworkAclConfigurationAttributes) Protocol

func (AttachmentNetworkAclConfigurationAttributes) RuleAction

func (AttachmentNetworkAclConfigurationAttributes) RuleNumber

type AttachmentNetworkAclConfigurationState

type AttachmentNetworkAclConfigurationState struct {
	CidrBlock    string              `json:"cidr_block"`
	Protocol     string              `json:"protocol"`
	RuleAction   string              `json:"rule_action"`
	RuleNumber   float64             `json:"rule_number"`
	IcmpTypeCode []IcmpTypeCodeState `json:"icmp_type_code"`
	PortRange    []PortRangeState    `json:"port_range"`
}

type CustomDnsConfiguration

type CustomDnsConfiguration struct {
	// CustomDnsServerIp: string, required
	CustomDnsServerIp terra.StringValue `hcl:"custom_dns_server_ip,attr" validate:"required"`
	// CustomDnsServerName: string, required
	CustomDnsServerName terra.StringValue `hcl:"custom_dns_server_name,attr" validate:"required"`
}

type CustomDnsConfigurationAttributes

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

func (CustomDnsConfigurationAttributes) CustomDnsServerIp

func (cdc CustomDnsConfigurationAttributes) CustomDnsServerIp() terra.StringValue

func (CustomDnsConfigurationAttributes) CustomDnsServerName

func (cdc CustomDnsConfigurationAttributes) CustomDnsServerName() terra.StringValue

func (CustomDnsConfigurationAttributes) InternalRef

func (CustomDnsConfigurationAttributes) InternalTokens

func (cdc CustomDnsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (CustomDnsConfigurationAttributes) InternalWithRef

type CustomDnsConfigurationState

type CustomDnsConfigurationState struct {
	CustomDnsServerIp   string `json:"custom_dns_server_ip"`
	CustomDnsServerName string `json:"custom_dns_server_name"`
}

type IcmpTypeCode

type IcmpTypeCode struct {
	// Code: number, required
	Code terra.NumberValue `hcl:"code,attr" validate:"required"`
	// Type: number, required
	Type terra.NumberValue `hcl:"type,attr" validate:"required"`
}

type IcmpTypeCodeAttributes

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

func (IcmpTypeCodeAttributes) Code

func (IcmpTypeCodeAttributes) InternalRef

func (itc IcmpTypeCodeAttributes) InternalRef() (terra.Reference, error)

func (IcmpTypeCodeAttributes) InternalTokens

func (itc IcmpTypeCodeAttributes) InternalTokens() (hclwrite.Tokens, error)

func (IcmpTypeCodeAttributes) InternalWithRef

func (IcmpTypeCodeAttributes) Type

type IcmpTypeCodeState

type IcmpTypeCodeState struct {
	Code float64 `json:"code"`
	Type float64 `json:"type"`
}

type PortRange

type PortRange struct {
	// From: number, required
	From terra.NumberValue `hcl:"from,attr" validate:"required"`
	// To: number, required
	To terra.NumberValue `hcl:"to,attr" validate:"required"`
}

type PortRangeAttributes

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

func (PortRangeAttributes) From

func (PortRangeAttributes) InternalRef

func (pr PortRangeAttributes) InternalRef() (terra.Reference, error)

func (PortRangeAttributes) InternalTokens

func (pr PortRangeAttributes) InternalTokens() (hclwrite.Tokens, error)

func (PortRangeAttributes) InternalWithRef

func (pr PortRangeAttributes) InternalWithRef(ref terra.Reference) PortRangeAttributes

func (PortRangeAttributes) To

type PortRangeState

type PortRangeState struct {
	From float64 `json:"from"`
	To   float64 `json:"to"`
}

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,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) Update

type TimeoutsState

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

type TransitGatewayConfiguration

type TransitGatewayConfiguration struct {
	// RoutableCidrSpace: string, required
	RoutableCidrSpace terra.StringValue `hcl:"routable_cidr_space,attr" validate:"required"`
	// TransitGatewayId: string, required
	TransitGatewayId terra.StringValue `hcl:"transit_gateway_id,attr" validate:"required"`
	// AttachmentNetworkAclConfiguration: min=0,max=100
	AttachmentNetworkAclConfiguration []AttachmentNetworkAclConfiguration `hcl:"attachment_network_acl_configuration,block" validate:"min=0,max=100"`
}

type TransitGatewayConfigurationAttributes

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

func (TransitGatewayConfigurationAttributes) AttachmentNetworkAclConfiguration

func (TransitGatewayConfigurationAttributes) InternalRef

func (TransitGatewayConfigurationAttributes) InternalTokens

func (TransitGatewayConfigurationAttributes) InternalWithRef

func (TransitGatewayConfigurationAttributes) RoutableCidrSpace

func (TransitGatewayConfigurationAttributes) TransitGatewayId

type TransitGatewayConfigurationState

type TransitGatewayConfigurationState struct {
	RoutableCidrSpace                 string                                   `json:"routable_cidr_space"`
	TransitGatewayId                  string                                   `json:"transit_gateway_id"`
	AttachmentNetworkAclConfiguration []AttachmentNetworkAclConfigurationState `json:"attachment_network_acl_configuration"`
}

Jump to

Keyboard shortcuts

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