Documentation ¶
Index ¶
- type Args
- type Bandwidth
- type BandwidthAttributes
- func (b BandwidthAttributes) DownloadSpeed() terra.NumberValue
- func (b BandwidthAttributes) InternalRef() (terra.Reference, error)
- func (b BandwidthAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (b BandwidthAttributes) InternalWithRef(ref terra.Reference) BandwidthAttributes
- func (b BandwidthAttributes) UploadSpeed() terra.NumberValue
- type BandwidthState
- type DataArgs
- type DataBandwidthAttributes
- func (b DataBandwidthAttributes) DownloadSpeed() terra.NumberValue
- func (b DataBandwidthAttributes) InternalRef() (terra.Reference, error)
- func (b DataBandwidthAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (b DataBandwidthAttributes) InternalWithRef(ref terra.Reference) DataBandwidthAttributes
- func (b DataBandwidthAttributes) UploadSpeed() terra.NumberValue
- type DataBandwidthState
- type DataSource
- type Resource
- func (anl *Resource) Attributes() awsNetworkmanagerLinkAttributes
- func (anl *Resource) Configuration() interface{}
- func (anl *Resource) DependOn() terra.Reference
- func (anl *Resource) Dependencies() terra.Dependencies
- func (anl *Resource) ImportState(state io.Reader) error
- func (anl *Resource) LifecycleManagement() *terra.Lifecycle
- func (anl *Resource) LocalName() string
- func (anl *Resource) State() (*awsNetworkmanagerLinkState, bool)
- func (anl *Resource) StateMust() *awsNetworkmanagerLinkState
- func (anl *Resource) Type() string
- 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 Args ¶
type Args struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // GlobalNetworkId: string, required GlobalNetworkId terra.StringValue `hcl:"global_network_id,attr" validate:"required"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // ProviderName: string, optional ProviderName terra.StringValue `hcl:"provider_name,attr"` // SiteId: string, required SiteId terra.StringValue `hcl:"site_id,attr" validate:"required"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // TagsAll: map of string, optional TagsAll terra.MapValue[terra.StringValue] `hcl:"tags_all,attr"` // Type: string, optional Type terra.StringValue `hcl:"type,attr"` // Bandwidth: required Bandwidth *Bandwidth `hcl:"bandwidth,block" validate:"required"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for aws_networkmanager_link.
type Bandwidth ¶
type Bandwidth struct { // DownloadSpeed: number, optional DownloadSpeed terra.NumberValue `hcl:"download_speed,attr"` // UploadSpeed: number, optional UploadSpeed terra.NumberValue `hcl:"upload_speed,attr"` }
type BandwidthAttributes ¶
type BandwidthAttributes struct {
// contains filtered or unexported fields
}
func (BandwidthAttributes) DownloadSpeed ¶
func (b BandwidthAttributes) DownloadSpeed() terra.NumberValue
func (BandwidthAttributes) InternalRef ¶
func (b BandwidthAttributes) InternalRef() (terra.Reference, error)
func (BandwidthAttributes) InternalTokens ¶
func (b BandwidthAttributes) InternalTokens() (hclwrite.Tokens, error)
func (BandwidthAttributes) InternalWithRef ¶
func (b BandwidthAttributes) InternalWithRef(ref terra.Reference) BandwidthAttributes
func (BandwidthAttributes) UploadSpeed ¶
func (b BandwidthAttributes) UploadSpeed() terra.NumberValue
type BandwidthState ¶
type DataArgs ¶
type DataArgs struct { // GlobalNetworkId: string, required GlobalNetworkId terra.StringValue `hcl:"global_network_id,attr" validate:"required"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // LinkId: string, required LinkId terra.StringValue `hcl:"link_id,attr" validate:"required"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` }
DataArgs contains the configurations for aws_networkmanager_link.
type DataBandwidthAttributes ¶
type DataBandwidthAttributes struct {
// contains filtered or unexported fields
}
func (DataBandwidthAttributes) DownloadSpeed ¶
func (b DataBandwidthAttributes) DownloadSpeed() terra.NumberValue
func (DataBandwidthAttributes) InternalRef ¶
func (b DataBandwidthAttributes) InternalRef() (terra.Reference, error)
func (DataBandwidthAttributes) InternalTokens ¶
func (b DataBandwidthAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataBandwidthAttributes) InternalWithRef ¶
func (b DataBandwidthAttributes) InternalWithRef(ref terra.Reference) DataBandwidthAttributes
func (DataBandwidthAttributes) UploadSpeed ¶
func (b DataBandwidthAttributes) UploadSpeed() terra.NumberValue
type DataBandwidthState ¶
type DataSource ¶
DataSource represents the Terraform data resource aws_networkmanager_link.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (anl *DataSource) Attributes() dataAwsNetworkmanagerLinkAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (anl *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (anl *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (anl *DataSource) LocalName() string
LocalName returns the local name for DataSource.
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 aws_networkmanager_link.
func (*Resource) Attributes ¶
func (anl *Resource) Attributes() awsNetworkmanagerLinkAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (anl *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (anl *Resource) Dependencies() terra.Dependencies
Dependencies returns the list of resources Resource depends_on.
func (*Resource) ImportState ¶
ImportState imports the given attribute values into Resource's state.
func (*Resource) LifecycleManagement ¶
LifecycleManagement returns the lifecycle block 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"` // 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