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 Resource
- func (ghds *Resource) Attributes() googleHealthcareDicomStoreAttributes
- func (ghds *Resource) Configuration() interface{}
- func (ghds *Resource) DependOn() terra.Reference
- func (ghds *Resource) Dependencies() terra.Dependencies
- func (ghds *Resource) ImportState(state io.Reader) error
- func (ghds *Resource) LifecycleManagement() *terra.Lifecycle
- func (ghds *Resource) LocalName() string
- func (ghds *Resource) State() (*googleHealthcareDicomStoreState, bool)
- func (ghds *Resource) StateMust() *googleHealthcareDicomStoreState
- func (ghds *Resource) Type() string
- type StreamConfigs
- type StreamConfigsAttributes
- func (sc StreamConfigsAttributes) BigqueryDestination() terra.ListValue[StreamConfigsBigqueryDestinationAttributes]
- func (sc StreamConfigsAttributes) InternalRef() (terra.Reference, error)
- func (sc StreamConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (sc StreamConfigsAttributes) InternalWithRef(ref terra.Reference) StreamConfigsAttributes
- type StreamConfigsBigqueryDestination
- type StreamConfigsBigqueryDestinationAttributes
- func (bd StreamConfigsBigqueryDestinationAttributes) InternalRef() (terra.Reference, error)
- func (bd StreamConfigsBigqueryDestinationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (bd StreamConfigsBigqueryDestinationAttributes) InternalWithRef(ref terra.Reference) StreamConfigsBigqueryDestinationAttributes
- func (bd StreamConfigsBigqueryDestinationAttributes) TableUri() terra.StringValue
- type StreamConfigsBigqueryDestinationState
- type StreamConfigsState
- 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"` // NotificationConfig: optional NotificationConfig *NotificationConfig `hcl:"notification_config,block"` // 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_dicom_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 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_dicom_store.
func (*Resource) Attributes ¶
func (ghds *Resource) Attributes() googleHealthcareDicomStoreAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (ghds *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (ghds *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 StreamConfigs ¶
type StreamConfigs struct { // StreamConfigsBigqueryDestination: required BigqueryDestination *StreamConfigsBigqueryDestination `hcl:"bigquery_destination,block" validate:"required"` }
type StreamConfigsAttributes ¶
type StreamConfigsAttributes struct {
// contains filtered or unexported fields
}
func (StreamConfigsAttributes) BigqueryDestination ¶
func (sc StreamConfigsAttributes) BigqueryDestination() terra.ListValue[StreamConfigsBigqueryDestinationAttributes]
func (StreamConfigsAttributes) InternalRef ¶
func (sc StreamConfigsAttributes) InternalRef() (terra.Reference, error)
func (StreamConfigsAttributes) InternalTokens ¶
func (sc StreamConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (StreamConfigsAttributes) InternalWithRef ¶
func (sc StreamConfigsAttributes) InternalWithRef(ref terra.Reference) StreamConfigsAttributes
type StreamConfigsBigqueryDestination ¶
type StreamConfigsBigqueryDestination struct { // TableUri: string, required TableUri terra.StringValue `hcl:"table_uri,attr" validate:"required"` }
type StreamConfigsBigqueryDestinationAttributes ¶
type StreamConfigsBigqueryDestinationAttributes struct {
// contains filtered or unexported fields
}
func (StreamConfigsBigqueryDestinationAttributes) InternalRef ¶
func (bd StreamConfigsBigqueryDestinationAttributes) InternalRef() (terra.Reference, error)
func (StreamConfigsBigqueryDestinationAttributes) InternalTokens ¶
func (bd StreamConfigsBigqueryDestinationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (StreamConfigsBigqueryDestinationAttributes) InternalWithRef ¶
func (bd StreamConfigsBigqueryDestinationAttributes) InternalWithRef(ref terra.Reference) StreamConfigsBigqueryDestinationAttributes
func (StreamConfigsBigqueryDestinationAttributes) TableUri ¶
func (bd StreamConfigsBigqueryDestinationAttributes) TableUri() terra.StringValue
type StreamConfigsBigqueryDestinationState ¶
type StreamConfigsBigqueryDestinationState struct {
TableUri string `json:"table_uri"`
}
type StreamConfigsState ¶
type StreamConfigsState struct {
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 (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.