azurerm_chaos_studio_experiment

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 {
	// 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"`
	// Identity: optional
	Identity *Identity `hcl:"identity,block"`
	// Selectors: min=1
	Selectors []Selectors `hcl:"selectors,block" validate:"min=1"`
	// Steps: min=1
	Steps []Steps `hcl:"steps,block" validate:"min=1"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for azurerm_chaos_studio_experiment.

type Identity

type Identity struct {
	// IdentityIds: set of string, optional
	IdentityIds terra.SetValue[terra.StringValue] `hcl:"identity_ids,attr"`
	// Type: string, required
	Type terra.StringValue `hcl:"type,attr" validate:"required"`
}

type IdentityAttributes

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

func (IdentityAttributes) IdentityIds

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

type IdentityState

type IdentityState struct {
	IdentityIds []string `json:"identity_ids"`
	PrincipalId string   `json:"principal_id"`
	TenantId    string   `json:"tenant_id"`
	Type        string   `json:"type"`
}

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

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (acse *Resource) Attributes() azurermChaosStudioExperimentAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

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

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

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

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

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

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

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

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

func (*Resource) LifecycleManagement

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

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (acse *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (acse *Resource) State() (*azurermChaosStudioExperimentState, bool)

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

func (*Resource) StateMust

func (acse *Resource) StateMust() *azurermChaosStudioExperimentState

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

func (*Resource) Type

func (acse *Resource) Type() string

Type returns the Terraform object type for Resource.

type Selectors

type Selectors struct {
	// ChaosStudioTargetIds: list of string, required
	ChaosStudioTargetIds terra.ListValue[terra.StringValue] `hcl:"chaos_studio_target_ids,attr" validate:"required"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
}

type SelectorsAttributes

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

func (SelectorsAttributes) ChaosStudioTargetIds

func (s SelectorsAttributes) ChaosStudioTargetIds() terra.ListValue[terra.StringValue]

func (SelectorsAttributes) InternalRef

func (s SelectorsAttributes) InternalRef() (terra.Reference, error)

func (SelectorsAttributes) InternalTokens

func (s SelectorsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SelectorsAttributes) InternalWithRef

func (s SelectorsAttributes) InternalWithRef(ref terra.Reference) SelectorsAttributes

func (SelectorsAttributes) Name

type SelectorsState

type SelectorsState struct {
	ChaosStudioTargetIds []string `json:"chaos_studio_target_ids"`
	Name                 string   `json:"name"`
}

type Steps

type Steps struct {
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// StepsBranch: min=1
	Branch []StepsBranch `hcl:"branch,block" validate:"min=1"`
}

type StepsAttributes

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

func (StepsAttributes) Branch

func (StepsAttributes) InternalRef

func (s StepsAttributes) InternalRef() (terra.Reference, error)

func (StepsAttributes) InternalTokens

func (s StepsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (StepsAttributes) InternalWithRef

func (s StepsAttributes) InternalWithRef(ref terra.Reference) StepsAttributes

func (StepsAttributes) Name

type StepsBranch

type StepsBranch struct {
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// StepsBranchActions: min=1
	Actions []StepsBranchActions `hcl:"actions,block" validate:"min=1"`
}

type StepsBranchActions

type StepsBranchActions struct {
	// ActionType: string, required
	ActionType terra.StringValue `hcl:"action_type,attr" validate:"required"`
	// Duration: string, optional
	Duration terra.StringValue `hcl:"duration,attr"`
	// Parameters: map of string, optional
	Parameters terra.MapValue[terra.StringValue] `hcl:"parameters,attr"`
	// SelectorName: string, optional
	SelectorName terra.StringValue `hcl:"selector_name,attr"`
	// Urn: string, optional
	Urn terra.StringValue `hcl:"urn,attr"`
}

type StepsBranchActionsAttributes

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

func (StepsBranchActionsAttributes) ActionType

func (StepsBranchActionsAttributes) Duration

func (StepsBranchActionsAttributes) InternalRef

func (StepsBranchActionsAttributes) InternalTokens

func (a StepsBranchActionsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (StepsBranchActionsAttributes) InternalWithRef

func (StepsBranchActionsAttributes) Parameters

func (StepsBranchActionsAttributes) SelectorName

func (StepsBranchActionsAttributes) Urn

type StepsBranchActionsState

type StepsBranchActionsState struct {
	ActionType   string            `json:"action_type"`
	Duration     string            `json:"duration"`
	Parameters   map[string]string `json:"parameters"`
	SelectorName string            `json:"selector_name"`
	Urn          string            `json:"urn"`
}

type StepsBranchAttributes

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

func (StepsBranchAttributes) Actions

func (StepsBranchAttributes) InternalRef

func (b StepsBranchAttributes) InternalRef() (terra.Reference, error)

func (StepsBranchAttributes) InternalTokens

func (b StepsBranchAttributes) InternalTokens() (hclwrite.Tokens, error)

func (StepsBranchAttributes) InternalWithRef

func (StepsBranchAttributes) Name

type StepsBranchState

type StepsBranchState struct {
	Name    string                    `json:"name"`
	Actions []StepsBranchActionsState `json:"actions"`
}

type StepsState

type StepsState struct {
	Name   string             `json:"name"`
	Branch []StepsBranchState `json:"branch"`
}

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 (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) Read

func (TimeoutsAttributes) Update

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Read   string `json:"read"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL