google_dataform_repository_workflow_config

package
v0.0.0-...-4deecce Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Args

type Args struct {
	// CronSchedule: string, optional
	CronSchedule terra.StringValue `hcl:"cron_schedule,attr"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// Project: string, optional
	Project terra.StringValue `hcl:"project,attr"`
	// Region: string, optional
	Region terra.StringValue `hcl:"region,attr"`
	// ReleaseConfig: string, required
	ReleaseConfig terra.StringValue `hcl:"release_config,attr" validate:"required"`
	// Repository: string, optional
	Repository terra.StringValue `hcl:"repository,attr"`
	// TimeZone: string, optional
	TimeZone terra.StringValue `hcl:"time_zone,attr"`
	// InvocationConfig: optional
	InvocationConfig *InvocationConfig `hcl:"invocation_config,block"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for google_dataform_repository_workflow_config.

type InvocationConfig

type InvocationConfig struct {
	// FullyRefreshIncrementalTablesEnabled: bool, optional
	FullyRefreshIncrementalTablesEnabled terra.BoolValue `hcl:"fully_refresh_incremental_tables_enabled,attr"`
	// IncludedTags: list of string, optional
	IncludedTags terra.ListValue[terra.StringValue] `hcl:"included_tags,attr"`
	// ServiceAccount: string, optional
	ServiceAccount terra.StringValue `hcl:"service_account,attr"`
	// TransitiveDependenciesIncluded: bool, optional
	TransitiveDependenciesIncluded terra.BoolValue `hcl:"transitive_dependencies_included,attr"`
	// TransitiveDependentsIncluded: bool, optional
	TransitiveDependentsIncluded terra.BoolValue `hcl:"transitive_dependents_included,attr"`
	// InvocationConfigIncludedTargets: min=0
	IncludedTargets []InvocationConfigIncludedTargets `hcl:"included_targets,block" validate:"min=0"`
}

type InvocationConfigAttributes

type InvocationConfigAttributes struct {
	// contains filtered or unexported fields
}

func (InvocationConfigAttributes) FullyRefreshIncrementalTablesEnabled

func (ic InvocationConfigAttributes) FullyRefreshIncrementalTablesEnabled() terra.BoolValue

func (InvocationConfigAttributes) IncludedTags

func (InvocationConfigAttributes) IncludedTargets

func (InvocationConfigAttributes) InternalRef

func (ic InvocationConfigAttributes) InternalRef() (terra.Reference, error)

func (InvocationConfigAttributes) InternalTokens

func (ic InvocationConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (InvocationConfigAttributes) InternalWithRef

func (InvocationConfigAttributes) ServiceAccount

func (ic InvocationConfigAttributes) ServiceAccount() terra.StringValue

func (InvocationConfigAttributes) TransitiveDependenciesIncluded

func (ic InvocationConfigAttributes) TransitiveDependenciesIncluded() terra.BoolValue

func (InvocationConfigAttributes) TransitiveDependentsIncluded

func (ic InvocationConfigAttributes) TransitiveDependentsIncluded() terra.BoolValue

type InvocationConfigIncludedTargets

type InvocationConfigIncludedTargets struct {
	// Database: string, optional
	Database terra.StringValue `hcl:"database,attr"`
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// Schema: string, optional
	Schema terra.StringValue `hcl:"schema,attr"`
}

type InvocationConfigIncludedTargetsAttributes

type InvocationConfigIncludedTargetsAttributes struct {
	// contains filtered or unexported fields
}

func (InvocationConfigIncludedTargetsAttributes) Database

func (InvocationConfigIncludedTargetsAttributes) InternalRef

func (InvocationConfigIncludedTargetsAttributes) InternalTokens

func (InvocationConfigIncludedTargetsAttributes) InternalWithRef

func (InvocationConfigIncludedTargetsAttributes) Name

func (InvocationConfigIncludedTargetsAttributes) Schema

type InvocationConfigIncludedTargetsState

type InvocationConfigIncludedTargetsState struct {
	Database string `json:"database"`
	Name     string `json:"name"`
	Schema   string `json:"schema"`
}

type InvocationConfigState

type InvocationConfigState struct {
	FullyRefreshIncrementalTablesEnabled bool                                   `json:"fully_refresh_incremental_tables_enabled"`
	IncludedTags                         []string                               `json:"included_tags"`
	ServiceAccount                       string                                 `json:"service_account"`
	TransitiveDependenciesIncluded       bool                                   `json:"transitive_dependencies_included"`
	TransitiveDependentsIncluded         bool                                   `json:"transitive_dependents_included"`
	IncludedTargets                      []InvocationConfigIncludedTargetsState `json:"included_targets"`
}

type RecentScheduledExecutionRecordsAttributes

type RecentScheduledExecutionRecordsAttributes struct {
	// contains filtered or unexported fields
}

func (RecentScheduledExecutionRecordsAttributes) ErrorStatus

func (RecentScheduledExecutionRecordsAttributes) ExecutionTime

func (RecentScheduledExecutionRecordsAttributes) InternalRef

func (RecentScheduledExecutionRecordsAttributes) InternalTokens

func (RecentScheduledExecutionRecordsAttributes) InternalWithRef

func (RecentScheduledExecutionRecordsAttributes) WorkflowInvocation

type RecentScheduledExecutionRecordsErrorStatusAttributes

type RecentScheduledExecutionRecordsErrorStatusAttributes struct {
	// contains filtered or unexported fields
}

func (RecentScheduledExecutionRecordsErrorStatusAttributes) Code

func (RecentScheduledExecutionRecordsErrorStatusAttributes) InternalRef

func (RecentScheduledExecutionRecordsErrorStatusAttributes) InternalTokens

func (RecentScheduledExecutionRecordsErrorStatusAttributes) InternalWithRef

func (RecentScheduledExecutionRecordsErrorStatusAttributes) Message

type RecentScheduledExecutionRecordsErrorStatusState

type RecentScheduledExecutionRecordsErrorStatusState struct {
	Code    float64 `json:"code"`
	Message string  `json:"message"`
}

type RecentScheduledExecutionRecordsState

type RecentScheduledExecutionRecordsState struct {
	ExecutionTime      string                                            `json:"execution_time"`
	WorkflowInvocation string                                            `json:"workflow_invocation"`
	ErrorStatus        []RecentScheduledExecutionRecordsErrorStatusState `json:"error_status"`
}

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 google_dataform_repository_workflow_config.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (gdrwc *Resource) Attributes() googleDataformRepositoryWorkflowConfigAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (gdrwc *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (gdrwc *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (gdrwc *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (gdrwc *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (gdrwc *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (gdrwc *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (gdrwc *Resource) State() (*googleDataformRepositoryWorkflowConfigState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (gdrwc *Resource) StateMust() *googleDataformRepositoryWorkflowConfigState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (gdrwc *Resource) Type() string

Type returns the Terraform object type 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 (TimeoutsAttributes) Delete

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

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL