runner

package
v0.9.5-rc.2 Latest Latest
Warning

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

Go to latest
Published: May 4, 2022 License: MPL-2.0 Imports: 28 Imported by: 0

Documentation

Index

Constants

View Source
const (
	TFPlanName                = "tfplan"
	SavedPlanSecretAnnotation = "savedPlan"
)

Variables

View Source
var File_runner_runner_proto protoreflect.FileDescriptor
View Source
var Runner_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "runner.Runner",
	HandlerType: (*RunnerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "LookPath",
			Handler:    _Runner_LookPath_Handler,
		},
		{
			MethodName: "NewTerraform",
			Handler:    _Runner_NewTerraform_Handler,
		},
		{
			MethodName: "SetEnv",
			Handler:    _Runner_SetEnv_Handler,
		},
		{
			MethodName: "UploadAndExtract",
			Handler:    _Runner_UploadAndExtract_Handler,
		},
		{
			MethodName: "CleanupDir",
			Handler:    _Runner_CleanupDir_Handler,
		},
		{
			MethodName: "WriteBackendConfig",
			Handler:    _Runner_WriteBackendConfig_Handler,
		},
		{
			MethodName: "ProcessCliConfig",
			Handler:    _Runner_ProcessCliConfig_Handler,
		},
		{
			MethodName: "GenerateVarsForTF",
			Handler:    _Runner_GenerateVarsForTF_Handler,
		},
		{
			MethodName: "Plan",
			Handler:    _Runner_Plan_Handler,
		},
		{
			MethodName: "ShowPlanFileRaw",
			Handler:    _Runner_ShowPlanFileRaw_Handler,
		},
		{
			MethodName: "SaveTFPlan",
			Handler:    _Runner_SaveTFPlan_Handler,
		},
		{
			MethodName: "LoadTFPlan",
			Handler:    _Runner_LoadTFPlan_Handler,
		},
		{
			MethodName: "Apply",
			Handler:    _Runner_Apply_Handler,
		},
		{
			MethodName: "Destroy",
			Handler:    _Runner_Destroy_Handler,
		},
		{
			MethodName: "Output",
			Handler:    _Runner_Output_Handler,
		},
		{
			MethodName: "WriteOutputs",
			Handler:    _Runner_WriteOutputs_Handler,
		},
		{
			MethodName: "GetOutputs",
			Handler:    _Runner_GetOutputs_Handler,
		},
		{
			MethodName: "Init",
			Handler:    _Runner_Init_Handler,
		},
		{
			MethodName: "Upload",
			Handler:    _Runner_Upload_Handler,
		},
		{
			MethodName: "FinalizeSecrets",
			Handler:    _Runner_FinalizeSecrets_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "runner/runner.proto",
}

Runner_ServiceDesc is the grpc.ServiceDesc for Runner service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterRunnerServer

func RegisterRunnerServer(s grpc.ServiceRegistrar, srv RunnerServer)

Types

type ApplyReply

type ApplyReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyReply) Descriptor deprecated

func (*ApplyReply) Descriptor() ([]byte, []int)

Deprecated: Use ApplyReply.ProtoReflect.Descriptor instead.

func (*ApplyReply) GetMessage

func (x *ApplyReply) GetMessage() string

func (*ApplyReply) ProtoMessage

func (*ApplyReply) ProtoMessage()

func (*ApplyReply) ProtoReflect

func (x *ApplyReply) ProtoReflect() protoreflect.Message

func (*ApplyReply) Reset

func (x *ApplyReply) Reset()

func (*ApplyReply) String

func (x *ApplyReply) String() string

type ApplyRequest

