google_healthcare_hl7_v2_store

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 {
	// Dataset: string, required
	Dataset terra.StringValue `hcl:"dataset,attr" validate:"required"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// Labels: map of string, optional
	Labels terra.MapValue[terra.StringValue] `hcl:"labels,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// RejectDuplicateMessage: bool, optional
	RejectDuplicateMessage terra.BoolValue `hcl:"reject_duplicate_message,attr"`
	// NotificationConfig: optional
	NotificationConfig *NotificationConfig `hcl:"notification_config,block"`
	// NotificationConfigs: min=0
	NotificationConfigs []NotificationConfigs `hcl:"notification_configs,block" validate:"min=0"`
	// ParserConfig: optional
	ParserConfig *ParserConfig `hcl:"parser_config,block"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for google_healthcare_hl7_v2_store.

type NotificationConfig

type NotificationConfig struct {
	// PubsubTopic: string, required
	PubsubTopic terra.StringValue `hcl:"pubsub_topic,attr" validate:"required"`
}

type NotificationConfigAttributes

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

func (NotificationConfigAttributes) InternalRef

func (nc NotificationConfigAttributes) InternalRef() (terra.Reference, error)

func (NotificationConfigAttributes) InternalTokens

func (nc NotificationConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (NotificationConfigAttributes) InternalWithRef

func (NotificationConfigAttributes) PubsubTopic

type NotificationConfigState

type NotificationConfigState struct {
	PubsubTopic string `json:"pubsub_topic"`
}

type NotificationConfigs

type NotificationConfigs struct {
	// Filter: string, optional
	Filter terra.StringValue `hcl:"filter,attr"`
	// PubsubTopic: string, required
	PubsubTopic terra.StringValue `hcl:"pubsub_topic,attr" validate:"required"`
}

type NotificationConfigsAttributes

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

func (NotificationConfigsAttributes) Filter

func (NotificationConfigsAttributes) InternalRef

func (nc NotificationConfigsAttributes) InternalRef() (terra.Reference, error)

func (NotificationConfigsAttributes) InternalTokens

func (nc NotificationConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (NotificationConfigsAttributes) InternalWithRef

func (NotificationConfigsAttributes) PubsubTopic

type NotificationConfigsState

type NotificationConfigsState struct {
	Filter      string `json:"filter"`
	PubsubTopic string `json:"pubsub_topic"`
}

type ParserConfig

type ParserConfig struct {
	// AllowNullHeader: bool, optional
	AllowNullHeader terra.BoolValue `hcl:"allow_null_header,attr"`
	// Schema: string, optional
	Schema terra.StringValue `hcl:"schema,attr"`
	// SegmentTerminator: string, optional
	SegmentTerminator terra.StringValue `hcl:"segment_terminator,attr"`
	// Version: string, optional
	Version terra.StringValue `hcl:"version,attr"`
}

type ParserConfigAttributes

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

func (ParserConfigAttributes) AllowNullHeader

func (pc ParserConfigAttributes) AllowNullHeader() terra.BoolValue

func (ParserConfigAttributes) InternalRef

func (pc ParserConfigAttributes) InternalRef() (terra.Reference, error)

func (ParserConfigAttributes) InternalTokens

func (pc ParserConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ParserConfigAttributes) InternalWithRef

func (ParserConfigAttributes) Schema

func (ParserConfigAttributes) SegmentTerminator

func (pc ParserConfigAttributes) SegmentTerminator() terra.StringValue

func (ParserConfigAttributes) Version

type ParserConfigState

type ParserConfigState struct {
	AllowNullHeader   bool   `json:"allow_null_header"`
	Schema            string `json:"schema"`
	SegmentTerminator string `json:"segment_terminator"`
	Version           string `json:"version"`
}

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

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (ghhvs *Resource) Attributes() googleHealthcareHl7V2StoreAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

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

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

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

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

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

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

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

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

func (*Resource) LifecycleManagement

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

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (ghhvs *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (ghhvs *Resource) State() (*googleHealthcareHl7V2StoreState, bool)

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

func (*Resource) StateMust

func (ghhvs *Resource) StateMust() *googleHealthcareHl7V2StoreState

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

func (*Resource) Type

func (ghhvs *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