fsxfilecache

package
v0.0.0-...-964ba77 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 9, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DataRepositoryAssociation

type DataRepositoryAssociation struct {
	// DataRepositoryPath: string, required
	DataRepositoryPath terra.StringValue `hcl:"data_repository_path,attr" validate:"required"`
	// DataRepositorySubdirectories: set of string, optional
	DataRepositorySubdirectories terra.SetValue[terra.StringValue] `hcl:"data_repository_subdirectories,attr"`
	// FileCachePath: string, required
	FileCachePath terra.StringValue `hcl:"file_cache_path,attr" validate:"required"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
	// Nfs: min=0
	Nfs []Nfs `hcl:"nfs,block" validate:"min=0"`
}

type DataRepositoryAssociationAttributes

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

func (DataRepositoryAssociationAttributes) AssociationId

func (DataRepositoryAssociationAttributes) DataRepositoryPath

func (dra DataRepositoryAssociationAttributes) DataRepositoryPath() terra.StringValue

func (DataRepositoryAssociationAttributes) DataRepositorySubdirectories

func (dra DataRepositoryAssociationAttributes) DataRepositorySubdirectories() terra.SetValue[terra.StringValue]

func (DataRepositoryAssociationAttributes) FileCacheId

func (DataRepositoryAssociationAttributes) FileCachePath

func (DataRepositoryAssociationAttributes) FileSystemId

func (DataRepositoryAssociationAttributes) FileSystemPath

func (DataRepositoryAssociationAttributes) ImportedFileChunkSize

func (dra DataRepositoryAssociationAttributes) ImportedFileChunkSize() terra.NumberValue

func (DataRepositoryAssociationAttributes) InternalRef

func (DataRepositoryAssociationAttributes) InternalTokens

func (dra DataRepositoryAssociationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataRepositoryAssociationAttributes) InternalWithRef

func (DataRepositoryAssociationAttributes) Nfs

func (DataRepositoryAssociationAttributes) ResourceArn

func (DataRepositoryAssociationAttributes) Tags

type DataRepositoryAssociationState

type DataRepositoryAssociationState struct {
	AssociationId                string            `json:"association_id"`
	DataRepositoryPath           string            `json:"data_repository_path"`
	DataRepositorySubdirectories []string          `json:"data_repository_subdirectories"`
	FileCacheId                  string            `json:"file_cache_id"`
	FileCachePath                string            `json:"file_cache_path"`
	FileSystemId                 string            `json:"file_system_id"`
	FileSystemPath               string            `json:"file_system_path"`
	ImportedFileChunkSize        float64           `json:"imported_file_chunk_size"`
	ResourceArn                  string            `json:"resource_arn"`
	Tags                         map[string]string `json:"tags"`
	Nfs                          []NfsState        `json:"nfs"`
}

type LogConfiguration

type LogConfiguration struct{}

type LogConfigurationAttributes

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

func (LogConfigurationAttributes) Destination

func (lc LogConfigurationAttributes) Destination() terra.StringValue

func (LogConfigurationAttributes) InternalRef

func (lc LogConfigurationAttributes) InternalRef() (terra.Reference, error)

func (LogConfigurationAttributes) InternalTokens

func (lc LogConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (LogConfigurationAttributes) InternalWithRef

func (LogConfigurationAttributes) Level

type LogConfigurationState

type LogConfigurationState struct {
	Destination string `json:"destination"`
	Level       string `json:"level"`
}

type LustreConfiguration

type LustreConfiguration struct {
	// DeploymentType: string, required
	DeploymentType terra.StringValue `hcl:"deployment_type,attr" validate:"required"`
	// PerUnitStorageThroughput: number, required
	PerUnitStorageThroughput terra.NumberValue `hcl:"per_unit_storage_throughput,attr" validate:"required"`
	// WeeklyMaintenanceStartTime: string, optional
	WeeklyMaintenanceStartTime terra.StringValue `hcl:"weekly_maintenance_start_time,attr"`
	// LogConfiguration: min=0
	LogConfiguration []LogConfiguration `hcl:"log_configuration,block" validate:"min=0"`
	// MetadataConfiguration: min=1,max=8
	MetadataConfiguration []MetadataConfiguration `hcl:"metadata_configuration,block" validate:"min=1,max=8"`
}

type LustreConfigurationAttributes

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

func (LustreConfigurationAttributes) DeploymentType

func (lc LustreConfigurationAttributes) DeploymentType() terra.StringValue

func (LustreConfigurationAttributes) InternalRef

func (lc LustreConfigurationAttributes) InternalRef() (terra.Reference, error)

func (LustreConfigurationAttributes) InternalTokens

func (lc LustreConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (LustreConfigurationAttributes) InternalWithRef

func (LustreConfigurationAttributes) LogConfiguration

func (LustreConfigurationAttributes) MetadataConfiguration

func (LustreConfigurationAttributes) MountName

func (LustreConfigurationAttributes) PerUnitStorageThroughput

func (lc LustreConfigurationAttributes) PerUnitStorageThroughput() terra.NumberValue

func (LustreConfigurationAttributes) WeeklyMaintenanceStartTime

func (lc LustreConfigurationAttributes) WeeklyMaintenanceStartTime() terra.StringValue

type LustreConfigurationState

type LustreConfigurationState struct {
	DeploymentType             string                       `json:"deployment_type"`
	MountName                  string                       `json:"mount_name"`
	PerUnitStorageThroughput   float64                      `json:"per_unit_storage_throughput"`
	WeeklyMaintenanceStartTime string                       `json:"weekly_maintenance_start_time"`
	LogConfiguration           []LogConfigurationState      `json:"log_configuration"`
	MetadataConfiguration      []MetadataConfigurationState `json:"metadata_configuration"`
}

type MetadataConfiguration

type MetadataConfiguration struct {
	// StorageCapacity: number, required
	StorageCapacity terra.NumberValue `hcl:"storage_capacity,attr" validate:"required"`
}

type MetadataConfigurationAttributes

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

func (MetadataConfigurationAttributes) InternalRef

func (MetadataConfigurationAttributes) InternalTokens

func (mc MetadataConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (MetadataConfigurationAttributes) InternalWithRef

func (MetadataConfigurationAttributes) StorageCapacity

func (mc MetadataConfigurationAttributes) StorageCapacity() terra.NumberValue

type MetadataConfigurationState

type MetadataConfigurationState struct {
	StorageCapacity float64 `json:"storage_capacity"`
}

type Nfs

type Nfs struct {
	// DnsIps: set of string, optional
	DnsIps terra.SetValue[terra.StringValue] `hcl:"dns_ips,attr"`
	// Version: string, required
	Version terra.StringValue `hcl:"version,attr" validate:"required"`
}

type NfsAttributes

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

func (NfsAttributes) DnsIps

func (NfsAttributes) InternalRef

func (n NfsAttributes) InternalRef() (terra.Reference, error)

func (NfsAttributes) InternalTokens

func (n NfsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (NfsAttributes) InternalWithRef

func (n NfsAttributes) InternalWithRef(ref terra.Reference) NfsAttributes

func (NfsAttributes) Version

func (n NfsAttributes) Version() terra.StringValue

type NfsState

type NfsState struct {
	DnsIps  []string `json:"dns_ips"`
	Version string   `json:"version"`
}

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