Documentation
¶
Index ¶
- type Args
- type DataArgs
- type DataSource
- type DataTimeouts
- type DataTimeoutsAttributes
- type DataTimeoutsState
- type IpFilterRule
- type IpFilterRuleAttributes
- func (ifr IpFilterRuleAttributes) Action() terra.StringValue
- func (ifr IpFilterRuleAttributes) InternalRef() (terra.Reference, error)
- func (ifr IpFilterRuleAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ifr IpFilterRuleAttributes) InternalWithRef(ref terra.Reference) IpFilterRuleAttributes
- func (ifr IpFilterRuleAttributes) IpMask() terra.StringValue
- func (ifr IpFilterRuleAttributes) Name() terra.StringValue
- func (ifr IpFilterRuleAttributes) Target() terra.StringValue
- type IpFilterRuleState
- type LinkedHub
- type LinkedHubAttributes
- func (lh LinkedHubAttributes) AllocationWeight() terra.NumberValue
- func (lh LinkedHubAttributes) ApplyAllocationPolicy() terra.BoolValue
- func (lh LinkedHubAttributes) ConnectionString() terra.StringValue
- func (lh LinkedHubAttributes) Hostname() terra.StringValue
- func (lh LinkedHubAttributes) InternalRef() (terra.Reference, error)
- func (lh LinkedHubAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (lh LinkedHubAttributes) InternalWithRef(ref terra.Reference) LinkedHubAttributes
- func (lh LinkedHubAttributes) Location() terra.StringValue
- type LinkedHubState
- type Resource
- func (aid *Resource) Attributes() azurermIothubDpsAttributes
- func (aid *Resource) Configuration() interface{}
- func (aid *Resource) DependOn() terra.Reference
- func (aid *Resource) Dependencies() terra.Dependencies
- func (aid *Resource) ImportState(state io.Reader) error
- func (aid *Resource) LifecycleManagement() *terra.Lifecycle
- func (aid *Resource) LocalName() string
- func (aid *Resource) State() (*azurermIothubDpsState, bool)
- func (aid *Resource) StateMust() *azurermIothubDpsState
- func (aid *Resource) Type() string
- type Sku
- type SkuAttributes
- func (s SkuAttributes) Capacity() terra.NumberValue
- func (s SkuAttributes) InternalRef() (terra.Reference, error)
- func (s SkuAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (s SkuAttributes) InternalWithRef(ref terra.Reference) SkuAttributes
- func (s SkuAttributes) Name() terra.StringValue
- type SkuState
- 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) Read() terra.StringValue
- 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 { // AllocationPolicy: string, optional AllocationPolicy terra.StringValue `hcl:"allocation_policy,attr"` // DataResidencyEnabled: bool, optional DataResidencyEnabled terra.BoolValue `hcl:"data_residency_enabled,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Location: string, required Location terra.StringValue `hcl:"location,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // PublicNetworkAccessEnabled: bool, optional PublicNetworkAccessEnabled terra.BoolValue `hcl:"public_network_access_enabled,attr"` // ResourceGroupName: string, required ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // IpFilterRule: min=0 IpFilterRule []IpFilterRule `hcl:"ip_filter_rule,block" validate:"min=0"` // LinkedHub: min=0 LinkedHub []LinkedHub `hcl:"linked_hub,block" validate:"min=0"` // Sku: required Sku *Sku `hcl:"sku,block" validate:"required"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for azurerm_iothub_dps.
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"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // Timeouts: optional Timeouts *DataTimeouts `hcl:"timeouts,block"` }
DataArgs contains the configurations for azurerm_iothub_dps.
type DataSource ¶
DataSource represents the Terraform data resource azurerm_iothub_dps.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (aid *DataSource) Attributes() dataAzurermIothubDpsAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (aid *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (aid *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (aid *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 (t DataTimeoutsAttributes) InternalWithRef(ref terra.Reference) DataTimeoutsAttributes
func (DataTimeoutsAttributes) Read ¶
func (t DataTimeoutsAttributes) Read() terra.StringValue
type DataTimeoutsState ¶
type DataTimeoutsState struct {
Read string `json:"read"`
}
type IpFilterRule ¶
type IpFilterRule struct { // Action: string, required Action terra.StringValue `hcl:"action,attr" validate:"required"` // IpMask: string, required IpMask terra.StringValue `hcl:"ip_mask,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Target: string, optional Target terra.StringValue `hcl:"target,attr"` }
type IpFilterRuleAttributes ¶
type IpFilterRuleAttributes struct {
// contains filtered or unexported fields
}
func (IpFilterRuleAttributes) Action ¶
func (ifr IpFilterRuleAttributes) Action() terra.StringValue
func (IpFilterRuleAttributes) InternalRef ¶
func (ifr IpFilterRuleAttributes) InternalRef() (terra.Reference, error)
func (IpFilterRuleAttributes) InternalTokens ¶
func (ifr IpFilterRuleAttributes) InternalTokens() (hclwrite.Tokens, error)
func (IpFilterRuleAttributes) InternalWithRef ¶
func (ifr IpFilterRuleAttributes) InternalWithRef(ref terra.Reference) IpFilterRuleAttributes
func (IpFilterRuleAttributes) IpMask ¶
func (ifr IpFilterRuleAttributes) IpMask() terra.StringValue
func (IpFilterRuleAttributes) Name ¶
func (ifr IpFilterRuleAttributes) Name() terra.StringValue
func (IpFilterRuleAttributes) Target ¶
func (ifr IpFilterRuleAttributes) Target() terra.StringValue
type IpFilterRuleState ¶
type LinkedHub ¶
type LinkedHub struct { // AllocationWeight: number, optional AllocationWeight terra.NumberValue `hcl:"allocation_weight,attr"` // ApplyAllocationPolicy: bool, optional ApplyAllocationPolicy terra.BoolValue `hcl:"apply_allocation_policy,attr"` // ConnectionString: string, required ConnectionString terra.StringValue `hcl:"connection_string,attr" validate:"required"` // Location: string, required Location terra.StringValue `hcl:"location,attr" validate:"required"` }
type LinkedHubAttributes ¶
type LinkedHubAttributes struct {
// contains filtered or unexported fields
}
func (LinkedHubAttributes) AllocationWeight ¶
func (lh LinkedHubAttributes) AllocationWeight() terra.NumberValue
func (LinkedHubAttributes) ApplyAllocationPolicy ¶
func (lh LinkedHubAttributes) ApplyAllocationPolicy() terra.BoolValue
func (LinkedHubAttributes) ConnectionString ¶
func (lh LinkedHubAttributes) ConnectionString() terra.StringValue
func (LinkedHubAttributes) Hostname ¶
func (lh LinkedHubAttributes) Hostname() terra.StringValue
func (LinkedHubAttributes) InternalRef ¶
func (lh LinkedHubAttributes) InternalRef() (terra.Reference, error)
func (LinkedHubAttributes) InternalTokens ¶
func (lh LinkedHubAttributes) InternalTokens() (hclwrite.Tokens, error)
func (LinkedHubAttributes) InternalWithRef ¶
func (lh LinkedHubAttributes) InternalWithRef(ref terra.Reference) LinkedHubAttributes
func (LinkedHubAttributes) Location ¶
func (lh LinkedHubAttributes) Location() terra.StringValue
type LinkedHubState ¶
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_iothub_dps.
func (*Resource) Attributes ¶
func (aid *Resource) Attributes() azurermIothubDpsAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (aid *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (aid *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 Sku ¶
type Sku struct { // Capacity: number, required Capacity terra.NumberValue `hcl:"capacity,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` }
type SkuAttributes ¶
type SkuAttributes struct {
// contains filtered or unexported fields
}
func (SkuAttributes) Capacity ¶
func (s SkuAttributes) Capacity() terra.NumberValue
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
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 (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) Read ¶
func (t TimeoutsAttributes) Read() terra.StringValue
func (TimeoutsAttributes) Update ¶
func (t TimeoutsAttributes) Update() terra.StringValue