Documentation ¶
Index ¶
- type Command
- type CommandAttributes
- func (c CommandAttributes) InternalRef() (terra.Reference, error)
- func (c CommandAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (c CommandAttributes) InternalWithRef(ref terra.Reference) CommandAttributes
- func (c CommandAttributes) Name() terra.StringValue
- func (c CommandAttributes) PythonVersion() terra.StringValue
- func (c CommandAttributes) Runtime() terra.StringValue
- func (c CommandAttributes) ScriptLocation() terra.StringValue
- type CommandState
- type ExecutionProperty
- type ExecutionPropertyAttributes
- func (ep ExecutionPropertyAttributes) InternalRef() (terra.Reference, error)
- func (ep ExecutionPropertyAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ep ExecutionPropertyAttributes) InternalWithRef(ref terra.Reference) ExecutionPropertyAttributes
- func (ep ExecutionPropertyAttributes) MaxConcurrentRuns() terra.NumberValue
- type ExecutionPropertyState
- type NotificationProperty
- type NotificationPropertyAttributes
- func (np NotificationPropertyAttributes) InternalRef() (terra.Reference, error)
- func (np NotificationPropertyAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (np NotificationPropertyAttributes) InternalWithRef(ref terra.Reference) NotificationPropertyAttributes
- func (np NotificationPropertyAttributes) NotifyDelayAfter() terra.NumberValue
- type NotificationPropertyState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Command ¶
type Command struct { // Name: string, optional Name terra.StringValue `hcl:"name,attr"` // PythonVersion: string, optional PythonVersion terra.StringValue `hcl:"python_version,attr"` // Runtime: string, optional Runtime terra.StringValue `hcl:"runtime,attr"` // ScriptLocation: string, required ScriptLocation terra.StringValue `hcl:"script_location,attr" validate:"required"` }
type CommandAttributes ¶
type CommandAttributes struct {
// contains filtered or unexported fields
}
func (CommandAttributes) InternalRef ¶
func (c CommandAttributes) InternalRef() (terra.Reference, error)
func (CommandAttributes) InternalTokens ¶
func (c CommandAttributes) InternalTokens() (hclwrite.Tokens, error)
func (CommandAttributes) InternalWithRef ¶
func (c CommandAttributes) InternalWithRef(ref terra.Reference) CommandAttributes
func (CommandAttributes) Name ¶
func (c CommandAttributes) Name() terra.StringValue
func (CommandAttributes) PythonVersion ¶
func (c CommandAttributes) PythonVersion() terra.StringValue
func (CommandAttributes) Runtime ¶
func (c CommandAttributes) Runtime() terra.StringValue
func (CommandAttributes) ScriptLocation ¶
func (c CommandAttributes) ScriptLocation() terra.StringValue
type CommandState ¶
type ExecutionProperty ¶
type ExecutionProperty struct { // MaxConcurrentRuns: number, optional MaxConcurrentRuns terra.NumberValue `hcl:"max_concurrent_runs,attr"` }
type ExecutionPropertyAttributes ¶
type ExecutionPropertyAttributes struct {
// contains filtered or unexported fields
}
func (ExecutionPropertyAttributes) InternalRef ¶
func (ep ExecutionPropertyAttributes) InternalRef() (terra.Reference, error)
func (ExecutionPropertyAttributes) InternalTokens ¶
func (ep ExecutionPropertyAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ExecutionPropertyAttributes) InternalWithRef ¶
func (ep ExecutionPropertyAttributes) InternalWithRef(ref terra.Reference) ExecutionPropertyAttributes
func (ExecutionPropertyAttributes) MaxConcurrentRuns ¶
func (ep ExecutionPropertyAttributes) MaxConcurrentRuns() terra.NumberValue
type ExecutionPropertyState ¶
type ExecutionPropertyState struct {
MaxConcurrentRuns float64 `json:"max_concurrent_runs"`
}
type NotificationProperty ¶
type NotificationProperty struct { // NotifyDelayAfter: number, optional NotifyDelayAfter terra.NumberValue `hcl:"notify_delay_after,attr"` }
type NotificationPropertyAttributes ¶
type NotificationPropertyAttributes struct {
// contains filtered or unexported fields
}
func (NotificationPropertyAttributes) InternalRef ¶
func (np NotificationPropertyAttributes) InternalRef() (terra.Reference, error)
func (NotificationPropertyAttributes) InternalTokens ¶
func (np NotificationPropertyAttributes) InternalTokens() (hclwrite.Tokens, error)
func (NotificationPropertyAttributes) InternalWithRef ¶
func (np NotificationPropertyAttributes) InternalWithRef(ref terra.Reference) NotificationPropertyAttributes
func (NotificationPropertyAttributes) NotifyDelayAfter ¶
func (np NotificationPropertyAttributes) NotifyDelayAfter() terra.NumberValue
type NotificationPropertyState ¶
type NotificationPropertyState struct {
NotifyDelayAfter float64 `json:"notify_delay_after"`
}
Click to show internal directories.
Click to hide internal directories.