transferserver

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 EndpointDetails

type EndpointDetails struct {
	// AddressAllocationIds: set of string, optional
	AddressAllocationIds terra.SetValue[terra.StringValue] `hcl:"address_allocation_ids,attr"`
	// SecurityGroupIds: set of string, optional
	SecurityGroupIds terra.SetValue[terra.StringValue] `hcl:"security_group_ids,attr"`
	// SubnetIds: set of string, optional
	SubnetIds terra.SetValue[terra.StringValue] `hcl:"subnet_ids,attr"`
	// VpcEndpointId: string, optional
	VpcEndpointId terra.StringValue `hcl:"vpc_endpoint_id,attr"`
	// VpcId: string, optional
	VpcId terra.StringValue `hcl:"vpc_id,attr"`
}

type EndpointDetailsAttributes

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

func (EndpointDetailsAttributes) AddressAllocationIds

func (ed EndpointDetailsAttributes) AddressAllocationIds() terra.SetValue[terra.StringValue]

func (EndpointDetailsAttributes) InternalRef

func (ed EndpointDetailsAttributes) InternalRef() (terra.Reference, error)

func (EndpointDetailsAttributes) InternalTokens

func (ed EndpointDetailsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (EndpointDetailsAttributes) InternalWithRef

func (EndpointDetailsAttributes) SecurityGroupIds

func (ed EndpointDetailsAttributes) SecurityGroupIds() terra.SetValue[terra.StringValue]

func (EndpointDetailsAttributes) SubnetIds

func (EndpointDetailsAttributes) VpcEndpointId

func (ed EndpointDetailsAttributes) VpcEndpointId() terra.StringValue

func (EndpointDetailsAttributes) VpcId

type EndpointDetailsState

type EndpointDetailsState struct {
	AddressAllocationIds []string `json:"address_allocation_ids"`
	SecurityGroupIds     []string `json:"security_group_ids"`
	SubnetIds            []string `json:"subnet_ids"`
	VpcEndpointId        string   `json:"vpc_endpoint_id"`
	VpcId                string   `json:"vpc_id"`
}

type OnPartialUpload

type OnPartialUpload struct {
	// ExecutionRole: string, required
	ExecutionRole terra.StringValue `hcl:"execution_role,attr" validate:"required"`
	// WorkflowId: string, required
	WorkflowId terra.StringValue `hcl:"workflow_id,attr" validate:"required"`
}

type OnPartialUploadAttributes

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

func (OnPartialUploadAttributes) ExecutionRole

func (opu OnPartialUploadAttributes) ExecutionRole() terra.StringValue

func (OnPartialUploadAttributes) InternalRef

func (opu OnPartialUploadAttributes) InternalRef() (terra.Reference, error)

func (OnPartialUploadAttributes) InternalTokens

func (opu OnPartialUploadAttributes) InternalTokens() (hclwrite.Tokens, error)

func (OnPartialUploadAttributes) InternalWithRef

func (OnPartialUploadAttributes) WorkflowId

func (opu OnPartialUploadAttributes) WorkflowId() terra.StringValue

type OnPartialUploadState

type OnPartialUploadState struct {
	ExecutionRole string `json:"execution_role"`
	WorkflowId    string `json:"workflow_id"`
}

type OnUpload

type OnUpload struct {
	// ExecutionRole: string, required
	ExecutionRole terra.StringValue `hcl:"execution_role,attr" validate:"required"`
	// WorkflowId: string, required
	WorkflowId terra.StringValue `hcl:"workflow_id,attr" validate:"required"`
}

type OnUploadAttributes

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

func (OnUploadAttributes) ExecutionRole

func (ou OnUploadAttributes) ExecutionRole() terra.StringValue

func (OnUploadAttributes) InternalRef

func (ou OnUploadAttributes) InternalRef() (terra.Reference, error)

func (OnUploadAttributes) InternalTokens

func (ou OnUploadAttributes) InternalTokens() (hclwrite.Tokens, error)

func (OnUploadAttributes) InternalWithRef

func (ou OnUploadAttributes) InternalWithRef(ref terra.Reference) OnUploadAttributes

func (OnUploadAttributes) WorkflowId

func (ou OnUploadAttributes) WorkflowId() terra.StringValue

type OnUploadState

type OnUploadState struct {
	ExecutionRole string `json:"execution_role"`
	WorkflowId    string `json:"workflow_id"`
}

type ProtocolDetails

type ProtocolDetails struct {
	// As2Transports: set of string, optional
	As2Transports terra.SetValue[terra.StringValue] `hcl:"as2_transports,attr"`
	// PassiveIp: string, optional
	PassiveIp terra.StringValue `hcl:"passive_ip,attr"`
	// SetStatOption: string, optional
	SetStatOption terra.StringValue `hcl:"set_stat_option,attr"`
	// TlsSessionResumptionMode: string, optional
	TlsSessionResumptionMode terra.StringValue `hcl:"tls_session_resumption_mode,attr"`
}

type ProtocolDetailsAttributes

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

func (ProtocolDetailsAttributes) As2Transports

func (ProtocolDetailsAttributes) InternalRef

func (pd ProtocolDetailsAttributes) InternalRef() (terra.Reference, error)

func (ProtocolDetailsAttributes) InternalTokens

func (pd ProtocolDetailsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ProtocolDetailsAttributes) InternalWithRef

func (ProtocolDetailsAttributes) PassiveIp

func (ProtocolDetailsAttributes) SetStatOption

func (pd ProtocolDetailsAttributes) SetStatOption() terra.StringValue

func (ProtocolDetailsAttributes) TlsSessionResumptionMode

func (pd ProtocolDetailsAttributes) TlsSessionResumptionMode() terra.StringValue

type ProtocolDetailsState

type ProtocolDetailsState struct {
	As2Transports            []string `json:"as2_transports"`
	PassiveIp                string   `json:"passive_ip"`
	SetStatOption            string   `json:"set_stat_option"`
	TlsSessionResumptionMode string   `json:"tls_session_resumption_mode"`
}

type WorkflowDetails

type WorkflowDetails struct {
	// OnPartialUpload: optional
	OnPartialUpload *OnPartialUpload `hcl:"on_partial_upload,block"`
	// OnUpload: optional
	OnUpload *OnUpload `hcl:"on_upload,block"`
}

type WorkflowDetailsAttributes

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

func (WorkflowDetailsAttributes) InternalRef

func (wd WorkflowDetailsAttributes) InternalRef() (terra.Reference, error)

func (WorkflowDetailsAttributes) InternalTokens

func (wd WorkflowDetailsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (WorkflowDetailsAttributes) InternalWithRef

func (WorkflowDetailsAttributes) OnPartialUpload

func (WorkflowDetailsAttributes) OnUpload

type WorkflowDetailsState

type WorkflowDetailsState struct {
	OnPartialUpload []OnPartialUploadState `json:"on_partial_upload"`
	OnUpload        []OnUploadState        `json:"on_upload"`
}

Jump to

Keyboard shortcuts

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