Documentation ¶
Index ¶
- type Args
- type Criteria
- type CriteriaAttributes
- func (c CriteriaAttributes) Dimension() terra.SetValue[CriteriaDimensionAttributes]
- func (c CriteriaAttributes) InternalRef() (terra.Reference, error)
- func (c CriteriaAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (c CriteriaAttributes) InternalWithRef(ref terra.Reference) CriteriaAttributes
- func (c CriteriaAttributes) MetricName() terra.StringValue
- type CriteriaDimension
- type CriteriaDimensionAttributes
- func (d CriteriaDimensionAttributes) InternalRef() (terra.Reference, error)
- func (d CriteriaDimensionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (d CriteriaDimensionAttributes) InternalWithRef(ref terra.Reference) CriteriaDimensionAttributes
- func (d CriteriaDimensionAttributes) Name() terra.StringValue
- func (d CriteriaDimensionAttributes) Operator() terra.StringValue
- func (d CriteriaDimensionAttributes) Values() terra.ListValue[terra.StringValue]
- type CriteriaDimensionState
- type CriteriaState
- type DataArgs
- type DataCriteriaAttributes
- func (c DataCriteriaAttributes) Dimension() terra.SetValue[DataCriteriaDimensionAttributes]
- func (c DataCriteriaAttributes) InternalRef() (terra.Reference, error)
- func (c DataCriteriaAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (c DataCriteriaAttributes) InternalWithRef(ref terra.Reference) DataCriteriaAttributes
- func (c DataCriteriaAttributes) MetricName() terra.StringValue
- type DataCriteriaDimensionAttributes
- func (d DataCriteriaDimensionAttributes) InternalRef() (terra.Reference, error)
- func (d DataCriteriaDimensionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (d DataCriteriaDimensionAttributes) InternalWithRef(ref terra.Reference) DataCriteriaDimensionAttributes
- func (d DataCriteriaDimensionAttributes) Name() terra.StringValue
- func (d DataCriteriaDimensionAttributes) Operator() terra.StringValue
- func (d DataCriteriaDimensionAttributes) Values() terra.ListValue[terra.StringValue]
- type DataCriteriaDimensionState
- type DataCriteriaState
- type DataSource
- type DataTimeouts
- type DataTimeoutsAttributes
- type DataTimeoutsState
- type Resource
- func (amsqrl *Resource) Attributes() azurermMonitorScheduledQueryRulesLogAttributes
- func (amsqrl *Resource) Configuration() interface{}
- func (amsqrl *Resource) DependOn() terra.Reference
- func (amsqrl *Resource) Dependencies() terra.Dependencies
- func (amsqrl *Resource) ImportState(state io.Reader) error
- func (amsqrl *Resource) LifecycleManagement() *terra.Lifecycle
- func (amsqrl *Resource) LocalName() string
- func (amsqrl *Resource) State() (*azurermMonitorScheduledQueryRulesLogState, bool)
- func (amsqrl *Resource) StateMust() *azurermMonitorScheduledQueryRulesLogState
- func (amsqrl *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) 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 { // AuthorizedResourceIds: set of string, optional AuthorizedResourceIds terra.SetValue[terra.StringValue] `hcl:"authorized_resource_ids,attr"` // DataSourceId: string, required DataSourceId terra.StringValue `hcl:"data_source_id,attr" validate:"required"` // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Enabled: bool, optional Enabled terra.BoolValue `hcl:"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"` // 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"` // Criteria: required Criteria *Criteria `hcl:"criteria,block" validate:"required"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for azurerm_monitor_scheduled_query_rules_log.
type Criteria ¶
type Criteria struct { // MetricName: string, required MetricName terra.StringValue `hcl:"metric_name,attr" validate:"required"` // CriteriaDimension: min=1 Dimension []CriteriaDimension `hcl:"dimension,block" validate:"min=1"` }
type CriteriaAttributes ¶
type CriteriaAttributes struct {
// contains filtered or unexported fields
}
func (CriteriaAttributes) Dimension ¶
func (c CriteriaAttributes) Dimension() terra.SetValue[CriteriaDimensionAttributes]
func (CriteriaAttributes) InternalRef ¶
func (c CriteriaAttributes) InternalRef() (terra.Reference, error)
func (CriteriaAttributes) InternalTokens ¶
func (c CriteriaAttributes) InternalTokens() (hclwrite.Tokens, error)
func (CriteriaAttributes) InternalWithRef ¶
func (c CriteriaAttributes) InternalWithRef(ref terra.Reference) CriteriaAttributes
func (CriteriaAttributes) MetricName ¶
func (c CriteriaAttributes) MetricName() terra.StringValue
type CriteriaDimension ¶
type CriteriaDimension struct { // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Operator: string, optional Operator terra.StringValue `hcl:"operator,attr"` // Values: list of string, required Values terra.ListValue[terra.StringValue] `hcl:"values,attr" validate:"required"` }
type CriteriaDimensionAttributes ¶
type CriteriaDimensionAttributes struct {
// contains filtered or unexported fields
}
func (CriteriaDimensionAttributes) InternalRef ¶
func (d CriteriaDimensionAttributes) InternalRef() (terra.Reference, error)
func (CriteriaDimensionAttributes) InternalTokens ¶
func (d CriteriaDimensionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (CriteriaDimensionAttributes) InternalWithRef ¶
func (d CriteriaDimensionAttributes) InternalWithRef(ref terra.Reference) CriteriaDimensionAttributes
func (CriteriaDimensionAttributes) Name ¶
func (d CriteriaDimensionAttributes) Name() terra.StringValue
func (CriteriaDimensionAttributes) Operator ¶
func (d CriteriaDimensionAttributes) Operator() terra.StringValue
func (CriteriaDimensionAttributes) Values ¶
func (d CriteriaDimensionAttributes) Values() terra.ListValue[terra.StringValue]
type CriteriaDimensionState ¶
type CriteriaState ¶
type CriteriaState struct { MetricName string `json:"metric_name"` Dimension []CriteriaDimensionState `json:"dimension"` }
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_monitor_scheduled_query_rules_log.
type DataCriteriaAttributes ¶
type DataCriteriaAttributes struct {
// contains filtered or unexported fields
}
func (DataCriteriaAttributes) Dimension ¶
func (c DataCriteriaAttributes) Dimension() terra.SetValue[DataCriteriaDimensionAttributes]
func (DataCriteriaAttributes) InternalRef ¶
func (c DataCriteriaAttributes) InternalRef() (terra.Reference, error)
func (DataCriteriaAttributes) InternalTokens ¶
func (c DataCriteriaAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataCriteriaAttributes) InternalWithRef ¶
func (c DataCriteriaAttributes) InternalWithRef(ref terra.Reference) DataCriteriaAttributes
func (DataCriteriaAttributes) MetricName ¶
func (c DataCriteriaAttributes) MetricName() terra.StringValue
type DataCriteriaDimensionAttributes ¶
type DataCriteriaDimensionAttributes struct {
// contains filtered or unexported fields
}
func (DataCriteriaDimensionAttributes) InternalRef ¶
func (d DataCriteriaDimensionAttributes) InternalRef() (terra.Reference, error)
func (DataCriteriaDimensionAttributes) InternalTokens ¶
func (d DataCriteriaDimensionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataCriteriaDimensionAttributes) InternalWithRef ¶
func (d DataCriteriaDimensionAttributes) InternalWithRef(ref terra.Reference) DataCriteriaDimensionAttributes
func (DataCriteriaDimensionAttributes) Name ¶
func (d DataCriteriaDimensionAttributes) Name() terra.StringValue
func (DataCriteriaDimensionAttributes) Operator ¶
func (d DataCriteriaDimensionAttributes) Operator() terra.StringValue
func (DataCriteriaDimensionAttributes) Values ¶
func (d DataCriteriaDimensionAttributes) Values() terra.ListValue[terra.StringValue]
type DataCriteriaState ¶
type DataCriteriaState struct { MetricName string `json:"metric_name"` Dimension []DataCriteriaDimensionState `json:"dimension"` }
type DataSource ¶
DataSource represents the Terraform data resource azurerm_monitor_scheduled_query_rules_log.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (amsqrl *DataSource) Attributes() dataAzurermMonitorScheduledQueryRulesLogAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (amsqrl *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (amsqrl *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (amsqrl *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 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_monitor_scheduled_query_rules_log.
func (*Resource) Attributes ¶
func (amsqrl *Resource) Attributes() azurermMonitorScheduledQueryRulesLogAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (amsqrl *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (amsqrl *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"` // 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