type ApplyRequest struct {
	TfInstance         string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	DirOrPlan          string `protobuf:"bytes,2,opt,name=dirOrPlan,proto3" json:"dirOrPlan,omitempty"`
	RefreshBeforeApply bool   `protobuf:"varint,3,opt,name=refreshBeforeApply,proto3" json:"refreshBeforeApply,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyRequest) Descriptor deprecated

func (*ApplyRequest) Descriptor() ([]byte, []int)

Deprecated: Use ApplyRequest.ProtoReflect.Descriptor instead.

func (*ApplyRequest) GetDirOrPlan

func (x *ApplyRequest) GetDirOrPlan() string

func (*ApplyRequest) GetRefreshBeforeApply added in v0.9.5

func (x *ApplyRequest) GetRefreshBeforeApply() bool

func (*ApplyRequest) GetTfInstance

func (x *ApplyRequest) GetTfInstance() string

func (*ApplyRequest) ProtoMessage

func (*ApplyRequest) ProtoMessage()

func (*ApplyRequest) ProtoReflect

func (x *ApplyRequest) ProtoReflect() protoreflect.Message

func (*ApplyRequest) Reset

func (x *ApplyRequest) Reset()

func (*ApplyRequest) String

func (x *ApplyRequest) String() string

type CleanupDirReply

type CleanupDirReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*CleanupDirReply) Descriptor deprecated

func (*CleanupDirReply) Descriptor() ([]byte, []int)

Deprecated: Use CleanupDirReply.ProtoReflect.Descriptor instead.

func (*CleanupDirReply) GetMessage

func (x *CleanupDirReply) GetMessage() string

func (*CleanupDirReply) ProtoMessage

func (*CleanupDirReply) ProtoMessage()

func (*CleanupDirReply) ProtoReflect

func (x *CleanupDirReply) ProtoReflect() protoreflect.Message

func (*CleanupDirReply) Reset

func (x *CleanupDirReply) Reset()

func (*CleanupDirReply) String

func (x *CleanupDirReply) String() string

type CleanupDirRequest

type CleanupDirRequest struct {
	TmpDir string `protobuf:"bytes,1,opt,name=tmpDir,proto3" json:"tmpDir,omitempty"`
	// contains filtered or unexported fields
}

func (*CleanupDirRequest) Descriptor deprecated

func (*CleanupDirRequest) Descriptor() ([]byte, []int)

Deprecated: Use CleanupDirRequest.ProtoReflect.Descriptor instead.

func (*CleanupDirRequest) GetTmpDir

func (x *CleanupDirRequest) GetTmpDir() string

func (*CleanupDirRequest) ProtoMessage

func (*CleanupDirRequest) ProtoMessage()

func (*CleanupDirRequest) ProtoReflect

func (x *CleanupDirRequest) ProtoReflect() protoreflect.Message

func (*CleanupDirRequest) Reset

func (x *CleanupDirRequest) Reset()

func (*CleanupDirRequest) String

func (x *CleanupDirRequest) String() string

type DestroyReply

type DestroyReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*DestroyReply) Descriptor deprecated

func (*DestroyReply) Descriptor() ([]byte, []int)

Deprecated: Use DestroyReply.ProtoReflect.Descriptor instead.

func (*DestroyReply) GetMessage

func (x *DestroyReply) GetMessage() string

func (*DestroyReply) ProtoMessage

func (*DestroyReply) ProtoMessage()

func (*DestroyReply) ProtoReflect

func (x *DestroyReply) ProtoReflect() protoreflect.Message

func (*DestroyReply) Reset

func (x *DestroyReply) Reset()

func (*DestroyReply) String

func (x *DestroyReply) String() string

type DestroyRequest

type DestroyRequest struct {
	TfInstance string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	// contains filtered or unexported fields
}

func (*DestroyRequest) Descriptor deprecated

func (*DestroyRequest) Descriptor() ([]byte, []int)

Deprecated: Use DestroyRequest.ProtoReflect.Descriptor instead.

func (*DestroyRequest) GetTfInstance

func (x *DestroyRequest) GetTfInstance() string

func (*DestroyRequest) ProtoMessage

func (*DestroyRequest) ProtoMessage()

func (*DestroyRequest) ProtoReflect

func (x *DestroyRequest) ProtoReflect() protoreflect.Message

func (*DestroyRequest) Reset

func (x *DestroyRequest) Reset()

func (*DestroyRequest) String

func (x *DestroyRequest) String() string

type FinalizeSecretsReply

type FinalizeSecretsReply struct {
	Message  string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	NotFound bool   `protobuf:"varint,2,opt,name=notFound,proto3" json:"notFound,omitempty"`
	// contains filtered or unexported fields
}

func (*FinalizeSecretsReply) Descriptor deprecated

func (*FinalizeSecretsReply) Descriptor() ([]byte, []int)

Deprecated: Use FinalizeSecretsReply.ProtoReflect.Descriptor instead.

func (*FinalizeSecretsReply) GetMessage

func (x *FinalizeSecretsReply) GetMessage() string

func (*FinalizeSecretsReply) GetNotFound

func (x *FinalizeSecretsReply) GetNotFound() bool

func (*FinalizeSecretsReply) ProtoMessage

func (*FinalizeSecretsReply) ProtoMessage()

func (*FinalizeSecretsReply) ProtoReflect

func (x *FinalizeSecretsReply) ProtoReflect() protoreflect.Message

func (*FinalizeSecretsReply) Reset

func (x *FinalizeSecretsReply) Reset()

func (*FinalizeSecretsReply) String

func (x *FinalizeSecretsReply) String() string

type FinalizeSecretsRequest

type FinalizeSecretsRequest struct {
	Namespace                string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name                     string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	HasSpecifiedOutputSecret bool   `protobuf:"varint,3,opt,name=hasSpecifiedOutputSecret,proto3" json:"hasSpecifiedOutputSecret,omitempty"`
	OutputSecretName         string `protobuf:"bytes,4,opt,name=outputSecretName,proto3" json:"outputSecretName,omitempty"`
	// contains filtered or unexported fields
}

func (*FinalizeSecretsRequest) Descriptor deprecated

func (*FinalizeSecretsRequest) Descriptor() ([]byte, []int)

Deprecated: Use FinalizeSecretsRequest.ProtoReflect.Descriptor instead.

func (*FinalizeSecretsRequest) GetHasSpecifiedOutputSecret

func (x *FinalizeSecretsRequest) GetHasSpecifiedOutputSecret() bool

func (*FinalizeSecretsRequest) GetName

func (x *FinalizeSecretsRequest) GetName() string

func (*FinalizeSecretsRequest) GetNamespace

func (x *FinalizeSecretsRequest) GetNamespace() string

func (*FinalizeSecretsRequest) GetOutputSecretName

func (x *FinalizeSecretsRequest) GetOutputSecretName() string

func (*FinalizeSecretsRequest) ProtoMessage

func (*FinalizeSecretsRequest) ProtoMessage()

func (*FinalizeSecretsRequest) ProtoReflect

func (x *FinalizeSecretsRequest) ProtoReflect() protoreflect.Message

func (*FinalizeSecretsRequest) Reset

func (x *FinalizeSecretsRequest) Reset()

func (*FinalizeSecretsRequest) String

func (x *FinalizeSecretsRequest) String() string

type GenerateVarsForTFReply

type GenerateVarsForTFReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateVarsForTFReply) Descriptor deprecated

func (*GenerateVarsForTFReply) Descriptor() ([]byte, []int)

Deprecated: Use GenerateVarsForTFReply.ProtoReflect.Descriptor instead.

func (*GenerateVarsForTFReply) GetMessage

func (x *GenerateVarsForTFReply) GetMessage() string

func (*GenerateVarsForTFReply) ProtoMessage

func (*GenerateVarsForTFReply) ProtoMessage()

func (*GenerateVarsForTFReply) ProtoReflect

func (x *GenerateVarsForTFReply) ProtoReflect() protoreflect.Message

func (*GenerateVarsForTFReply) Reset

func (x *GenerateVarsForTFReply) Reset()

func (*GenerateVarsForTFReply) String

func (x *GenerateVarsForTFReply) String() string

type GenerateVarsForTFRequest

type GenerateVarsForTFRequest struct {
	Terraform  []byte `protobuf:"bytes,1,opt,name=terraform,proto3" json:"terraform,omitempty"`
	WorkingDir string `protobuf:"bytes,2,opt,name=workingDir,proto3" json:"workingDir,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateVarsForTFRequest) Descriptor deprecated

func (*GenerateVarsForTFRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenerateVarsForTFRequest.ProtoReflect.Descriptor instead.

func (*GenerateVarsForTFRequest) GetTerraform

func (x *GenerateVarsForTFRequest) GetTerraform() []byte

func (*GenerateVarsForTFRequest) GetWorkingDir

func (x *GenerateVarsForTFRequest) GetWorkingDir() string

func (*GenerateVarsForTFRequest) ProtoMessage

func (*GenerateVarsForTFRequest) ProtoMessage()

func (*GenerateVarsForTFRequest) ProtoReflect

func (x *GenerateVarsForTFRequest) ProtoReflect() protoreflect.Message

func (*GenerateVarsForTFRequest) Reset

func (x *GenerateVarsForTFRequest) Reset()

func (*GenerateVarsForTFRequest) String

func (x *GenerateVarsForTFRequest) String() string

type GetOutputsReply

type GetOutputsReply struct {
	Outputs map[string]string `` /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetOutputsReply) Descriptor deprecated

func (*GetOutputsReply) Descriptor() ([]byte, []int)

Deprecated: Use GetOutputsReply.ProtoReflect.Descriptor instead.

func (*GetOutputsReply) GetOutputs

func (x *GetOutputsReply) GetOutputs() map[string]string

func (*GetOutputsReply) ProtoMessage

func (*GetOutputsReply) ProtoMessage()

func (*GetOutputsReply) ProtoReflect

func (x *GetOutputsReply) ProtoReflect() protoreflect.Message

func (*GetOutputsReply) Reset

func (x *GetOutputsReply) Reset()

func (*GetOutputsReply) String

func (x *GetOutputsReply) String() string

type GetOutputsRequest

type GetOutputsRequest struct {
	Namespace  string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	SecretName string `protobuf:"bytes,2,opt,name=secretName,proto3" json:"secretName,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOutputsRequest) Descriptor deprecated

func (*GetOutputsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOutputsRequest.ProtoReflect.Descriptor instead.

func (*GetOutputsRequest) GetNamespace

func (x *GetOutputsRequest) GetNamespace() string

func (*GetOutputsRequest) GetSecretName

func (x *GetOutputsRequest) GetSecretName() string

func (*GetOutputsRequest) ProtoMessage

func (*GetOutputsRequest) ProtoMessage()

func (*GetOutputsRequest) ProtoReflect

func (x *GetOutputsRequest) ProtoReflect() protoreflect.Message

func (*GetOutputsRequest) Reset

func (x *GetOutputsRequest) Reset()

func (*GetOutputsRequest) String

func (x *GetOutputsRequest) String() string

type InitReply

type InitReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*InitReply) Descriptor deprecated

func (*InitReply) Descriptor() ([]byte, []int)

Deprecated: Use InitReply.ProtoReflect.Descriptor instead.

func (*InitReply) GetMessage

func (x *InitReply) GetMessage() string

func (*InitReply) ProtoMessage

func (*InitReply) ProtoMessage()

func (*InitReply) ProtoReflect

func (x *InitReply) ProtoReflect() protoreflect.Message

func (*InitReply) Reset

func (x *InitReply) Reset()

func (*InitReply) String

func (x *InitReply) String() string

type InitRequest

type InitRequest struct {
	TfInstance string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	Upgrade    bool   `protobuf:"varint,2,opt,name=upgrade,proto3" json:"upgrade,omitempty"`
	ForceCopy  bool   `protobuf:"varint,3,opt,name=forceCopy,proto3" json:"forceCopy,omitempty"`
	// contains filtered or unexported fields
}

func (*InitRequest) Descriptor deprecated

func (*InitRequest) Descriptor() ([]byte, []int)

Deprecated: Use InitRequest.ProtoReflect.Descriptor instead.

func (*InitRequest) GetForceCopy

func (x *InitRequest) GetForceCopy() bool

func (*InitRequest) GetTfInstance

func (x *InitRequest) GetTfInstance() string

func (*InitRequest) GetUpgrade

func (x *InitRequest) GetUpgrade() bool

func (*InitRequest) ProtoMessage

func (*InitRequest) ProtoMessage()

func (*InitRequest) ProtoReflect

func (x *InitRequest) ProtoReflect() protoreflect.Message

func (*InitRequest) Reset

func (x *InitRequest) Reset()

func (*InitRequest) String

func (x *InitRequest) String() string

type LoadTFPlanReply

type LoadTFPlanReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadTFPlanReply) Descriptor deprecated

func (*LoadTFPlanReply) Descriptor() ([]byte, []int)

Deprecated: Use LoadTFPlanReply.ProtoReflect.Descriptor instead.

func (*LoadTFPlanReply) GetMessage

func (x *LoadTFPlanReply) GetMessage() string

func (*LoadTFPlanReply) ProtoMessage

func (*LoadTFPlanReply) ProtoMessage()

func (*LoadTFPlanReply) ProtoReflect

func (x *LoadTFPlanReply) ProtoReflect() protoreflect.Message

func (*LoadTFPlanReply) Reset

func (x *LoadTFPlanReply) Reset()

func (*LoadTFPlanReply) String

func (x *LoadTFPlanReply) String() string

type LoadTFPlanRequest

type LoadTFPlanRequest struct {
	TfInstance               string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	BackendCompletelyDisable bool   `protobuf:"varint,2,opt,name=backendCompletelyDisable,proto3" json:"backendCompletelyDisable,omitempty"`
	Name                     string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Namespace                string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	PendingPlan              string `protobuf:"bytes,5,opt,name=pendingPlan,proto3" json:"pendingPlan,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadTFPlanRequest) Descriptor deprecated

func (*LoadTFPlanRequest) Descriptor() ([]byte, []int)

Deprecated: Use LoadTFPlanRequest.ProtoReflect.Descriptor instead.

func (*LoadTFPlanRequest) GetBackendCompletelyDisable

func (x *LoadTFPlanRequest) GetBackendCompletelyDisable() bool

func (*LoadTFPlanRequest) GetName

func (x *LoadTFPlanRequest) GetName() string

func (*LoadTFPlanRequest) GetNamespace

func (x *LoadTFPlanRequest) GetNamespace() string

func (*LoadTFPlanRequest) GetPendingPlan

func (x *LoadTFPlanRequest) GetPendingPlan() string

func (*LoadTFPlanRequest) GetTfInstance

func (x *LoadTFPlanRequest) GetTfInstance() string

func (*LoadTFPlanRequest) ProtoMessage

func (*LoadTFPlanRequest) ProtoMessage()

func (*LoadTFPlanRequest) ProtoReflect

func (x *LoadTFPlanRequest) ProtoReflect() protoreflect.Message

func (*LoadTFPlanRequest) Reset

func (x *LoadTFPlanRequest) Reset()

func (*LoadTFPlanRequest) String

func (x *LoadTFPlanRequest) String() string

type LookPathReply

type LookPathReply struct {
	ExecPath string `protobuf:"bytes,1,opt,name=execPath,proto3" json:"execPath,omitempty"`
	// contains filtered or unexported fields
}

func (*LookPathReply) Descriptor deprecated

func (*LookPathReply) Descriptor() ([]byte, []int)

Deprecated: Use LookPathReply.ProtoReflect.Descriptor instead.

func (*LookPathReply) GetExecPath

func (x *LookPathReply) GetExecPath() string

func (*LookPathReply) ProtoMessage

func (*LookPathReply) ProtoMessage()

func (*LookPathReply) ProtoReflect

func (x *LookPathReply) ProtoReflect() protoreflect.Message

func (*LookPathReply) Reset

func (x *LookPathReply) Reset()

func (*LookPathReply) String

func (x *LookPathReply) String() string

type LookPathRequest

type LookPathRequest struct {
	File string `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	// contains filtered or unexported fields
}

func (*LookPathRequest) Descriptor deprecated

func (*LookPathRequest) Descriptor() ([]byte, []int)

Deprecated: Use LookPathRequest.ProtoReflect.Descriptor instead.

func (*LookPathRequest) GetFile

func (x *LookPathRequest) GetFile() string

func (*LookPathRequest) ProtoMessage

func (*LookPathRequest) ProtoMessage()

func (*LookPathRequest) ProtoReflect

func (x *LookPathRequest) ProtoReflect() protoreflect.Message

func (*LookPathRequest) Reset

func (x *LookPathRequest) Reset()

func (*LookPathRequest) String

func (x *LookPathRequest) String() string

type NewTerraformReply

type NewTerraformReply struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*NewTerraformReply) Descriptor deprecated

func (*NewTerraformReply) Descriptor() ([]byte, []int)

Deprecated: Use NewTerraformReply.ProtoReflect.Descriptor instead.

func (*NewTerraformReply) GetId

func (x *NewTerraformReply) GetId() string

func (*NewTerraformReply) ProtoMessage

func (*NewTerraformReply) ProtoMessage()

func (*NewTerraformReply) ProtoReflect

func (x *NewTerraformReply) ProtoReflect() protoreflect.Message

func (*NewTerraformReply) Reset

func (x *NewTerraformReply) Reset()

func (*NewTerraformReply) String

func (x *NewTerraformReply) String() string

type NewTerraformRequest

type NewTerraformRequest struct {
	WorkingDir string `protobuf:"bytes,1,opt,name=workingDir,proto3" json:"workingDir,omitempty"`
	ExecPath   string `protobuf:"bytes,2,opt,name=execPath,proto3" json:"execPath,omitempty"`
	// contains filtered or unexported fields
}

func (*NewTerraformRequest) Descriptor deprecated

func (*NewTerraformRequest) Descriptor() ([]byte, []int)

Deprecated: Use NewTerraformRequest.ProtoReflect.Descriptor instead.

func (*NewTerraformRequest) GetExecPath

func (x *NewTerraformRequest) GetExecPath() string

func (*NewTerraformRequest) GetWorkingDir

func (x *NewTerraformRequest) GetWorkingDir() string

func (*NewTerraformRequest) ProtoMessage

func (*NewTerraformRequest) ProtoMessage()

func (*NewTerraformRequest) ProtoReflect

func (x *NewTerraformRequest) ProtoReflect() protoreflect.Message

func (*NewTerraformRequest) Reset

func (x *NewTerraformRequest) Reset()

func (*NewTerraformRequest) String

func (x *NewTerraformRequest) String() string

type OutputMeta

type OutputMeta struct {
	Sensitive bool   `protobuf:"varint,1,opt,name=sensitive,proto3" json:"sensitive,omitempty"`
	Type      []byte `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Value     []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*OutputMeta) Descriptor deprecated

func (*OutputMeta) Descriptor() ([]byte, []int)

Deprecated: Use OutputMeta.ProtoReflect.Descriptor instead.

func (*OutputMeta) GetSensitive

func (x *OutputMeta) GetSensitive() bool

func (*OutputMeta) GetType

func (x *OutputMeta) GetType() []byte

func (*OutputMeta) GetValue

func (x *OutputMeta) GetValue() []byte

func (*OutputMeta) ProtoMessage

func (*OutputMeta) ProtoMessage()

func (*OutputMeta) ProtoReflect

func (x *OutputMeta) ProtoReflect() protoreflect.Message

func (*OutputMeta) Reset

func (x *OutputMeta) Reset()

func (*OutputMeta) String

func (x *OutputMeta) String() string

type OutputReply

type OutputReply struct {
	Outputs map[string]*OutputMeta `` /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*OutputReply) Descriptor deprecated

func (*OutputReply) Descriptor() ([]byte, []int)

Deprecated: Use OutputReply.ProtoReflect.Descriptor instead.

func (*OutputReply) GetOutputs

func (x *OutputReply) GetOutputs() map[string]*OutputMeta

func (*OutputReply) ProtoMessage

func (*OutputReply) ProtoMessage()

func (*OutputReply) ProtoReflect

func (x *OutputReply) ProtoReflect() protoreflect.Message

func (*OutputReply) Reset

func (x *OutputReply) Reset()

func (*OutputReply) String

func (x *OutputReply) String() string

type OutputRequest

type OutputRequest struct {
	TfInstance string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	// contains filtered or unexported fields
}

func (*OutputRequest) Descriptor deprecated

func (*OutputRequest) Descriptor() ([]byte, []int)

Deprecated: Use OutputRequest.ProtoReflect.Descriptor instead.

func (*OutputRequest) GetTfInstance

func (x *OutputRequest) GetTfInstance() string

func (*OutputRequest) ProtoMessage

func (*OutputRequest) ProtoMessage()

func (*OutputRequest) ProtoReflect

func (x *OutputRequest) ProtoReflect() protoreflect.Message

func (*OutputRequest) Reset

func (x *OutputRequest) Reset()

func (*OutputRequest) String

func (x *OutputRequest) String() string

type PlanReply

type PlanReply struct {
	Drifted bool   `protobuf:"varint,1,opt,name=drifted,proto3" json:"drifted,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*PlanReply) Descriptor deprecated

func (*PlanReply) Descriptor() ([]byte, []int)

Deprecated: Use PlanReply.ProtoReflect.Descriptor instead.

func (*PlanReply) GetDrifted

func (x *PlanReply) GetDrifted() bool

func (*PlanReply) GetMessage

func (x *PlanReply) GetMessage() string

func (*PlanReply) ProtoMessage

func (*PlanReply) ProtoMessage()

func (*PlanReply) ProtoReflect

func (x *PlanReply) ProtoReflect() protoreflect.Message

func (*PlanReply) Reset

func (x *PlanReply) Reset()

func (*PlanReply) String

func (x *PlanReply) String() string

type PlanRequest

type PlanRequest struct {
	TfInstance string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	Out        string `protobuf:"bytes,2,opt,name=out,proto3" json:"out,omitempty"`
	Refresh    bool   `protobuf:"varint,3,opt,name=refresh,proto3" json:"refresh,omitempty"`
	Destroy    bool   `protobuf:"varint,4,opt,name=destroy,proto3" json:"destroy,omitempty"`
	// contains filtered or unexported fields
}

func (*PlanRequest) Descriptor deprecated

func (*PlanRequest) Descriptor() ([]byte, []int)

Deprecated: Use PlanRequest.ProtoReflect.Descriptor instead.

func (*PlanRequest) GetDestroy

func (x *PlanRequest) GetDestroy() bool

func (*PlanRequest) GetOut

func (x *PlanRequest) GetOut() string

func (*PlanRequest) GetRefresh

func (x *PlanRequest) GetRefresh() bool

func (*PlanRequest) GetTfInstance

func (x *PlanRequest) GetTfInstance() string

func (*PlanRequest) ProtoMessage

func (*PlanRequest) ProtoMessage()

func (*PlanRequest) ProtoReflect

func (x *PlanRequest) ProtoReflect() protoreflect.Message

func (*PlanRequest) Reset

func (x *PlanRequest) Reset()

func (*PlanRequest) String

func (x *PlanRequest) String() string

type ProcessCliConfigReply

type ProcessCliConfigReply struct {
	FilePath string `protobuf:"bytes,1,opt,name=filePath,proto3" json:"filePath,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessCliConfigReply) Descriptor deprecated

func (*ProcessCliConfigReply) Descriptor() ([]byte, []int)

Deprecated: Use ProcessCliConfigReply.ProtoReflect.Descriptor instead.

func (*ProcessCliConfigReply) GetFilePath

func (x *ProcessCliConfigReply) GetFilePath() string

func (*ProcessCliConfigReply) ProtoMessage

func (*ProcessCliConfigReply) ProtoMessage()

func (*ProcessCliConfigReply) ProtoReflect

func (x *ProcessCliConfigReply) ProtoReflect() protoreflect.Message

func (*ProcessCliConfigReply) Reset

func (x *ProcessCliConfigReply) Reset()

func (*ProcessCliConfigReply) String

func (x *ProcessCliConfigReply) String() string

type ProcessCliConfigRequest

type ProcessCliConfigRequest struct {
	DirPath   string `protobuf:"bytes,1,opt,name=dirPath,proto3" json:"dirPath,omitempty"`
	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessCliConfigRequest) Descriptor deprecated

func (*ProcessCliConfigRequest) Descriptor() ([]byte, []int)

Deprecated: Use ProcessCliConfigRequest.ProtoReflect.Descriptor instead.

func (*ProcessCliConfigRequest) GetDirPath

func (x *ProcessCliConfigRequest) GetDirPath() string

func (*ProcessCliConfigRequest) GetName

func (x *ProcessCliConfigRequest) GetName() string

func (*ProcessCliConfigRequest) GetNamespace

func (x *ProcessCliConfigRequest) GetNamespace() string

func (*ProcessCliConfigRequest) ProtoMessage

func (*ProcessCliConfigRequest) ProtoMessage()

func (*ProcessCliConfigRequest) ProtoReflect

func (x *ProcessCliConfigRequest) ProtoReflect() protoreflect.Message

func (*ProcessCliConfigRequest) Reset

func (x *ProcessCliConfigRequest) Reset()

func (*ProcessCliConfigRequest) String

func (x *ProcessCliConfigRequest) String() string

type RunnerClient

type RunnerClient interface {
	LookPath(ctx context.Context, in *LookPathRequest, opts ...grpc.CallOption) (*LookPathReply, error)
	NewTerraform(ctx context.Context, in *NewTerraformRequest, opts ...grpc.CallOption) (*NewTerraformReply, error)
	SetEnv(ctx context.Context, in *SetEnvRequest, opts ...grpc.CallOption) (*SetEnvReply, error)
	UploadAndExtract(ctx context.Context, in *UploadAndExtractRequest, opts ...grpc.CallOption) (*UploadAndExtractReply, error)
	CleanupDir(ctx context.Context, in *CleanupDirRequest, opts ...grpc.CallOption) (*CleanupDirReply, error)
	WriteBackendConfig(ctx context.Context, in *WriteBackendConfigRequest, opts ...grpc.CallOption) (*WriteBackendConfigReply, error)
	ProcessCliConfig(ctx context.Context, in *ProcessCliConfigRequest, opts ...grpc.CallOption) (*ProcessCliConfigReply, error)
	GenerateVarsForTF(ctx context.Context, in *GenerateVarsForTFRequest, opts ...grpc.CallOption) (*GenerateVarsForTFReply, error)
	Plan(ctx context.Context, in *PlanRequest, opts ...grpc.CallOption) (*PlanReply, error)
	ShowPlanFileRaw(ctx context.Context, in *ShowPlanFileRawRequest, opts ...grpc.CallOption) (*ShowPlanFileRawReply, error)
	SaveTFPlan(ctx context.Context, in *SaveTFPlanRequest, opts ...grpc.CallOption) (*SaveTFPlanReply, error)
	LoadTFPlan(ctx context.Context, in *LoadTFPlanRequest, opts ...grpc.CallOption) (*LoadTFPlanReply, error)
	Apply(ctx context.Context, in *ApplyRequest, opts ...grpc.CallOption) (*ApplyReply, error)
	Destroy(ctx context.Context, in *DestroyRequest, opts ...grpc.CallOption) (*DestroyReply, error)
	Output(ctx context.Context, in *OutputRequest, opts ...grpc.CallOption) (*OutputReply, error)
	WriteOutputs(ctx context.Context, in *WriteOutputsRequest, opts ...grpc.CallOption) (*WriteOutputsReply, error)
	GetOutputs(ctx context.Context, in *GetOutputsRequest, opts ...grpc.CallOption) (*GetOutputsReply, error)
	Init(ctx context.Context, in *InitRequest, opts ...grpc.CallOption) (*InitReply, error)
	Upload(ctx context.Context, in *UploadRequest, opts ...grpc.CallOption) (*UploadReply, error)
	FinalizeSecrets(ctx context.Context, in *FinalizeSecretsRequest, opts ...grpc.CallOption) (*FinalizeSecretsReply, error)
}

RunnerClient is the client API for Runner service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewRunnerClient

func NewRunnerClient(cc grpc.ClientConnInterface) RunnerClient

type RunnerServer

type RunnerServer interface {
	LookPath(context.Context, *LookPathRequest) (*LookPathReply, error)
	NewTerraform(context.Context, *NewTerraformRequest) (*NewTerraformReply, error)
	SetEnv(context.Context, *SetEnvRequest) (*SetEnvReply, error)
	UploadAndExtract(context.Context, *UploadAndExtractRequest) (*UploadAndExtractReply, error)
	CleanupDir(context.Context, *CleanupDirRequest) (*CleanupDirReply, error)
	WriteBackendConfig(context.Context, *WriteBackendConfigRequest) (*WriteBackendConfigReply, error)
	ProcessCliConfig(context.Context, *ProcessCliConfigRequest) (*ProcessCliConfigReply, error)
	GenerateVarsForTF(context.Context, *GenerateVarsForTFRequest) (*GenerateVarsForTFReply, error)
	Plan(context.Context, *PlanRequest) (*PlanReply, error)
	ShowPlanFileRaw(context.Context, *ShowPlanFileRawRequest) (*ShowPlanFileRawReply, error)
	SaveTFPlan(context.Context, *SaveTFPlanRequest) (*SaveTFPlanReply, error)
	LoadTFPlan(context.Context, *LoadTFPlanRequest) (*LoadTFPlanReply, error)
	Apply(context.Context, *ApplyRequest) (*ApplyReply, error)
	Destroy(context.Context, *DestroyRequest) (*DestroyReply, error)
	Output(context.Context, *OutputRequest) (*OutputReply, error)
	WriteOutputs(context.Context, *WriteOutputsRequest) (*WriteOutputsReply, error)
	GetOutputs(context.Context, *GetOutputsRequest) (*GetOutputsReply, error)
	Init(context.Context, *InitRequest) (*InitReply, error)
	Upload(context.Context, *UploadRequest) (*UploadReply, error)
	FinalizeSecrets(context.Context, *FinalizeSecretsRequest) (*FinalizeSecretsReply, error)
	// contains filtered or unexported methods
}

RunnerServer is the server API for Runner service. All implementations must embed UnimplementedRunnerServer for forward compatibility

type SaveTFPlanReply

type SaveTFPlanReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*SaveTFPlanReply) Descriptor deprecated

func (*SaveTFPlanReply) Descriptor() ([]byte, []int)

Deprecated: Use SaveTFPlanReply.ProtoReflect.Descriptor instead.

func (*SaveTFPlanReply) GetMessage

func (x *SaveTFPlanReply) GetMessage() string

func (*SaveTFPlanReply) ProtoMessage

func (*SaveTFPlanReply) ProtoMessage()

func (*SaveTFPlanReply) ProtoReflect

func (x *SaveTFPlanReply) ProtoReflect() protoreflect.Message

func (*SaveTFPlanReply) Reset

func (x *SaveTFPlanReply) Reset()

func (*SaveTFPlanReply) String

func (x *SaveTFPlanReply) String() string

type SaveTFPlanRequest

type SaveTFPlanRequest struct {
	TfInstance               string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	BackendCompletelyDisable bool   `protobuf:"varint,2,opt,name=backendCompletelyDisable,proto3" json:"backendCompletelyDisable,omitempty"`
	Name                     string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Namespace                string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Uuid                     string `protobuf:"bytes,5,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Revision                 string `protobuf:"bytes,6,opt,name=revision,proto3" json:"revision,omitempty"`
	// contains filtered or unexported fields
}

func (*SaveTFPlanRequest) Descriptor deprecated

func (*SaveTFPlanRequest) Descriptor() ([]byte, []int)

Deprecated: Use SaveTFPlanRequest.ProtoReflect.Descriptor instead.

func (*SaveTFPlanRequest) GetBackendCompletelyDisable

func (x *SaveTFPlanRequest) GetBackendCompletelyDisable() bool

func (*SaveTFPlanRequest) GetName

func (x *SaveTFPlanRequest) GetName() string

func (*SaveTFPlanRequest) GetNamespace

func (x *SaveTFPlanRequest) GetNamespace() string

func (*SaveTFPlanRequest) GetRevision

func (x *SaveTFPlanRequest) GetRevision() string

func (*SaveTFPlanRequest) GetTfInstance

func (x *SaveTFPlanRequest) GetTfInstance() string

func (*SaveTFPlanRequest) GetUuid

func (x *SaveTFPlanRequest) GetUuid() string

func (*SaveTFPlanRequest) ProtoMessage

func (*SaveTFPlanRequest) ProtoMessage()

func (*SaveTFPlanRequest) ProtoReflect

func (x *SaveTFPlanRequest) ProtoReflect() protoreflect.Message

func (*SaveTFPlanRequest) Reset

func (x *SaveTFPlanRequest) Reset()

func (*SaveTFPlanRequest) String

func (x *SaveTFPlanRequest) String() string

type SetEnvReply

type SetEnvReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*SetEnvReply) Descriptor deprecated

func (*SetEnvReply) Descriptor() ([]byte, []int)

Deprecated: Use SetEnvReply.ProtoReflect.Descriptor instead.

func (*SetEnvReply) GetMessage

func (x *SetEnvReply) GetMessage() string

func (*SetEnvReply) ProtoMessage

func (*SetEnvReply) ProtoMessage()

func (*SetEnvReply) ProtoReflect

func (x *SetEnvReply) ProtoReflect() protoreflect.Message

func (*SetEnvReply) Reset

func (x *SetEnvReply) Reset()

func (*SetEnvReply) String

func (x *SetEnvReply) String() string

type SetEnvRequest

type SetEnvRequest struct {
	TfInstance string            `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	Envs       map[string]string `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SetEnvRequest) Descriptor deprecated

func (*SetEnvRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetEnvRequest.ProtoReflect.Descriptor instead.

func (*SetEnvRequest) GetEnvs

func (x *SetEnvRequest) GetEnvs() map[string]string

func (*SetEnvRequest) GetTfInstance

func (x *SetEnvRequest) GetTfInstance() string

func (*SetEnvRequest) ProtoMessage

func (*SetEnvRequest) ProtoMessage()

func (*SetEnvRequest) ProtoReflect

func (x *SetEnvRequest) ProtoReflect() protoreflect.Message

func (*SetEnvRequest) Reset

func (x *SetEnvRequest) Reset()

func (*SetEnvRequest) String

func (x *SetEnvRequest) String() string

type ShowPlanFileRawReply

type ShowPlanFileRawReply struct {
	RawOutput string `protobuf:"bytes,1,opt,name=rawOutput,proto3" json:"rawOutput,omitempty"`
	// contains filtered or unexported fields
}

func (*ShowPlanFileRawReply) Descriptor deprecated

func (*ShowPlanFileRawReply) Descriptor() ([]byte, []int)

Deprecated: Use ShowPlanFileRawReply.ProtoReflect.Descriptor instead.

func (*ShowPlanFileRawReply) GetRawOutput

func (x *ShowPlanFileRawReply) GetRawOutput() string

func (*ShowPlanFileRawReply) ProtoMessage

func (*ShowPlanFileRawReply) ProtoMessage()

func (*ShowPlanFileRawReply) ProtoReflect

func (x *ShowPlanFileRawReply) ProtoReflect() protoreflect.Message

func (*ShowPlanFileRawReply) Reset

func (x *ShowPlanFileRawReply) Reset()

func (*ShowPlanFileRawReply) String

func (x *ShowPlanFileRawReply) String() string

type ShowPlanFileRawRequest

type ShowPlanFileRawRequest struct {
	TfInstance string `protobuf:"bytes,1,opt,name=tfInstance,proto3" json:"tfInstance,omitempty"`
	Filename   string `protobuf:"bytes,2,opt,name=filename,proto3" json:"filename,omitempty"`
	// contains filtered or unexported fields
}

func (*ShowPlanFileRawRequest) Descriptor deprecated

func (*ShowPlanFileRawRequest) Descriptor() ([]byte, []int)

Deprecated: Use ShowPlanFileRawRequest.ProtoReflect.Descriptor instead.

func (*ShowPlanFileRawRequest) GetFilename

func (x *ShowPlanFileRawRequest) GetFilename() string

func (*ShowPlanFileRawRequest) GetTfInstance

func (x *ShowPlanFileRawRequest) GetTfInstance() string

func (*ShowPlanFileRawRequest) ProtoMessage

func (*ShowPlanFileRawRequest) ProtoMessage()

func (*ShowPlanFileRawRequest) ProtoReflect

func (x *ShowPlanFileRawRequest) ProtoReflect() protoreflect.Message

func (*ShowPlanFileRawRequest) Reset

func (x *ShowPlanFileRawRequest) Reset()

func (*ShowPlanFileRawRequest) String

func (x *ShowPlanFileRawRequest) String() string

type TerraformRunnerServer

type TerraformRunnerServer struct {
	UnimplementedRunnerServer

	client.Client
	Scheme *runtime.Scheme
	Done   chan os.Signal
	// contains filtered or unexported fields
}

func (*TerraformRunnerServer) Apply

func (*TerraformRunnerServer) CleanupDir

func (*TerraformRunnerServer) Destroy

func (*TerraformRunnerServer) FinalizeSecrets

func (*TerraformRunnerServer) GenerateVarsForTF

GenerateVarsForTF renders the Terraform variables as a json file for the given inputs variables supplied in the varsFrom field will override those specified in the spec

func (*TerraformRunnerServer) GetOutputs

func (*TerraformRunnerServer) Init

func (*TerraformRunnerServer) LoadTFPlan

func (*TerraformRunnerServer) LookPath

func (*TerraformRunnerServer) NewTerraform

func (*TerraformRunnerServer) Output

func (*TerraformRunnerServer) Plan

func (*TerraformRunnerServer) ProcessCliConfig

func (*TerraformRunnerServer) SaveTFPlan

func (*TerraformRunnerServer) SetEnv

func (*TerraformRunnerServer) ShowPlanFileRaw

func (*TerraformRunnerServer) UploadAndExtract

func (*TerraformRunnerServer) WriteBackendConfig

func (*TerraformRunnerServer) WriteOutputs

type UnimplementedRunnerServer

type UnimplementedRunnerServer struct {
}

UnimplementedRunnerServer must be embedded to have forward compatible implementations.

func (UnimplementedRunnerServer) Apply

func (UnimplementedRunnerServer) CleanupDir

func (UnimplementedRunnerServer) Destroy

func (UnimplementedRunnerServer) FinalizeSecrets

func (UnimplementedRunnerServer) GenerateVarsForTF

func (UnimplementedRunnerServer) GetOutputs

func (UnimplementedRunnerServer) Init

func (UnimplementedRunnerServer) LoadTFPlan

func (UnimplementedRunnerServer) LookPath

func (UnimplementedRunnerServer) NewTerraform

func (UnimplementedRunnerServer) Output

func (UnimplementedRunnerServer) Plan

func (UnimplementedRunnerServer) ProcessCliConfig

func (UnimplementedRunnerServer) SaveTFPlan

func (UnimplementedRunnerServer) SetEnv

func (UnimplementedRunnerServer) ShowPlanFileRaw

func (UnimplementedRunnerServer) Upload

func (UnimplementedRunnerServer) UploadAndExtract

func (UnimplementedRunnerServer) WriteBackendConfig

func (UnimplementedRunnerServer) WriteOutputs

type UnsafeRunnerServer

type UnsafeRunnerServer interface {
	// contains filtered or unexported methods
}

UnsafeRunnerServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to RunnerServer will result in compilation errors.

type UploadAndExtractReply

type UploadAndExtractReply struct {
	WorkingDir string `protobuf:"bytes,1,opt,name=workingDir,proto3" json:"workingDir,omitempty"`
	TmpDir     string `protobuf:"bytes,2,opt,name=tmpDir,proto3" json:"tmpDir,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadAndExtractReply) Descriptor deprecated

func (*UploadAndExtractReply) Descriptor() ([]byte, []int)

Deprecated: Use UploadAndExtractReply.ProtoReflect.Descriptor instead.

func (*UploadAndExtractReply) GetTmpDir

func (x *UploadAndExtractReply) GetTmpDir() string

func (*UploadAndExtractReply) GetWorkingDir

func (x *UploadAndExtractReply) GetWorkingDir() string

func (*UploadAndExtractReply) ProtoMessage

func (*UploadAndExtractReply) ProtoMessage()

func (*UploadAndExtractReply) ProtoReflect

func (x *UploadAndExtractReply) ProtoReflect() protoreflect.Message

func (*UploadAndExtractReply) Reset

func (x *UploadAndExtractReply) Reset()

func (*UploadAndExtractReply) String

func (x *UploadAndExtractReply) String() string

type UploadAndExtractRequest

type UploadAndExtractRequest struct {
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	TarGz     []byte `protobuf:"bytes,3,opt,name=tarGz,proto3" json:"tarGz,omitempty"`
	Path      string `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadAndExtractRequest) Descriptor deprecated

func (*UploadAndExtractRequest) Descriptor() ([]byte, []int)

Deprecated: Use UploadAndExtractRequest.ProtoReflect.Descriptor instead.

func (*UploadAndExtractRequest) GetName

func (x *UploadAndExtractRequest) GetName() string

func (*UploadAndExtractRequest) GetNamespace

func (x *UploadAndExtractRequest) GetNamespace() string

func (*UploadAndExtractRequest) GetPath

func (x *UploadAndExtractRequest) GetPath() string

func (*UploadAndExtractRequest) GetTarGz

func (x *UploadAndExtractRequest) GetTarGz() []byte

func (*UploadAndExtractRequest) ProtoMessage

func (*UploadAndExtractRequest) ProtoMessage()

func (*UploadAndExtractRequest) ProtoReflect

func (x *UploadAndExtractRequest) ProtoReflect() protoreflect.Message

func (*UploadAndExtractRequest) Reset

func (x *UploadAndExtractRequest) Reset()

func (*UploadAndExtractRequest) String

func (x *UploadAndExtractRequest) String() string

type UploadReply

type UploadReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadReply) Descriptor deprecated

func (*UploadReply) Descriptor() ([]byte, []int)

Deprecated: Use UploadReply.ProtoReflect.Descriptor instead.

func (*UploadReply) GetMessage

func (x *UploadReply) GetMessage() string

func (*UploadReply) ProtoMessage

func (*UploadReply) ProtoMessage()

func (*UploadReply) ProtoReflect

func (x *UploadReply) ProtoReflect() protoreflect.Message

func (*UploadReply) Reset

func (x *UploadReply) Reset()

func (*UploadReply) String

func (x *UploadReply) String() string

type UploadRequest

type UploadRequest struct {
	Blob []byte `protobuf:"bytes,1,opt,name=blob,proto3" json:"blob,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadRequest) Descriptor deprecated

func (*UploadRequest) Descriptor() ([]byte, []int)

Deprecated: Use UploadRequest.ProtoReflect.Descriptor instead.

func (*UploadRequest) GetBlob

func (x *UploadRequest) GetBlob() []byte

func (*UploadRequest) ProtoMessage

func (*UploadRequest) ProtoMessage()

func (*UploadRequest) ProtoReflect

func (x *UploadRequest) ProtoReflect() protoreflect.Message

func (*UploadRequest) Reset

func (x *UploadRequest) Reset()

func (*UploadRequest) String

func (x *UploadRequest) String() string

type WriteBackendConfigReply

type WriteBackendConfigReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteBackendConfigReply) Descriptor deprecated

func (*WriteBackendConfigReply) Descriptor() ([]byte, []int)

Deprecated: Use WriteBackendConfigReply.ProtoReflect.Descriptor instead.

func (*WriteBackendConfigReply) GetMessage

func (x *WriteBackendConfigReply) GetMessage() string

func (*WriteBackendConfigReply) ProtoMessage

func (*WriteBackendConfigReply) ProtoMessage()

func (*WriteBackendConfigReply) ProtoReflect

func (x *WriteBackendConfigReply) ProtoReflect() protoreflect.Message

func (*WriteBackendConfigReply) Reset

func (x *WriteBackendConfigReply) Reset()

func (*WriteBackendConfigReply) String

func (x *WriteBackendConfigReply) String() string

type WriteBackendConfigRequest

type WriteBackendConfigRequest struct {
	DirPath       string `protobuf:"bytes,1,opt,name=dirPath,proto3" json:"dirPath,omitempty"`
	BackendConfig []byte `protobuf:"bytes,2,opt,name=backendConfig,proto3" json:"backendConfig,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteBackendConfigRequest) Descriptor deprecated

func (*WriteBackendConfigRequest) Descriptor() ([]byte, []int)

Deprecated: Use WriteBackendConfigRequest.ProtoReflect.Descriptor instead.

func (*WriteBackendConfigRequest) GetBackendConfig

func (x *WriteBackendConfigRequest) GetBackendConfig() []byte

func (*WriteBackendConfigRequest) GetDirPath

func (x *WriteBackendConfigRequest) GetDirPath() string

func (*WriteBackendConfigRequest) ProtoMessage

func (*WriteBackendConfigRequest) ProtoMessage()

func (*WriteBackendConfigRequest) ProtoReflect

func (*WriteBackendConfigRequest) Reset

func (x *WriteBackendConfigRequest) Reset()

func (*WriteBackendConfigRequest) String

func (x *WriteBackendConfigRequest) String() string

type WriteOutputsReply

type WriteOutputsReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteOutputsReply) Descriptor deprecated

func (*WriteOutputsReply) Descriptor() ([]byte, []int)

Deprecated: Use WriteOutputsReply.ProtoReflect.Descriptor instead.

func (*WriteOutputsReply) GetMessage

func (x *WriteOutputsReply) GetMessage() string

func (*WriteOutputsReply) ProtoMessage

func (*WriteOutputsReply) ProtoMessage()

func (*WriteOutputsReply) ProtoReflect

func (x *WriteOutputsReply) ProtoReflect() protoreflect.Message

func (*WriteOutputsReply) Reset

func (x *WriteOutputsReply) Reset()

func (*WriteOutputsReply) String

func (x *WriteOutputsReply) String() string

type WriteOutputsRequest

type WriteOutputsRequest struct {
	Namespace  string            `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name       string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	SecretName string            `protobuf:"bytes,3,opt,name=secretName,proto3" json:"secretName,omitempty"`
	Uuid       string            `protobuf:"bytes,4,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Data       map[string][]byte `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*WriteOutputsRequest) Descriptor deprecated

func (*WriteOutputsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WriteOutputsRequest.ProtoReflect.Descriptor instead.

func (*WriteOutputsRequest) GetData

func (x *WriteOutputsRequest) GetData() map[string][]byte

func (*WriteOutputsRequest) GetName

func (x *WriteOutputsRequest) GetName() string

func (*WriteOutputsRequest) GetNamespace

func (x *WriteOutputsRequest) GetNamespace() string

func (*WriteOutputsRequest) GetSecretName

func (x *WriteOutputsRequest) GetSecretName() string

func (*WriteOutputsRequest) GetUuid

func (x *WriteOutputsRequest) GetUuid() string

func (*WriteOutputsRequest) ProtoMessage

func (*WriteOutputsRequest) ProtoMessage()

func (*WriteOutputsRequest) ProtoReflect

func (x *WriteOutputsRequest) ProtoReflect() protoreflect.Message

func (*WriteOutputsRequest) Reset

func (x *WriteOutputsRequest) Reset()

func (*WriteOutputsRequest) String

func (x *WriteOutputsRequest) String() string

Jump to

Keyboard shortcuts

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