Documentation ¶
Index ¶
- type Args
- type AuthenticationConfiguration
- type AuthenticationConfigurationAttributes
- func (ac AuthenticationConfigurationAttributes) Audience() terra.StringValue
- func (ac AuthenticationConfigurationAttributes) Authority() terra.StringValue
- func (ac AuthenticationConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (ac AuthenticationConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ac AuthenticationConfigurationAttributes) InternalWithRef(ref terra.Reference) AuthenticationConfigurationAttributes
- func (ac AuthenticationConfigurationAttributes) SmartProxyEnabled() terra.BoolValue
- type AuthenticationConfigurationState
- type CorsConfiguration
- type CorsConfigurationAttributes
- func (cc CorsConfigurationAttributes) AllowCredentials() terra.BoolValue
- func (cc CorsConfigurationAttributes) AllowedHeaders() terra.SetValue[terra.StringValue]
- func (cc CorsConfigurationAttributes) AllowedMethods() terra.ListValue[terra.StringValue]
- func (cc CorsConfigurationAttributes) AllowedOrigins() terra.SetValue[terra.StringValue]
- func (cc CorsConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (cc CorsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (cc CorsConfigurationAttributes) InternalWithRef(ref terra.Reference) CorsConfigurationAttributes
- func (cc CorsConfigurationAttributes) MaxAgeInSeconds() terra.NumberValue
- type CorsConfigurationState
- type DataArgs
- type DataAuthenticationConfigurationAttributes
- func (ac DataAuthenticationConfigurationAttributes) Audience() terra.StringValue
- func (ac DataAuthenticationConfigurationAttributes) Authority() terra.StringValue
- func (ac DataAuthenticationConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (ac DataAuthenticationConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ac DataAuthenticationConfigurationAttributes) InternalWithRef(ref terra.Reference) DataAuthenticationConfigurationAttributes
- func (ac DataAuthenticationConfigurationAttributes) SmartProxyEnabled() terra.BoolValue
- type DataAuthenticationConfigurationState
- type DataCorsConfigurationAttributes
- func (cc DataCorsConfigurationAttributes) AllowCredentials() terra.BoolValue
- func (cc DataCorsConfigurationAttributes) AllowedHeaders() terra.SetValue[terra.StringValue]
- func (cc DataCorsConfigurationAttributes) AllowedMethods() terra.ListValue[terra.StringValue]
- func (cc DataCorsConfigurationAttributes) AllowedOrigins() terra.SetValue[terra.StringValue]
- func (cc DataCorsConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (cc DataCorsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (cc DataCorsConfigurationAttributes) InternalWithRef(ref terra.Reference) DataCorsConfigurationAttributes
- func (cc DataCorsConfigurationAttributes) MaxAgeInSeconds() terra.NumberValue
- type DataCorsConfigurationState
- type DataSource
- type DataTimeouts
- type DataTimeoutsAttributes
- type DataTimeoutsState
- type Identity
- type IdentityAttributes
- func (i IdentityAttributes) InternalRef() (terra.Reference, error)
- func (i IdentityAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (i IdentityAttributes) InternalWithRef(ref terra.Reference) IdentityAttributes
- func (i IdentityAttributes) PrincipalId() terra.StringValue
- func (i IdentityAttributes) TenantId() terra.StringValue
- func (i IdentityAttributes) Type() terra.StringValue
- type IdentityState
- type Resource
- func (ahs *Resource) Attributes() azurermHealthcareServiceAttributes
- func (ahs *Resource) Configuration() interface{}
- func (ahs *Resource) DependOn() terra.Reference
- func (ahs *Resource) Dependencies() terra.Dependencies
- func (ahs *Resource) ImportState(state io.Reader) error
- func (ahs *Resource) LifecycleManagement() *terra.Lifecycle
- func (ahs *Resource) LocalName() string
- func (ahs *Resource) State() (*azurermHealthcareServiceState, bool)
- func (ahs *Resource) StateMust() *azurermHealthcareServiceState
- func (ahs *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) Read() terra.StringValue
- 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 { // AccessPolicyObjectIds: set of string, optional AccessPolicyObjectIds terra.SetValue[terra.StringValue] `hcl:"access_policy_object_ids,attr"` // ConfigurationExportStorageAccountName: string, optional ConfigurationExportStorageAccountName terra.StringValue `hcl:"configuration_export_storage_account_name,attr"` // CosmosdbKeyVaultKeyVersionlessId: string, optional CosmosdbKeyVaultKeyVersionlessId terra.StringValue `hcl:"cosmosdb_key_vault_key_versionless_id,attr"` // CosmosdbThroughput: number, optional CosmosdbThroughput terra.NumberValue `hcl:"cosmosdb_throughput,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Kind: string, optional Kind terra.StringValue `hcl:"kind,attr"` // Location: string, required Location terra.StringValue `hcl:"location,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // PublicNetworkAccessEnabled: bool, optional PublicNetworkAccessEnabled terra.BoolValue `hcl:"public_network_access_enabled,attr"` // ResourceGroupName: string, required ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // AuthenticationConfiguration: optional AuthenticationConfiguration *AuthenticationConfiguration `hcl:"authentication_configuration,block"` // CorsConfiguration: optional CorsConfiguration *CorsConfiguration `hcl:"cors_configuration,block"` // Identity: optional Identity *Identity `hcl:"identity,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for azurerm_healthcare_service.
type AuthenticationConfiguration ¶
type AuthenticationConfiguration struct { // Audience: string, optional Audience terra.StringValue `hcl:"audience,attr"` // Authority: string, optional Authority terra.StringValue `hcl:"authority,attr"` // SmartProxyEnabled: bool, optional SmartProxyEnabled terra.BoolValue `hcl:"smart_proxy_enabled,attr"` }
type AuthenticationConfigurationAttributes ¶
type AuthenticationConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (AuthenticationConfigurationAttributes) Audience ¶
func (ac AuthenticationConfigurationAttributes) Audience() terra.StringValue
func (AuthenticationConfigurationAttributes) Authority ¶
func (ac AuthenticationConfigurationAttributes) Authority() terra.StringValue
func (AuthenticationConfigurationAttributes) InternalRef ¶
func (ac AuthenticationConfigurationAttributes) InternalRef() (terra.Reference, error)
func (AuthenticationConfigurationAttributes) InternalTokens ¶
func (ac AuthenticationConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AuthenticationConfigurationAttributes) InternalWithRef ¶
func (ac AuthenticationConfigurationAttributes) InternalWithRef(ref terra.Reference) AuthenticationConfigurationAttributes
func (AuthenticationConfigurationAttributes) SmartProxyEnabled ¶
func (ac AuthenticationConfigurationAttributes) SmartProxyEnabled() terra.BoolValue
type CorsConfiguration ¶
type CorsConfiguration struct { // AllowCredentials: bool, optional AllowCredentials terra.BoolValue `hcl:"allow_credentials,attr"` // AllowedHeaders: set of string, optional AllowedHeaders terra.SetValue[terra.StringValue] `hcl:"allowed_headers,attr"` // AllowedMethods: list of string, optional AllowedMethods terra.ListValue[terra.StringValue] `hcl:"allowed_methods,attr"` // AllowedOrigins: set of string, optional AllowedOrigins terra.SetValue[terra.StringValue] `hcl:"allowed_origins,attr"` // MaxAgeInSeconds: number, optional MaxAgeInSeconds terra.NumberValue `hcl:"max_age_in_seconds,attr"` }
type CorsConfigurationAttributes ¶
type CorsConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (CorsConfigurationAttributes) AllowCredentials ¶
func (cc CorsConfigurationAttributes) AllowCredentials() terra.BoolValue
func (CorsConfigurationAttributes) AllowedHeaders ¶
func (cc CorsConfigurationAttributes) AllowedHeaders() terra.SetValue[terra.StringValue]
func (CorsConfigurationAttributes) AllowedMethods ¶
func (cc CorsConfigurationAttributes) AllowedMethods() terra.ListValue[terra.StringValue]
func (CorsConfigurationAttributes) AllowedOrigins ¶
func (cc CorsConfigurationAttributes) AllowedOrigins() terra.SetValue[terra.StringValue]
func (CorsConfigurationAttributes) InternalRef ¶
func (cc CorsConfigurationAttributes) InternalRef() (terra.Reference, error)
func (CorsConfigurationAttributes) InternalTokens ¶
func (cc CorsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (CorsConfigurationAttributes) InternalWithRef ¶
func (cc CorsConfigurationAttributes) InternalWithRef(ref terra.Reference) CorsConfigurationAttributes
func (CorsConfigurationAttributes) MaxAgeInSeconds ¶
func (cc CorsConfigurationAttributes) MaxAgeInSeconds() terra.NumberValue
type CorsConfigurationState ¶
type DataArgs ¶
type DataArgs struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Location: string, required Location terra.StringValue `hcl:"location,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // ResourceGroupName: string, required ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"` // Timeouts: optional Timeouts *DataTimeouts `hcl:"timeouts,block"` }
DataArgs contains the configurations for azurerm_healthcare_service.
type DataAuthenticationConfigurationAttributes ¶
type DataAuthenticationConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (DataAuthenticationConfigurationAttributes) Audience ¶
func (ac DataAuthenticationConfigurationAttributes) Audience() terra.StringValue
func (DataAuthenticationConfigurationAttributes) Authority ¶
func (ac DataAuthenticationConfigurationAttributes) Authority() terra.StringValue
func (DataAuthenticationConfigurationAttributes) InternalRef ¶
func (ac DataAuthenticationConfigurationAttributes) InternalRef() (terra.Reference, error)
func (DataAuthenticationConfigurationAttributes) InternalTokens ¶
func (ac DataAuthenticationConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataAuthenticationConfigurationAttributes) InternalWithRef ¶
func (ac DataAuthenticationConfigurationAttributes) InternalWithRef(ref terra.Reference) DataAuthenticationConfigurationAttributes
func (DataAuthenticationConfigurationAttributes) SmartProxyEnabled ¶
func (ac DataAuthenticationConfigurationAttributes) SmartProxyEnabled() terra.BoolValue
type DataCorsConfigurationAttributes ¶
type DataCorsConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (DataCorsConfigurationAttributes) AllowCredentials ¶
func (cc DataCorsConfigurationAttributes) AllowCredentials() terra.BoolValue
func (DataCorsConfigurationAttributes) AllowedHeaders ¶
func (cc DataCorsConfigurationAttributes) AllowedHeaders() terra.SetValue[terra.StringValue]
func (DataCorsConfigurationAttributes) AllowedMethods ¶
func (cc DataCorsConfigurationAttributes) AllowedMethods() terra.ListValue[terra.StringValue]
func (DataCorsConfigurationAttributes) AllowedOrigins ¶
func (cc DataCorsConfigurationAttributes) AllowedOrigins() terra.SetValue[terra.StringValue]
func (DataCorsConfigurationAttributes) InternalRef ¶
func (cc DataCorsConfigurationAttributes) InternalRef() (terra.Reference, error)
func (DataCorsConfigurationAttributes) InternalTokens ¶
func (cc DataCorsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataCorsConfigurationAttributes) InternalWithRef ¶
func (cc DataCorsConfigurationAttributes) InternalWithRef(ref terra.Reference) DataCorsConfigurationAttributes
func (DataCorsConfigurationAttributes) MaxAgeInSeconds ¶
func (cc DataCorsConfigurationAttributes) MaxAgeInSeconds() terra.NumberValue
type DataSource ¶
DataSource represents the Terraform data resource azurerm_healthcare_service.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (ahs *DataSource) Attributes() dataAzurermHealthcareServiceAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (ahs *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (ahs *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (ahs *DataSource) LocalName() string
LocalName returns the local name for DataSource.
type DataTimeouts ¶
type DataTimeouts struct { // Read: string, optional Read terra.StringValue `hcl:"read,attr"` }
type DataTimeoutsAttributes ¶
type DataTimeoutsAttributes struct {
// contains filtered or unexported fields
}
func (DataTimeoutsAttributes) InternalRef ¶
func (t DataTimeoutsAttributes) InternalRef() (terra.Reference, error)
func (DataTimeoutsAttributes) InternalTokens ¶
func (t DataTimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataTimeoutsAttributes) InternalWithRef ¶
func (t DataTimeoutsAttributes) InternalWithRef(ref terra.Reference) DataTimeoutsAttributes
func (DataTimeoutsAttributes) Read ¶
func (t DataTimeoutsAttributes) Read() terra.StringValue
type DataTimeoutsState ¶
type DataTimeoutsState struct {
Read string `json:"read"`
}
type Identity ¶
type Identity struct { // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` }
type IdentityAttributes ¶
type IdentityAttributes struct {
// contains filtered or unexported fields
}
func (IdentityAttributes) InternalRef ¶
func (i IdentityAttributes) InternalRef() (terra.Reference, error)
func (IdentityAttributes) InternalTokens ¶
func (i IdentityAttributes) InternalTokens() (hclwrite.Tokens, error)
func (IdentityAttributes) InternalWithRef ¶
func (i IdentityAttributes) InternalWithRef(ref terra.Reference) IdentityAttributes
func (IdentityAttributes) PrincipalId ¶
func (i IdentityAttributes) PrincipalId() terra.StringValue
func (IdentityAttributes) TenantId ¶
func (i IdentityAttributes) TenantId() terra.StringValue
func (IdentityAttributes) Type ¶
func (i IdentityAttributes) Type() terra.StringValue
type IdentityState ¶
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 azurerm_healthcare_service.
func (*Resource) Attributes ¶
func (ahs *Resource) Attributes() azurermHealthcareServiceAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (ahs *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (ahs *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"` // Read: string, optional Read terra.StringValue `hcl:"read,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) Read ¶
func (t TimeoutsAttributes) Read() terra.StringValue
func (TimeoutsAttributes) Update ¶
func (t TimeoutsAttributes) Update() terra.StringValue