google_healthcare_fhir_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 {
	// ComplexDataTypeReferenceParsing: string, optional
	ComplexDataTypeReferenceParsing terra.StringValue `hcl:"complex_data_type_reference_parsing,attr"`
	// Dataset: string, required
	Dataset terra.StringValue `hcl:"dataset,attr" validate:"required"`
	// DefaultSearchHandlingStrict: bool, optional
	DefaultSearchHandlingStrict terra.BoolValue `hcl:"default_search_handling_strict,attr"`
	// DisableReferentialIntegrity: bool, optional
	DisableReferentialIntegrity terra.BoolValue `hcl:"disable_referential_integrity,attr"`
	// DisableResourceVersioning: bool, optional
	DisableResourceVersioning terra.BoolValue `hcl:"disable_resource_versioning,attr"`
	// EnableHistoryImport: bool, optional
	EnableHistoryImport terra.BoolValue `hcl:"enable_history_import,attr"`
	// EnableHistoryModifications: bool, optional
	EnableHistoryModifications terra.BoolValue `hcl:"enable_history_modifications,attr"`
	// EnableUpdateCreate: bool, optional
	EnableUpdateCreate terra.BoolValue `hcl:"enable_update_create,attr"`
	// 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"`
	// Version: string, optional
	Version terra.StringValue `hcl:"version,attr"`
	// NotificationConfig: optional
	NotificationConfig *NotificationConfig `hcl:"notification_config,block"`
	// NotificationConfigs: min=0
	NotificationConfigs []NotificationConfigs `hcl:"notification_configs,block" validate:"min=0"`
	// StreamConfigs: min=0
	StreamConfigs []StreamConfigs `hcl:"stream_configs,block" validate:"min=0"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for google_healthcare_fhir_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 {
	// PubsubTopic: string, required
	PubsubTopic terra.StringValue `hcl:"pubsub_topic,attr" validate:"required"`
	// SendFullResource: bool, optional
	SendFullResource terra.BoolValue `hcl:"send_full_resource,attr"`
	// SendPreviousResourceOnDelete: bool, optional
	SendPreviousResourceOnDelete terra.BoolValue `hcl:"send_previous_resource_on_delete,attr"`
}

type NotificationConfigsAttributes

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

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

func (NotificationConfigsAttributes) SendFullResource

func (nc NotificationConfigsAttributes) SendFullResource() terra.BoolValue

func (NotificationConfigsAttributes) SendPreviousResourceOnDelete

func (nc NotificationConfigsAttributes) SendPreviousResourceOnDelete() terra.BoolValue

type NotificationConfigsState

type NotificationConfigsState struct {
	PubsubTopic                  string `json:"pubsub_topic"`
	SendFullResource             bool   `json:"send_full_resource"`
	SendPreviousResourceOnDelete bool   `json:"send_previous_resource_on_delete"`
}

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

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (ghfs *Resource) Attributes() googleHealthcareFhirStoreAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

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

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

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

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

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

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

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

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

func (*Resource) LifecycleManagement

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

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (ghfs *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (ghfs *Resource) State() (*googleHealthcareFhirStoreState, bool)

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

func (*Resource) StateMust

func (ghfs *Resource) StateMust() *googleHealthcareFhirStoreState

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

func (*Resource) Type

func (ghfs *Resource) Type() string

Type returns the Terraform object type for Resource.

type StreamConfigs

type StreamConfigs struct {
	// ResourceTypes: list of string, optional
	ResourceTypes terra.ListValue[terra.StringValue] `hcl:"resource_types,attr"`
	// StreamConfigsBigqueryDestination: required
	BigqueryDestination *StreamConfigsBigqueryDestination `hcl:"bigquery_destination,block" validate:"required"`
}

type StreamConfigsAttributes

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

func (StreamConfigsAttributes) BigqueryDestination

func (StreamConfigsAttributes) InternalRef

func (sc StreamConfigsAttributes) InternalRef() (terra.Reference, error)

func (StreamConfigsAttributes) InternalTokens

func (sc StreamConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (StreamConfigsAttributes) InternalWithRef

func (StreamConfigsAttributes) ResourceTypes

type StreamConfigsBigqueryDestination

type StreamConfigsBigqueryDestination struct {
	// DatasetUri: string, required
	DatasetUri terra.StringValue `hcl:"dataset_uri,attr" validate:"required"`
	// StreamConfigsBigqueryDestinationSchemaConfig: required
	SchemaConfig *StreamConfigsBigqueryDestinationSchemaConfig `hcl:"schema_config,block" validate:"required"`
}

type StreamConfigsBigqueryDestinationAttributes

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

func (StreamConfigsBigqueryDestinationAttributes) DatasetUri

func (StreamConfigsBigqueryDestinationAttributes) InternalRef

func (StreamConfigsBigqueryDestinationAttributes) InternalTokens

func (StreamConfigsBigqueryDestinationAttributes) InternalWithRef

func (StreamConfigsBigqueryDestinationAttributes) SchemaConfig

type StreamConfigsBigqueryDestinationSchemaConfig

type StreamConfigsBigqueryDestinationSchemaConfig struct {
	// RecursiveStructureDepth: number, required
	RecursiveStructureDepth terra.NumberValue `hcl:"recursive_structure_depth,attr" validate:"required"`
	// SchemaType: string, optional
	SchemaType terra.StringValue `hcl:"schema_type,attr"`
	// StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig: optional
	LastUpdatedPartitionConfig *StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig `hcl:"last_updated_partition_config,block"`
}

type StreamConfigsBigqueryDestinationSchemaConfigAttributes

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

func (StreamConfigsBigqueryDestinationSchemaConfigAttributes) InternalRef

func (StreamConfigsBigqueryDestinationSchemaConfigAttributes) InternalTokens

func (StreamConfigsBigqueryDestinationSchemaConfigAttributes) InternalWithRef

func (StreamConfigsBigqueryDestinationSchemaConfigAttributes) RecursiveStructureDepth

func (StreamConfigsBigqueryDestinationSchemaConfigAttributes) SchemaType

type StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig

type StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig struct {
	// ExpirationMs: string, optional
	ExpirationMs terra.StringValue `hcl:"expiration_ms,attr"`
	// Type: string, required
	Type terra.StringValue `hcl:"type,attr" validate:"required"`
}

type StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigAttributes

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

func (StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigAttributes) ExpirationMs

func (StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigAttributes) InternalRef

func (StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigAttributes) InternalTokens

func (StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigAttributes) InternalWithRef

func (StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigAttributes) Type

type StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigState

type StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigState struct {
	ExpirationMs string `json:"expiration_ms"`
	Type         string `json:"type"`
}

type StreamConfigsBigqueryDestinationSchemaConfigState

type StreamConfigsBigqueryDestinationSchemaConfigState struct {
	RecursiveStructureDepth    float64                                                                       `json:"recursive_structure_depth"`
	SchemaType                 string                                                                        `json:"schema_type"`
	LastUpdatedPartitionConfig []StreamConfigsBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigState `json:"last_updated_partition_config"`
}

type StreamConfigsBigqueryDestinationState

type StreamConfigsBigqueryDestinationState struct {
	DatasetUri   string                                              `json:"dataset_uri"`
	SchemaConfig []StreamConfigsBigqueryDestinationSchemaConfigState `json:"schema_config"`
}

type StreamConfigsState

type StreamConfigsState struct {
	ResourceTypes       []string                                `json:"resource_types"`
	BigqueryDestination []StreamConfigsBigqueryDestinationState `json:"bigquery_destination"`
}

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