Documentation ¶
Index ¶
- type DiskIopsConfiguration
- type DiskIopsConfigurationAttributes
- func (dic DiskIopsConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (dic DiskIopsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (dic DiskIopsConfigurationAttributes) InternalWithRef(ref terra.Reference) DiskIopsConfigurationAttributes
- func (dic DiskIopsConfigurationAttributes) Iops() terra.NumberValue
- func (dic DiskIopsConfigurationAttributes) Mode() terra.StringValue
- type DiskIopsConfigurationState
- type Endpoints
- type EndpointsAttributes
- func (e EndpointsAttributes) Intercluster() terra.ListValue[InterclusterAttributes]
- func (e EndpointsAttributes) InternalRef() (terra.Reference, error)
- func (e EndpointsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (e EndpointsAttributes) InternalWithRef(ref terra.Reference) EndpointsAttributes
- func (e EndpointsAttributes) Management() terra.ListValue[ManagementAttributes]
- type EndpointsState
- type Intercluster
- type InterclusterAttributes
- func (i InterclusterAttributes) DnsName() terra.StringValue
- func (i InterclusterAttributes) InternalRef() (terra.Reference, error)
- func (i InterclusterAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (i InterclusterAttributes) InternalWithRef(ref terra.Reference) InterclusterAttributes
- func (i InterclusterAttributes) IpAddresses() terra.SetValue[terra.StringValue]
- type InterclusterState
- type Management
- type ManagementAttributes
- func (m ManagementAttributes) DnsName() terra.StringValue
- func (m ManagementAttributes) InternalRef() (terra.Reference, error)
- func (m ManagementAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (m ManagementAttributes) InternalWithRef(ref terra.Reference) ManagementAttributes
- func (m ManagementAttributes) IpAddresses() terra.SetValue[terra.StringValue]
- type ManagementState
- type Timeouts
- type TimeoutsAttributes
- func (t TimeoutsAttributes) Create() terra.StringValue
- func (t TimeoutsAttributes) Delete() terra.StringValue
- func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)
- func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes
- func (t TimeoutsAttributes) Update() terra.StringValue
- type TimeoutsState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DiskIopsConfiguration ¶
type DiskIopsConfiguration struct { // Iops: number, optional Iops terra.NumberValue `hcl:"iops,attr"` // Mode: string, optional Mode terra.StringValue `hcl:"mode,attr"` }
type DiskIopsConfigurationAttributes ¶
type DiskIopsConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (DiskIopsConfigurationAttributes) InternalRef ¶
func (dic DiskIopsConfigurationAttributes) InternalRef() (terra.Reference, error)
func (DiskIopsConfigurationAttributes) InternalTokens ¶
func (dic DiskIopsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DiskIopsConfigurationAttributes) InternalWithRef ¶
func (dic DiskIopsConfigurationAttributes) InternalWithRef(ref terra.Reference) DiskIopsConfigurationAttributes
func (DiskIopsConfigurationAttributes) Iops ¶
func (dic DiskIopsConfigurationAttributes) Iops() terra.NumberValue
func (DiskIopsConfigurationAttributes) Mode ¶
func (dic DiskIopsConfigurationAttributes) Mode() terra.StringValue
type Endpoints ¶
type Endpoints struct { // Intercluster: min=0 Intercluster []Intercluster `hcl:"intercluster,block" validate:"min=0"` // Management: min=0 Management []Management `hcl:"management,block" validate:"min=0"` }
type EndpointsAttributes ¶
type EndpointsAttributes struct {
// contains filtered or unexported fields
}
func (EndpointsAttributes) Intercluster ¶
func (e EndpointsAttributes) Intercluster() terra.ListValue[InterclusterAttributes]
func (EndpointsAttributes) InternalRef ¶
func (e EndpointsAttributes) InternalRef() (terra.Reference, error)
func (EndpointsAttributes) InternalTokens ¶
func (e EndpointsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EndpointsAttributes) InternalWithRef ¶
func (e EndpointsAttributes) InternalWithRef(ref terra.Reference) EndpointsAttributes
func (EndpointsAttributes) Management ¶
func (e EndpointsAttributes) Management() terra.ListValue[ManagementAttributes]
type EndpointsState ¶
type EndpointsState struct { Intercluster []InterclusterState `json:"intercluster"` Management []ManagementState `json:"management"` }
type Intercluster ¶
type Intercluster struct{}
type InterclusterAttributes ¶
type InterclusterAttributes struct {
// contains filtered or unexported fields
}
func (InterclusterAttributes) DnsName ¶
func (i InterclusterAttributes) DnsName() terra.StringValue
func (InterclusterAttributes) InternalRef ¶
func (i InterclusterAttributes) InternalRef() (terra.Reference, error)
func (InterclusterAttributes) InternalTokens ¶
func (i InterclusterAttributes) InternalTokens() (hclwrite.Tokens, error)
func (InterclusterAttributes) InternalWithRef ¶
func (i InterclusterAttributes) InternalWithRef(ref terra.Reference) InterclusterAttributes
func (InterclusterAttributes) IpAddresses ¶
func (i InterclusterAttributes) IpAddresses() terra.SetValue[terra.StringValue]
type InterclusterState ¶
type Management ¶
type Management struct{}
type ManagementAttributes ¶
type ManagementAttributes struct {
// contains filtered or unexported fields
}
func (ManagementAttributes) DnsName ¶
func (m ManagementAttributes) DnsName() terra.StringValue
func (ManagementAttributes) InternalRef ¶
func (m ManagementAttributes) InternalRef() (terra.Reference, error)
func (ManagementAttributes) InternalTokens ¶
func (m ManagementAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ManagementAttributes) InternalWithRef ¶
func (m ManagementAttributes) InternalWithRef(ref terra.Reference) ManagementAttributes
func (ManagementAttributes) IpAddresses ¶
func (m ManagementAttributes) IpAddresses() terra.SetValue[terra.StringValue]
type ManagementState ¶
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 (t TimeoutsAttributes) Create() terra.StringValue
func (TimeoutsAttributes) Delete ¶
func (t TimeoutsAttributes) Delete() terra.StringValue
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 ¶
func (t TimeoutsAttributes) Update() terra.StringValue
type TimeoutsState ¶
Click to show internal directories.
Click to hide internal directories.