Documentation ¶
Index ¶
- type Args
- type NotificationConfig
- type NotificationConfigAttributes
- func (nc NotificationConfigAttributes) InternalRef() (terra.Reference, error)
- func (nc NotificationConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (nc NotificationConfigAttributes) InternalWithRef(ref terra.Reference) NotificationConfigAttributes
- func (nc NotificationConfigAttributes) PubsubTopic() terra.StringValue
- type NotificationConfigState
- type NotificationConfigs
- type NotificationConfigsAttributes
- func (nc NotificationConfigsAttributes) Filter() terra.StringValue
- func (nc NotificationConfigsAttributes) InternalRef() (terra.Reference, error)
- func (nc NotificationConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (nc NotificationConfigsAttributes) InternalWithRef(ref terra.Reference) NotificationConfigsAttributes
- func (nc NotificationConfigsAttributes) PubsubTopic() terra.StringValue
- type NotificationConfigsState
- type ParserConfig
- type ParserConfigAttributes
- func (pc ParserConfigAttributes) AllowNullHeader() terra.BoolValue
- func (pc ParserConfigAttributes) InternalRef() (terra.Reference, error)
- func (pc ParserConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (pc ParserConfigAttributes) InternalWithRef(ref terra.Reference) ParserConfigAttributes
- func (pc ParserConfigAttributes) Schema() terra.StringValue
- func (pc ParserConfigAttributes) SegmentTerminator() terra.StringValue
- func (pc ParserConfigAttributes) Version() terra.StringValue
- type ParserConfigState
- type Resource
- func (ghhvs *Resource) Attributes() googleHealthcareHl7V2StoreAttributes
- func (ghhvs *Resource) Configuration() interface{}
- func (ghhvs *Resource) DependOn() terra.Reference
- func (ghhvs *Resource) Dependencies() terra.Dependencies
- func (ghhvs *Resource) ImportState(state io.Reader) error
- func (ghhvs *Resource) LifecycleManagement() *terra.Lifecycle
- func (ghhvs *Resource) LocalName() string
- func (ghhvs *Resource) State() (*googleHealthcareHl7V2StoreState, bool)
- func (ghhvs *Resource) StateMust() *googleHealthcareHl7V2StoreState
- func (ghhvs *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) Update() terra.StringValue
- type TimeoutsState
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 (nc NotificationConfigAttributes) InternalWithRef(ref terra.Reference) NotificationConfigAttributes
func (NotificationConfigAttributes) PubsubTopic ¶
func (nc NotificationConfigAttributes) PubsubTopic() terra.StringValue
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 (nc NotificationConfigsAttributes) Filter() terra.StringValue
func (NotificationConfigsAttributes) InternalRef ¶
func (nc NotificationConfigsAttributes) InternalRef() (terra.Reference, error)
func (NotificationConfigsAttributes) InternalTokens ¶
func (nc NotificationConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (NotificationConfigsAttributes) InternalWithRef ¶
func (nc NotificationConfigsAttributes) InternalWithRef(ref terra.Reference) NotificationConfigsAttributes
func (NotificationConfigsAttributes) PubsubTopic ¶
func (nc NotificationConfigsAttributes) PubsubTopic() terra.StringValue
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 (pc ParserConfigAttributes) InternalWithRef(ref terra.Reference) ParserConfigAttributes
func (ParserConfigAttributes) Schema ¶
func (pc ParserConfigAttributes) Schema() terra.StringValue
func (ParserConfigAttributes) SegmentTerminator ¶
func (pc ParserConfigAttributes) SegmentTerminator() terra.StringValue
func (ParserConfigAttributes) Version ¶
func (pc ParserConfigAttributes) Version() terra.StringValue
type ParserConfigState ¶
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 (*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) Dependencies ¶
func (ghhvs *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"` // 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) Update ¶
func (t TimeoutsAttributes) Update() terra.StringValue
type TimeoutsState ¶
Click to show internal directories.
Click to hide internal directories.