Documentation ¶
Index ¶
- type Args
- type DailyRecurrence
- type DailyRecurrenceAttributes
- func (dr DailyRecurrenceAttributes) InternalRef() (terra.Reference, error)
- func (dr DailyRecurrenceAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (dr DailyRecurrenceAttributes) InternalWithRef(ref terra.Reference) DailyRecurrenceAttributes
- func (dr DailyRecurrenceAttributes) Time() terra.StringValue
- type DailyRecurrenceState
- type HourlyRecurrence
- type HourlyRecurrenceAttributes
- func (hr HourlyRecurrenceAttributes) InternalRef() (terra.Reference, error)
- func (hr HourlyRecurrenceAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (hr HourlyRecurrenceAttributes) InternalWithRef(ref terra.Reference) HourlyRecurrenceAttributes
- func (hr HourlyRecurrenceAttributes) Minute() terra.NumberValue
- type HourlyRecurrenceState
- type NotificationSettings
- type NotificationSettingsAttributes
- func (ns NotificationSettingsAttributes) InternalRef() (terra.Reference, error)
- func (ns NotificationSettingsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ns NotificationSettingsAttributes) InternalWithRef(ref terra.Reference) NotificationSettingsAttributes
- func (ns NotificationSettingsAttributes) Status() terra.StringValue
- func (ns NotificationSettingsAttributes) TimeInMinutes() terra.NumberValue
- func (ns NotificationSettingsAttributes) WebhookUrl() terra.StringValue
- type NotificationSettingsState
- type Resource
- func (adts *Resource) Attributes() azurermDevTestScheduleAttributes
- func (adts *Resource) Configuration() interface{}
- func (adts *Resource) DependOn() terra.Reference
- func (adts *Resource) Dependencies() terra.Dependencies
- func (adts *Resource) ImportState(state io.Reader) error
- func (adts *Resource) LifecycleManagement() *terra.Lifecycle
- func (adts *Resource) LocalName() string
- func (adts *Resource) State() (*azurermDevTestScheduleState, bool)
- func (adts *Resource) StateMust() *azurermDevTestScheduleState
- func (adts *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
- type WeeklyRecurrence
- type WeeklyRecurrenceAttributes
- func (wr WeeklyRecurrenceAttributes) InternalRef() (terra.Reference, error)
- func (wr WeeklyRecurrenceAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (wr WeeklyRecurrenceAttributes) InternalWithRef(ref terra.Reference) WeeklyRecurrenceAttributes
- func (wr WeeklyRecurrenceAttributes) Time() terra.StringValue
- func (wr WeeklyRecurrenceAttributes) WeekDays() terra.ListValue[terra.StringValue]
- type WeeklyRecurrenceState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // LabName: string, required LabName terra.StringValue `hcl:"lab_name,attr" validate:"required"` // 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"` // Status: string, optional Status terra.StringValue `hcl:"status,attr"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // TaskType: string, required TaskType terra.StringValue `hcl:"task_type,attr" validate:"required"` // TimeZoneId: string, required TimeZoneId terra.StringValue `hcl:"time_zone_id,attr" validate:"required"` // DailyRecurrence: optional DailyRecurrence *DailyRecurrence `hcl:"daily_recurrence,block"` // HourlyRecurrence: optional HourlyRecurrence *HourlyRecurrence `hcl:"hourly_recurrence,block"` // NotificationSettings: required NotificationSettings *NotificationSettings `hcl:"notification_settings,block" validate:"required"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` // WeeklyRecurrence: optional WeeklyRecurrence *WeeklyRecurrence `hcl:"weekly_recurrence,block"` }
Args contains the configurations for azurerm_dev_test_schedule.
type DailyRecurrence ¶
type DailyRecurrence struct { // Time: string, required Time terra.StringValue `hcl:"time,attr" validate:"required"` }
type DailyRecurrenceAttributes ¶
type DailyRecurrenceAttributes struct {
// contains filtered or unexported fields
}
func (DailyRecurrenceAttributes) InternalRef ¶
func (dr DailyRecurrenceAttributes) InternalRef() (terra.Reference, error)
func (DailyRecurrenceAttributes) InternalTokens ¶
func (dr DailyRecurrenceAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DailyRecurrenceAttributes) InternalWithRef ¶
func (dr DailyRecurrenceAttributes) InternalWithRef(ref terra.Reference) DailyRecurrenceAttributes
func (DailyRecurrenceAttributes) Time ¶
func (dr DailyRecurrenceAttributes) Time() terra.StringValue
type DailyRecurrenceState ¶
type DailyRecurrenceState struct {
Time string `json:"time"`
}
type HourlyRecurrence ¶
type HourlyRecurrence struct { // Minute: number, required Minute terra.NumberValue `hcl:"minute,attr" validate:"required"` }
type HourlyRecurrenceAttributes ¶
type HourlyRecurrenceAttributes struct {
// contains filtered or unexported fields
}
func (HourlyRecurrenceAttributes) InternalRef ¶
func (hr HourlyRecurrenceAttributes) InternalRef() (terra.Reference, error)
func (HourlyRecurrenceAttributes) InternalTokens ¶
func (hr HourlyRecurrenceAttributes) InternalTokens() (hclwrite.Tokens, error)
func (HourlyRecurrenceAttributes) InternalWithRef ¶
func (hr HourlyRecurrenceAttributes) InternalWithRef(ref terra.Reference) HourlyRecurrenceAttributes
func (HourlyRecurrenceAttributes) Minute ¶
func (hr HourlyRecurrenceAttributes) Minute() terra.NumberValue
type HourlyRecurrenceState ¶
type HourlyRecurrenceState struct {
Minute float64 `json:"minute"`
}
type NotificationSettings ¶
type NotificationSettings struct { // Status: string, optional Status terra.StringValue `hcl:"status,attr"` // TimeInMinutes: number, optional TimeInMinutes terra.NumberValue `hcl:"time_in_minutes,attr"` // WebhookUrl: string, optional WebhookUrl terra.StringValue `hcl:"webhook_url,attr"` }
type NotificationSettingsAttributes ¶
type NotificationSettingsAttributes struct {
// contains filtered or unexported fields
}
func (NotificationSettingsAttributes) InternalRef ¶
func (ns NotificationSettingsAttributes) InternalRef() (terra.Reference, error)
func (NotificationSettingsAttributes) InternalTokens ¶
func (ns NotificationSettingsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (NotificationSettingsAttributes) InternalWithRef ¶
func (ns NotificationSettingsAttributes) InternalWithRef(ref terra.Reference) NotificationSettingsAttributes
func (NotificationSettingsAttributes) Status ¶
func (ns NotificationSettingsAttributes) Status() terra.StringValue
func (NotificationSettingsAttributes) TimeInMinutes ¶
func (ns NotificationSettingsAttributes) TimeInMinutes() terra.NumberValue
func (NotificationSettingsAttributes) WebhookUrl ¶
func (ns NotificationSettingsAttributes) WebhookUrl() terra.StringValue
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_dev_test_schedule.
func (*Resource) Attributes ¶
func (adts *Resource) Attributes() azurermDevTestScheduleAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (adts *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (adts *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
type TimeoutsState ¶
type WeeklyRecurrence ¶
type WeeklyRecurrence struct { // Time: string, required Time terra.StringValue `hcl:"time,attr" validate:"required"` // WeekDays: list of string, optional WeekDays terra.ListValue[terra.StringValue] `hcl:"week_days,attr"` }
type WeeklyRecurrenceAttributes ¶
type WeeklyRecurrenceAttributes struct {
// contains filtered or unexported fields
}
func (WeeklyRecurrenceAttributes) InternalRef ¶
func (wr WeeklyRecurrenceAttributes) InternalRef() (terra.Reference, error)
func (WeeklyRecurrenceAttributes) InternalTokens ¶
func (wr WeeklyRecurrenceAttributes) InternalTokens() (hclwrite.Tokens, error)
func (WeeklyRecurrenceAttributes) InternalWithRef ¶
func (wr WeeklyRecurrenceAttributes) InternalWithRef(ref terra.Reference) WeeklyRecurrenceAttributes
func (WeeklyRecurrenceAttributes) Time ¶
func (wr WeeklyRecurrenceAttributes) Time() terra.StringValue
func (WeeklyRecurrenceAttributes) WeekDays ¶
func (wr WeeklyRecurrenceAttributes) WeekDays() terra.ListValue[terra.StringValue]
type WeeklyRecurrenceState ¶
Click to show internal directories.
Click to hide internal directories.