serverv1

package
v0.4.5 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	DeploymentStatus_name = map[int32]string{
		0:  "DEPLOYMENT_STATUS_UNSPECIFIED",
		1:  "DEPLOYMENT_STATUS_UNKNOWN",
		2:  "DEPLOYMENT_STATUS_PENDING",
		3:  "DEPLOYMENT_STATUS_QUEUED",
		4:  "DEPLOYMENT_STATUS_WORKING",
		5:  "DEPLOYMENT_STATUS_SUCCESS",
		6:  "DEPLOYMENT_STATUS_FAILURE",
		7:  "DEPLOYMENT_STATUS_INTERNAL_ERROR",
		8:  "DEPLOYMENT_STATUS_TIMEOUT",
		9:  "DEPLOYMENT_STATUS_CANCELLED",
		10: "DEPLOYMENT_STATUS_EXPIRED",
		11: "DEPLOYMENT_STATUS_BOOT_ERRORS",
	}
	DeploymentStatus_value = map[string]int32{
		"DEPLOYMENT_STATUS_UNSPECIFIED":    0,
		"DEPLOYMENT_STATUS_UNKNOWN":        1,
		"DEPLOYMENT_STATUS_PENDING":        2,
		"DEPLOYMENT_STATUS_QUEUED":         3,
		"DEPLOYMENT_STATUS_WORKING":        4,
		"DEPLOYMENT_STATUS_SUCCESS":        5,
		"DEPLOYMENT_STATUS_FAILURE":        6,
		"DEPLOYMENT_STATUS_INTERNAL_ERROR": 7,
		"DEPLOYMENT_STATUS_TIMEOUT":        8,
		"DEPLOYMENT_STATUS_CANCELLED":      9,
		"DEPLOYMENT_STATUS_EXPIRED":        10,
		"DEPLOYMENT_STATUS_BOOT_ERRORS":    11,
	}
)

Enum value maps for DeploymentStatus.

View Source
var (
	CloudProviderKind_name = map[int32]string{
		0: "CLOUD_PROVIDER_KIND_UNSPECIFIED",
		1: "CLOUD_PROVIDER_KIND_UNKNOWN",
		2: "CLOUD_PROVIDER_KIND_GCP",
		3: "CLOUD_PROVIDER_KIND_AWS",
	}
	CloudProviderKind_value = map[string]int32{
		"CLOUD_PROVIDER_KIND_UNSPECIFIED": 0,
		"CLOUD_PROVIDER_KIND_UNKNOWN":     1,
		"CLOUD_PROVIDER_KIND_GCP":         2,
		"CLOUD_PROVIDER_KIND_AWS":         3,
	}
)

Enum value maps for CloudProviderKind.

View Source
var (
	LinkSessionStatus_name = map[int32]string{
		0: "LINK_SESSION_STATUS_UNSPECIFIED",
		1: "LINK_SESSION_STATUS_PENDING",
		2: "LINK_SESSION_STATUS_SUCCESS",
		3: "LINK_SESSION_STATUS_FAILED",
		4: "LINK_SESSION_STATUS_NOT_FOUND",
		5: "LINK_SESSION_STATUS_FORBIDDEN",
	}
	LinkSessionStatus_value = map[string]int32{
		"LINK_SESSION_STATUS_UNSPECIFIED": 0,
		"LINK_SESSION_STATUS_PENDING":     1,
		"LINK_SESSION_STATUS_SUCCESS":     2,
		"LINK_SESSION_STATUS_FAILED":      3,
		"LINK_SESSION_STATUS_NOT_FOUND":   4,
		"LINK_SESSION_STATUS_FORBIDDEN":   5,
	}
)

Enum value maps for LinkSessionStatus.

View Source
var (
	HealthCheckStatus_name = map[int32]string{
		0: "HEALTH_CHECK_STATUS_UNSPECIFIED",
		1: "HEALTH_CHECK_STATUS_OK",
		2: "HEALTH_CHECK_STATUS_FAILING",
	}
	HealthCheckStatus_value = map[string]int32{
		"HEALTH_CHECK_STATUS_UNSPECIFIED": 0,
		"HEALTH_CHECK_STATUS_OK":          1,
		"HEALTH_CHECK_STATUS_FAILING":     2,
	}
)

Enum value maps for HealthCheckStatus.

View Source
var File_chalk_server_v1_auth_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_billing_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_cli_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_deploy_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_deployment_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_environment_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_graph_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_link_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_status_proto protoreflect.FileDescriptor
View Source
var File_chalk_server_v1_team_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AWSCloudConfig

type AWSCloudConfig struct {
	AccountId           string                  `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	ManagementRoleArn   string                  `protobuf:"bytes,2,opt,name=management_role_arn,json=managementRoleArn,proto3" json:"management_role_arn,omitempty"`
	Region              string                  `protobuf:"bytes,3,opt,name=region,proto3" json:"region,omitempty"`
	ExternalId          *string                 `protobuf:"bytes,4,opt,name=external_id,json=externalId,proto3,oneof" json:"external_id,omitempty"`
	CloudWatchConfig    *AWSCloudWatchConfig    `protobuf:"bytes,5,opt,name=cloud_watch_config,json=cloudWatchConfig,proto3" json:"cloud_watch_config,omitempty"`
	SecretManagerConfig *AWSSecretManagerConfig `protobuf:"bytes,6,opt,name=secret_manager_config,json=secretManagerConfig,proto3" json:"secret_manager_config,omitempty"`
	// contains filtered or unexported fields
}

func (*AWSCloudConfig) Descriptor deprecated

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

Deprecated: Use AWSCloudConfig.ProtoReflect.Descriptor instead.

func (*AWSCloudConfig) GetAccountId

func (x *AWSCloudConfig) GetAccountId() string

func (*AWSCloudConfig) GetCloudWatchConfig

func (x *AWSCloudConfig) GetCloudWatchConfig() *AWSCloudWatchConfig

func (*AWSCloudConfig) GetExternalId

func (x *AWSCloudConfig) GetExternalId() string

func (*AWSCloudConfig) GetManagementRoleArn

func (x *AWSCloudConfig) GetManagementRoleArn() string

func (*AWSCloudConfig) GetRegion

func (x *AWSCloudConfig) GetRegion() string

func (*AWSCloudConfig) GetSecretManagerConfig

func (x *AWSCloudConfig) GetSecretManagerConfig() *AWSSecretManagerConfig

func (*AWSCloudConfig) ProtoMessage

func (*AWSCloudConfig) ProtoMessage()

func (*AWSCloudConfig) ProtoReflect

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

func (*AWSCloudConfig) Reset

func (x *AWSCloudConfig) Reset()

func (*AWSCloudConfig) String

func (x *AWSCloudConfig) String() string

type AWSCloudWatchConfig

type AWSCloudWatchConfig struct {
	LogGroupPath *string `protobuf:"bytes,1,opt,name=log_group_path,json=logGroupPath,proto3,oneof" json:"log_group_path,omitempty"`
	// contains filtered or unexported fields
}

func (*AWSCloudWatchConfig) Descriptor deprecated

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

Deprecated: Use AWSCloudWatchConfig.ProtoReflect.Descriptor instead.

func (*AWSCloudWatchConfig) GetLogGroupPath

func (x *AWSCloudWatchConfig) GetLogGroupPath() string

func (*AWSCloudWatchConfig) ProtoMessage

func (*AWSCloudWatchConfig) ProtoMessage()

func (*AWSCloudWatchConfig) ProtoReflect

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

func (*AWSCloudWatchConfig) Reset

func (x *AWSCloudWatchConfig) Reset()

func (*AWSCloudWatchConfig) String

func (x *AWSCloudWatchConfig) String() string

type AWSSecretManagerConfig

type AWSSecretManagerConfig struct {
	SecretKmsArn *string           `protobuf:"bytes,1,opt,name=secret_kms_arn,json=secretKmsArn,proto3,oneof" json:"secret_kms_arn,omitempty"`
	SecretTags   map[string]string `` /* 179-byte string literal not displayed */
	SecretPrefix *string           `protobuf:"bytes,3,opt,name=secret_prefix,json=secretPrefix,proto3,oneof" json:"secret_prefix,omitempty"`
	// contains filtered or unexported fields
}

func (*AWSSecretManagerConfig) Descriptor deprecated

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

Deprecated: Use AWSSecretManagerConfig.ProtoReflect.Descriptor instead.

func (*AWSSecretManagerConfig) GetSecretKmsArn

func (x *AWSSecretManagerConfig) GetSecretKmsArn() string

func (*AWSSecretManagerConfig) GetSecretPrefix

func (x *AWSSecretManagerConfig) GetSecretPrefix() string

func (*AWSSecretManagerConfig) GetSecretTags

func (x *AWSSecretManagerConfig) GetSecretTags() map[string]string

func (*AWSSecretManagerConfig) ProtoMessage

func (*AWSSecretManagerConfig) ProtoMessage()

func (*AWSSecretManagerConfig) ProtoReflect

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

func (*AWSSecretManagerConfig) Reset

func (x *AWSSecretManagerConfig) Reset()

func (*AWSSecretManagerConfig) String

func (x *AWSSecretManagerConfig) String() string

type CheckHealthRequest

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

func (*CheckHealthRequest) Descriptor deprecated

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

Deprecated: Use CheckHealthRequest.ProtoReflect.Descriptor instead.

func (*CheckHealthRequest) ProtoMessage

func (*CheckHealthRequest) ProtoMessage()

func (*CheckHealthRequest) ProtoReflect

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

func (*CheckHealthRequest) Reset

func (x *CheckHealthRequest) Reset()

func (*CheckHealthRequest) String

func (x *CheckHealthRequest) String() string

type CheckHealthResponse

type CheckHealthResponse struct {
	Checks []*HealthCheck `protobuf:"bytes,1,rep,name=checks,proto3" json:"checks,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckHealthResponse) Descriptor deprecated

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

Deprecated: Use CheckHealthResponse.ProtoReflect.Descriptor instead.

func (*CheckHealthResponse) GetChecks

func (x *CheckHealthResponse) GetChecks() []*HealthCheck

func (*CheckHealthResponse) ProtoMessage

func (*CheckHealthResponse) ProtoMessage()

func (*CheckHealthResponse) ProtoReflect

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

func (*CheckHealthResponse) Reset

func (x *CheckHealthResponse) Reset()

func (*CheckHealthResponse) String

func (x *CheckHealthResponse) String() string

type CloudConfig

type CloudConfig struct {

	// Types that are assignable to Config:
	//
	//	*CloudConfig_Aws
	//	*CloudConfig_Gcp
	Config isCloudConfig_Config `protobuf_oneof:"config"`
	// contains filtered or unexported fields
}

func (*CloudConfig) Descriptor deprecated

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

Deprecated: Use CloudConfig.ProtoReflect.Descriptor instead.

func (*CloudConfig) GetAws

func (x *CloudConfig) GetAws() *AWSCloudConfig

func (*CloudConfig) GetConfig

func (m *CloudConfig) GetConfig() isCloudConfig_Config

func (*CloudConfig) GetGcp

func (x *CloudConfig) GetGcp() *GCPCloudConfig

func (*CloudConfig) ProtoMessage

func (*CloudConfig) ProtoMessage()

func (*CloudConfig) ProtoReflect

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

func (*CloudConfig) Reset

func (x *CloudConfig) Reset()

func (*CloudConfig) String

func (x *CloudConfig) String() string

type CloudConfig_Aws

type CloudConfig_Aws struct {
	Aws *AWSCloudConfig `protobuf:"bytes,1,opt,name=aws,proto3,oneof"`
}

type CloudConfig_Gcp

type CloudConfig_Gcp struct {
	Gcp *GCPCloudConfig `protobuf:"bytes,2,opt,name=gcp,proto3,oneof"`
}

type CloudProviderKind

type CloudProviderKind int32
const (
	CloudProviderKind_CLOUD_PROVIDER_KIND_UNSPECIFIED CloudProviderKind = 0
	CloudProviderKind_CLOUD_PROVIDER_KIND_UNKNOWN     CloudProviderKind = 1
	CloudProviderKind_CLOUD_PROVIDER_KIND_GCP         CloudProviderKind = 2
	CloudProviderKind_CLOUD_PROVIDER_KIND_AWS         CloudProviderKind = 3
)

func (CloudProviderKind) Descriptor

func (CloudProviderKind) Enum

func (CloudProviderKind) EnumDescriptor deprecated

func (CloudProviderKind) EnumDescriptor() ([]byte, []int)

Deprecated: Use CloudProviderKind.Descriptor instead.

func (CloudProviderKind) Number

func (CloudProviderKind) String

func (x CloudProviderKind) String() string

func (CloudProviderKind) Type

type CommandLineInterfaceVersion

type CommandLineInterfaceVersion struct {
	Version     string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	DownloadUrl string `protobuf:"bytes,2,opt,name=download_url,json=downloadUrl,proto3" json:"download_url,omitempty"`
	Os          string `protobuf:"bytes,3,opt,name=os,proto3" json:"os,omitempty"`
	Arch        string `protobuf:"bytes,4,opt,name=arch,proto3" json:"arch,omitempty"`
	Generation  int64  `protobuf:"varint,5,opt,name=generation,proto3" json:"generation,omitempty"`
	// contains filtered or unexported fields
}

func (*CommandLineInterfaceVersion) Descriptor deprecated

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

Deprecated: Use CommandLineInterfaceVersion.ProtoReflect.Descriptor instead.

func (*CommandLineInterfaceVersion) GetArch

func (x *CommandLineInterfaceVersion) GetArch() string

func (*CommandLineInterfaceVersion) GetDownloadUrl

func (x *CommandLineInterfaceVersion) GetDownloadUrl() string

func (*CommandLineInterfaceVersion) GetGeneration

func (x *CommandLineInterfaceVersion) GetGeneration() int64

func (*CommandLineInterfaceVersion) GetOs

func (*CommandLineInterfaceVersion) GetVersion

func (x *CommandLineInterfaceVersion) GetVersion() string

func (*CommandLineInterfaceVersion) ProtoMessage

func (*CommandLineInterfaceVersion) ProtoMessage()

func (*CommandLineInterfaceVersion) ProtoReflect

func (*CommandLineInterfaceVersion) Reset

func (x *CommandLineInterfaceVersion) Reset()

func (*CommandLineInterfaceVersion) String

func (x *CommandLineInterfaceVersion) String() string

type CreateLinkSessionRequest

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

CREATE LINK

func (*CreateLinkSessionRequest) Descriptor deprecated

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

Deprecated: Use CreateLinkSessionRequest.ProtoReflect.Descriptor instead.

func (*CreateLinkSessionRequest) ProtoMessage

func (*CreateLinkSessionRequest) ProtoMessage()

func (*CreateLinkSessionRequest) ProtoReflect

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

func (*CreateLinkSessionRequest) Reset

func (x *CreateLinkSessionRequest) Reset()

func (*CreateLinkSessionRequest) String

func (x *CreateLinkSessionRequest) String() string

type CreateLinkSessionResponse

type CreateLinkSessionResponse struct {
	LinkCode  string                 `protobuf:"bytes,1,opt,name=link_code,json=linkCode,proto3" json:"link_code,omitempty"`
	AuthLink  string                 `protobuf:"bytes,2,opt,name=auth_link,json=authLink,proto3" json:"auth_link,omitempty"`
	ExpiresAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateLinkSessionResponse) Descriptor deprecated

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

Deprecated: Use CreateLinkSessionResponse.ProtoReflect.Descriptor instead.

func (x *CreateLinkSessionResponse) GetAuthLink() string

func (*CreateLinkSessionResponse) GetExpiresAt

func (x *CreateLinkSessionResponse) GetExpiresAt() *timestamppb.Timestamp

func (*CreateLinkSessionResponse) GetLinkCode

func (x *CreateLinkSessionResponse) GetLinkCode() string

func (*CreateLinkSessionResponse) ProtoMessage

func (*CreateLinkSessionResponse) ProtoMessage()

func (*CreateLinkSessionResponse) ProtoReflect

func (*CreateLinkSessionResponse) Reset

func (x *CreateLinkSessionResponse) Reset()

func (*CreateLinkSessionResponse) String

func (x *CreateLinkSessionResponse) String() string

type DeployBranchRequest

type DeployBranchRequest struct {
	BranchName  string `protobuf:"bytes,1,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"`
	ResetBranch bool   `protobuf:"varint,2,opt,name=reset_branch,json=resetBranch,proto3" json:"reset_branch,omitempty"`
	Archive     []byte `protobuf:"bytes,3,opt,name=archive,proto3" json:"archive,omitempty"`
	IsHotDeploy bool   `protobuf:"varint,4,opt,name=is_hot_deploy,json=isHotDeploy,proto3" json:"is_hot_deploy,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployBranchRequest) Descriptor deprecated

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

Deprecated: Use DeployBranchRequest.ProtoReflect.Descriptor instead.

func (*DeployBranchRequest) GetArchive

func (x *DeployBranchRequest) GetArchive() []byte

func (*DeployBranchRequest) GetBranchName

func (x *DeployBranchRequest) GetBranchName() string

func (*DeployBranchRequest) GetIsHotDeploy

func (x *DeployBranchRequest) GetIsHotDeploy() bool

func (*DeployBranchRequest) GetResetBranch

func (x *DeployBranchRequest) GetResetBranch() bool

func (*DeployBranchRequest) ProtoMessage

func (*DeployBranchRequest) ProtoMessage()

func (*DeployBranchRequest) ProtoReflect

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

func (*DeployBranchRequest) Reset

func (x *DeployBranchRequest) Reset()

func (*DeployBranchRequest) String

func (x *DeployBranchRequest) String() string

type DeployBranchResponse

type DeployBranchResponse struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployBranchResponse) Descriptor deprecated

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

Deprecated: Use DeployBranchResponse.ProtoReflect.Descriptor instead.

func (*DeployBranchResponse) GetDeploymentId

func (x *DeployBranchResponse) GetDeploymentId() string

func (*DeployBranchResponse) ProtoMessage

func (*DeployBranchResponse) ProtoMessage()

func (*DeployBranchResponse) ProtoReflect

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

func (*DeployBranchResponse) Reset

func (x *DeployBranchResponse) Reset()

func (*DeployBranchResponse) String

func (x *DeployBranchResponse) String() string

type Deployment

type Deployment struct {
	Id            string           `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	EnvironmentId string           `protobuf:"bytes,2,opt,name=environment_id,json=environmentId,proto3" json:"environment_id,omitempty"`
	Status        DeploymentStatus `protobuf:"varint,3,opt,name=status,proto3,enum=chalk.server.v1.DeploymentStatus" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*Deployment) Descriptor deprecated

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

Deprecated: Use Deployment.ProtoReflect.Descriptor instead.

func (*Deployment) GetEnvironmentId

func (x *Deployment) GetEnvironmentId() string

func (*Deployment) GetId

func (x *Deployment) GetId() string

func (*Deployment) GetStatus

func (x *Deployment) GetStatus() DeploymentStatus

func (*Deployment) ProtoMessage

func (*Deployment) ProtoMessage()

func (*Deployment) ProtoReflect

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

func (*Deployment) Reset

func (x *Deployment) Reset()

func (*Deployment) String

func (x *Deployment) String() string

type DeploymentStatus

type DeploymentStatus int32
const (
	DeploymentStatus_DEPLOYMENT_STATUS_UNSPECIFIED    DeploymentStatus = 0
	DeploymentStatus_DEPLOYMENT_STATUS_UNKNOWN        DeploymentStatus = 1
	DeploymentStatus_DEPLOYMENT_STATUS_PENDING        DeploymentStatus = 2
	DeploymentStatus_DEPLOYMENT_STATUS_QUEUED         DeploymentStatus = 3
	DeploymentStatus_DEPLOYMENT_STATUS_WORKING        DeploymentStatus = 4
	DeploymentStatus_DEPLOYMENT_STATUS_SUCCESS        DeploymentStatus = 5
	DeploymentStatus_DEPLOYMENT_STATUS_FAILURE        DeploymentStatus = 6
	DeploymentStatus_DEPLOYMENT_STATUS_INTERNAL_ERROR DeploymentStatus = 7
	DeploymentStatus_DEPLOYMENT_STATUS_TIMEOUT        DeploymentStatus = 8
	DeploymentStatus_DEPLOYMENT_STATUS_CANCELLED      DeploymentStatus = 9
	DeploymentStatus_DEPLOYMENT_STATUS_EXPIRED        DeploymentStatus = 10
	DeploymentStatus_DEPLOYMENT_STATUS_BOOT_ERRORS    DeploymentStatus = 11
)

func (DeploymentStatus) Descriptor

func (DeploymentStatus) Enum

func (DeploymentStatus) EnumDescriptor deprecated

func (DeploymentStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use DeploymentStatus.Descriptor instead.

func (DeploymentStatus) Number

func (DeploymentStatus) String

func (x DeploymentStatus) String() string

func (DeploymentStatus) Type

type Environment

type Environment struct {
	Name                                     string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ProjectId                                string            `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Id                                       string            `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
	TeamId                                   string            `protobuf:"bytes,4,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
	ActiveDeploymentId                       *string           `protobuf:"bytes,5,opt,name=active_deployment_id,json=activeDeploymentId,proto3,oneof" json:"active_deployment_id,omitempty"`
	WorkerUrl                                *string           `protobuf:"bytes,6,opt,name=worker_url,json=workerUrl,proto3,oneof" json:"worker_url,omitempty"`
	ServiceUrl                               *string           `protobuf:"bytes,7,opt,name=service_url,json=serviceUrl,proto3,oneof" json:"service_url,omitempty"`
	BranchUrl                                *string           `protobuf:"bytes,8,opt,name=branch_url,json=branchUrl,proto3,oneof" json:"branch_url,omitempty"`
	OfflineStoreSecret                       *string           `protobuf:"bytes,9,opt,name=offline_store_secret,json=offlineStoreSecret,proto3,oneof" json:"offline_store_secret,omitempty"`
	OnlineStoreSecret                        *string           `protobuf:"bytes,10,opt,name=online_store_secret,json=onlineStoreSecret,proto3,oneof" json:"online_store_secret,omitempty"`
	FeatureStoreSecret                       *string           `protobuf:"bytes,11,opt,name=feature_store_secret,json=featureStoreSecret,proto3,oneof" json:"feature_store_secret,omitempty"`
	PostgresSecret                           *string           `protobuf:"bytes,12,opt,name=postgres_secret,json=postgresSecret,proto3,oneof" json:"postgres_secret,omitempty"`
	OnlineStoreKind                          *string           `protobuf:"bytes,13,opt,name=online_store_kind,json=onlineStoreKind,proto3,oneof" json:"online_store_kind,omitempty"`
	EmqUri                                   *string           `protobuf:"bytes,14,opt,name=emq_uri,json=emqUri,proto3,oneof" json:"emq_uri,omitempty"`
	VpcConnectorName                         *string           `protobuf:"bytes,15,opt,name=vpc_connector_name,json=vpcConnectorName,proto3,oneof" json:"vpc_connector_name,omitempty"`
	KubeClusterName                          *string           `protobuf:"bytes,16,opt,name=kube_cluster_name,json=kubeClusterName,proto3,oneof" json:"kube_cluster_name,omitempty"`
	BranchKubeClusterName                    *string           `` /* 135-byte string literal not displayed */
	EngineKubeClusterName                    *string           `` /* 135-byte string literal not displayed */
	ShadowEngineKubeClusterName              *string           `` /* 155-byte string literal not displayed */
	KubeJobNamespace                         *string           `protobuf:"bytes,20,opt,name=kube_job_namespace,json=kubeJobNamespace,proto3,oneof" json:"kube_job_namespace,omitempty"`
	KubePreviewNamespace                     *string           `` /* 130-byte string literal not displayed */
	KubeServiceAccountName                   *string           `` /* 138-byte string literal not displayed */
	StreamingQueryServiceUri                 *string           `` /* 144-byte string literal not displayed */
	SkipOfflineWritesForOnlineCachedFeatures bool              `` /* 193-byte string literal not displayed */
	ResultBusTopic                           *string           `protobuf:"bytes,25,opt,name=result_bus_topic,json=resultBusTopic,proto3,oneof" json:"result_bus_topic,omitempty"`
	OnlinePersistenceMode                    *string           `` /* 133-byte string literal not displayed */
	MetricsBusTopic                          *string           `protobuf:"bytes,27,opt,name=metrics_bus_topic,json=metricsBusTopic,proto3,oneof" json:"metrics_bus_topic,omitempty"`
	BigtableInstanceName                     *string           `` /* 130-byte string literal not displayed */
	BigtableTableName                        *string           `protobuf:"bytes,29,opt,name=bigtable_table_name,json=bigtableTableName,proto3,oneof" json:"bigtable_table_name,omitempty"`
	CloudAccountLocator                      *string           `` /* 127-byte string literal not displayed */
	CloudRegion                              *string           `protobuf:"bytes,31,opt,name=cloud_region,json=cloudRegion,proto3,oneof" json:"cloud_region,omitempty"`
	CloudTenancyId                           *string           `protobuf:"bytes,32,opt,name=cloud_tenancy_id,json=cloudTenancyId,proto3,oneof" json:"cloud_tenancy_id,omitempty"`
	SourceBundleBucket                       *string           `protobuf:"bytes,33,opt,name=source_bundle_bucket,json=sourceBundleBucket,proto3,oneof" json:"source_bundle_bucket,omitempty"`
	EngineDockerRegistryPath                 *string           `` /* 144-byte string literal not displayed */
	DefaultPlanner                           *string           `protobuf:"bytes,35,opt,name=default_planner,json=defaultPlanner,proto3,oneof" json:"default_planner,omitempty"`
	AdditionalEnvVars                        map[string]string `` /* 203-byte string literal not displayed */
	AdditionalCronEnvVars                    map[string]string `` /* 217-byte string literal not displayed */
	PrivatePipRepositories                   *string           `` /* 136-byte string literal not displayed */
	IsSandbox                                bool              `protobuf:"varint,39,opt,name=is_sandbox,json=isSandbox,proto3" json:"is_sandbox,omitempty"`
	// AWS/GCP
	CloudProvider CloudProviderKind `` /* 141-byte string literal not displayed */
	// Null if the environment is hosted by Chalk.
	CloudConfig *CloudConfig `protobuf:"bytes,42,opt,name=cloud_config,json=cloudConfig,proto3,oneof" json:"cloud_config,omitempty"`
	// TODO: really a structured object.
	SpecConfigJson map[string]*structpb.Value `` /* 194-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Environment) Descriptor deprecated

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

Deprecated: Use Environment.ProtoReflect.Descriptor instead.

func (*Environment) GetActiveDeploymentId

func (x *Environment) GetActiveDeploymentId() string

func (*Environment) GetAdditionalCronEnvVars

func (x *Environment) GetAdditionalCronEnvVars() map[string]string

func (*Environment) GetAdditionalEnvVars

func (x *Environment) GetAdditionalEnvVars() map[string]string

func (*Environment) GetBigtableInstanceName

func (x *Environment) GetBigtableInstanceName() string

func (*Environment) GetBigtableTableName

func (x *Environment) GetBigtableTableName() string

func (*Environment) GetBranchKubeClusterName

func (x *Environment) GetBranchKubeClusterName() string

func (*Environment) GetBranchUrl

func (x *Environment) GetBranchUrl() string

func (*Environment) GetCloudAccountLocator

func (x *Environment) GetCloudAccountLocator() string

func (*Environment) GetCloudConfig

func (x *Environment) GetCloudConfig() *CloudConfig

func (*Environment) GetCloudProvider

func (x *Environment) GetCloudProvider() CloudProviderKind

func (*Environment) GetCloudRegion

func (x *Environment) GetCloudRegion() string

func (*Environment) GetCloudTenancyId

func (x *Environment) GetCloudTenancyId() string

func (*Environment) GetDefaultPlanner

func (x *Environment) GetDefaultPlanner() string

func (*Environment) GetEmqUri

func (x *Environment) GetEmqUri() string

func (*Environment) GetEngineDockerRegistryPath

func (x *Environment) GetEngineDockerRegistryPath() string

func (*Environment) GetEngineKubeClusterName

func (x *Environment) GetEngineKubeClusterName() string

func (*Environment) GetFeatureStoreSecret

func (x *Environment) GetFeatureStoreSecret() string

func (*Environment) GetId

func (x *Environment) GetId() string

func (*Environment) GetIsSandbox

func (x *Environment) GetIsSandbox() bool

func (*Environment) GetKubeClusterName

func (x *Environment) GetKubeClusterName() string

func (*Environment) GetKubeJobNamespace

func (x *Environment) GetKubeJobNamespace() string

func (*Environment) GetKubePreviewNamespace

func (x *Environment) GetKubePreviewNamespace() string

func (*Environment) GetKubeServiceAccountName

func (x *Environment) GetKubeServiceAccountName() string

func (*Environment) GetMetricsBusTopic

func (x *Environment) GetMetricsBusTopic() string

func (*Environment) GetName

func (x *Environment) GetName() string

func (*Environment) GetOfflineStoreSecret

func (x *Environment) GetOfflineStoreSecret() string

func (*Environment) GetOnlinePersistenceMode

func (x *Environment) GetOnlinePersistenceMode() string

func (*Environment) GetOnlineStoreKind

func (x *Environment) GetOnlineStoreKind() string

func (*Environment) GetOnlineStoreSecret

func (x *Environment) GetOnlineStoreSecret() string

func (*Environment) GetPostgresSecret

func (x *Environment) GetPostgresSecret() string

func (*Environment) GetPrivatePipRepositories

func (x *Environment) GetPrivatePipRepositories() string

func (*Environment) GetProjectId

func (x *Environment) GetProjectId() string

func (*Environment) GetResultBusTopic

func (x *Environment) GetResultBusTopic() string

func (*Environment) GetServiceUrl

func (x *Environment) GetServiceUrl() string

func (*Environment) GetShadowEngineKubeClusterName

func (x *Environment) GetShadowEngineKubeClusterName() string

func (*Environment) GetSkipOfflineWritesForOnlineCachedFeatures

func (x *Environment) GetSkipOfflineWritesForOnlineCachedFeatures() bool

func (*Environment) GetSourceBundleBucket

func (x *Environment) GetSourceBundleBucket() string

func (*Environment) GetSpecConfigJson

func (x *Environment) GetSpecConfigJson() map[string]*structpb.Value

func (*Environment) GetStreamingQueryServiceUri

func (x *Environment) GetStreamingQueryServiceUri() string

func (*Environment) GetTeamId

func (x *Environment) GetTeamId() string

func (*Environment) GetVpcConnectorName

func (x *Environment) GetVpcConnectorName() string

func (*Environment) GetWorkerUrl

func (x *Environment) GetWorkerUrl() string

func (*Environment) ProtoMessage

func (*Environment) ProtoMessage()

func (*Environment) ProtoReflect

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

func (*Environment) Reset

func (x *Environment) Reset()

func (*Environment) String

func (x *Environment) String() string

type FeatureMetadata

type FeatureMetadata struct {
	Fqn                string   `protobuf:"bytes,1,opt,name=fqn,proto3" json:"fqn,omitempty"`
	Name               string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Namespace          string   `protobuf:"bytes,3,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Description        *string  `protobuf:"bytes,4,opt,name=description,proto3,oneof" json:"description,omitempty"`
	Owner              *string  `protobuf:"bytes,5,opt,name=owner,proto3,oneof" json:"owner,omitempty"`
	Tags               []string `protobuf:"bytes,6,rep,name=tags,proto3" json:"tags,omitempty"`
	MaxStaleness       *string  `protobuf:"bytes,7,opt,name=max_staleness,json=maxStaleness,proto3,oneof" json:"max_staleness,omitempty"`
	EtlOfflineToOnline bool     `protobuf:"varint,8,opt,name=etl_offline_to_online,json=etlOfflineToOnline,proto3" json:"etl_offline_to_online,omitempty"`
	// contains filtered or unexported fields
}

func (*FeatureMetadata) Descriptor deprecated

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

Deprecated: Use FeatureMetadata.ProtoReflect.Descriptor instead.

func (*FeatureMetadata) GetDescription

func (x *FeatureMetadata) GetDescription() string

func (*FeatureMetadata) GetEtlOfflineToOnline

func (x *FeatureMetadata) GetEtlOfflineToOnline() bool

func (*FeatureMetadata) GetFqn

func (x *FeatureMetadata) GetFqn() string

func (*FeatureMetadata) GetMaxStaleness

func (x *FeatureMetadata) GetMaxStaleness() string

func (*FeatureMetadata) GetName

func (x *FeatureMetadata) GetName() string

func (*FeatureMetadata) GetNamespace

func (x *FeatureMetadata) GetNamespace() string

func (*FeatureMetadata) GetOwner

func (x *FeatureMetadata) GetOwner() string

func (*FeatureMetadata) GetTags

func (x *FeatureMetadata) GetTags() []string

func (*FeatureMetadata) ProtoMessage

func (*FeatureMetadata) ProtoMessage()

func (*FeatureMetadata) ProtoReflect

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

func (*FeatureMetadata) Reset

func (x *FeatureMetadata) Reset()

func (*FeatureMetadata) String

func (x *FeatureMetadata) String() string

type FeatureSQL

type FeatureSQL struct {
	Id                 int64    `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	EnvironmentId      string   `protobuf:"bytes,2,opt,name=environment_id,json=environmentId,proto3" json:"environment_id,omitempty"`
	DeploymentId       *string  `protobuf:"bytes,3,opt,name=deployment_id,json=deploymentId,proto3,oneof" json:"deployment_id,omitempty"`
	Fqn                string   `protobuf:"bytes,4,opt,name=fqn,proto3" json:"fqn,omitempty"`
	Name               string   `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Namespace          string   `protobuf:"bytes,6,opt,name=namespace,proto3" json:"namespace,omitempty"`
	MaxStaleness       *string  `protobuf:"bytes,7,opt,name=max_staleness,json=maxStaleness,proto3,oneof" json:"max_staleness,omitempty"`
	EtlOfflineToOnline bool     `protobuf:"varint,8,opt,name=etl_offline_to_online,json=etlOfflineToOnline,proto3" json:"etl_offline_to_online,omitempty"`
	Description        *string  `protobuf:"bytes,9,opt,name=description,proto3,oneof" json:"description,omitempty"`
	Owner              *string  `protobuf:"bytes,10,opt,name=owner,proto3,oneof" json:"owner,omitempty"`
	Tags               []string `protobuf:"bytes,11,rep,name=tags,proto3" json:"tags,omitempty"`
	KindEnum           string   `protobuf:"bytes,12,opt,name=kind_enum,json=kindEnum,proto3" json:"kind_enum,omitempty"`
	Kind               string   `protobuf:"bytes,13,opt,name=kind,proto3" json:"kind,omitempty"`
	WasReset           bool     `protobuf:"varint,14,opt,name=was_reset,json=wasReset,proto3" json:"was_reset,omitempty"`
	InternalVersion    *int64   `protobuf:"varint,15,opt,name=internal_version,json=internalVersion,proto3,oneof" json:"internal_version,omitempty"`
	IsSingleton        bool     `protobuf:"varint,16,opt,name=is_singleton,json=isSingleton,proto3" json:"is_singleton,omitempty"`
	// contains filtered or unexported fields
}

func (*FeatureSQL) Descriptor deprecated

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

Deprecated: Use FeatureSQL.ProtoReflect.Descriptor instead.

func (*FeatureSQL) GetDeploymentId

func (x *FeatureSQL) GetDeploymentId() string

func (*FeatureSQL) GetDescription

func (x *FeatureSQL) GetDescription() string

func (*FeatureSQL) GetEnvironmentId

func (x *FeatureSQL) GetEnvironmentId() string

func (*FeatureSQL) GetEtlOfflineToOnline

func (x *FeatureSQL) GetEtlOfflineToOnline() bool

func (*FeatureSQL) GetFqn

func (x *FeatureSQL) GetFqn() string

func (*FeatureSQL) GetId

func (x *FeatureSQL) GetId() int64

func (*FeatureSQL) GetInternalVersion

func (x *FeatureSQL) GetInternalVersion() int64

func (*FeatureSQL) GetIsSingleton

func (x *FeatureSQL) GetIsSingleton() bool

func (*FeatureSQL) GetKind

func (x *FeatureSQL) GetKind() string

func (*FeatureSQL) GetKindEnum

func (x *FeatureSQL) GetKindEnum() string

func (*FeatureSQL) GetMaxStaleness

func (x *FeatureSQL) GetMaxStaleness() string

func (*FeatureSQL) GetName

func (x *FeatureSQL) GetName() string

func (*FeatureSQL) GetNamespace

func (x *FeatureSQL) GetNamespace() string

func (*FeatureSQL) GetOwner

func (x *FeatureSQL) GetOwner() string

func (*FeatureSQL) GetTags

func (x *FeatureSQL) GetTags() []string

func (*FeatureSQL) GetWasReset

func (x *FeatureSQL) GetWasReset() bool

func (*FeatureSQL) ProtoMessage

func (*FeatureSQL) ProtoMessage()

func (*FeatureSQL) ProtoReflect

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

func (*FeatureSQL) Reset

func (x *FeatureSQL) Reset()

func (*FeatureSQL) String

func (x *FeatureSQL) String() string

type GCPCloudConfig

type GCPCloudConfig struct {
	ProjectId                string  `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Region                   string  `protobuf:"bytes,2,opt,name=region,proto3" json:"region,omitempty"`
	ManagementServiceAccount *string `` /* 141-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GCPCloudConfig) Descriptor deprecated

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

Deprecated: Use GCPCloudConfig.ProtoReflect.Descriptor instead.

func (*GCPCloudConfig) GetManagementServiceAccount

func (x *GCPCloudConfig) GetManagementServiceAccount() string

func (*GCPCloudConfig) GetProjectId

func (x *GCPCloudConfig) GetProjectId() string

func (*GCPCloudConfig) GetRegion

func (x *GCPCloudConfig) GetRegion() string

func (*GCPCloudConfig) ProtoMessage

func (*GCPCloudConfig) ProtoMessage()

func (*GCPCloudConfig) ProtoReflect

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

func (*GCPCloudConfig) Reset

func (x *GCPCloudConfig) Reset()

func (*GCPCloudConfig) String

func (x *GCPCloudConfig) String() string

type GetAgentRequest

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

func (*GetAgentRequest) Descriptor deprecated

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

Deprecated: Use GetAgentRequest.ProtoReflect.Descriptor instead.

func (*GetAgentRequest) ProtoMessage

func (*GetAgentRequest) ProtoMessage()

func (*GetAgentRequest) ProtoReflect

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

func (*GetAgentRequest) Reset

func (x *GetAgentRequest) Reset()

func (*GetAgentRequest) String

func (x *GetAgentRequest) String() string

type GetAgentResponse

type GetAgentResponse struct {
	Agent *v1.Agent `protobuf:"bytes,1,opt,name=agent,proto3" json:"agent,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAgentResponse) Descriptor deprecated

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

Deprecated: Use GetAgentResponse.ProtoReflect.Descriptor instead.

func (*GetAgentResponse) GetAgent

func (x *GetAgentResponse) GetAgent() *v1.Agent

func (*GetAgentResponse) ProtoMessage

func (*GetAgentResponse) ProtoMessage()

func (*GetAgentResponse) ProtoReflect

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

func (*GetAgentResponse) Reset

func (x *GetAgentResponse) Reset()

func (*GetAgentResponse) String

func (x *GetAgentResponse) String() string

type GetDeploymentRequest

type GetDeploymentRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentRequest) Descriptor deprecated

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

Deprecated: Use GetDeploymentRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentRequest) GetDeploymentId

func (x *GetDeploymentRequest) GetDeploymentId() string

func (*GetDeploymentRequest) ProtoMessage

func (*GetDeploymentRequest) ProtoMessage()

func (*GetDeploymentRequest) ProtoReflect

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

func (*GetDeploymentRequest) Reset

func (x *GetDeploymentRequest) Reset()

func (*GetDeploymentRequest) String

func (x *GetDeploymentRequest) String() string

type GetDeploymentResponse

type GetDeploymentResponse struct {
	Deployment *Deployment `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentResponse) Descriptor deprecated

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

Deprecated: Use GetDeploymentResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentResponse) GetDeployment

func (x *GetDeploymentResponse) GetDeployment() *Deployment

func (*GetDeploymentResponse) ProtoMessage

func (*GetDeploymentResponse) ProtoMessage()

func (*GetDeploymentResponse) ProtoReflect

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

func (*GetDeploymentResponse) Reset

func (x *GetDeploymentResponse) Reset()

func (*GetDeploymentResponse) String

func (x *GetDeploymentResponse) String() string

type GetDisplayAgentRequest

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

func (*GetDisplayAgentRequest) Descriptor deprecated

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

Deprecated: Use GetDisplayAgentRequest.ProtoReflect.Descriptor instead.

func (*GetDisplayAgentRequest) ProtoMessage

func (*GetDisplayAgentRequest) ProtoMessage()

func (*GetDisplayAgentRequest) ProtoReflect

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

func (*GetDisplayAgentRequest) Reset

func (x *GetDisplayAgentRequest) Reset()

func (*GetDisplayAgentRequest) String

func (x *GetDisplayAgentRequest) String() string

type GetDisplayAgentResponse

type GetDisplayAgentResponse struct {
	Agent *v1.DisplayAgent `protobuf:"bytes,1,opt,name=agent,proto3" json:"agent,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDisplayAgentResponse) Descriptor deprecated

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

Deprecated: Use GetDisplayAgentResponse.ProtoReflect.Descriptor instead.

func (*GetDisplayAgentResponse) GetAgent

func (x *GetDisplayAgentResponse) GetAgent() *v1.DisplayAgent

func (*GetDisplayAgentResponse) ProtoMessage

func (*GetDisplayAgentResponse) ProtoMessage()

func (*GetDisplayAgentResponse) ProtoReflect

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

func (*GetDisplayAgentResponse) Reset

func (x *GetDisplayAgentResponse) Reset()

func (*GetDisplayAgentResponse) String

func (x *GetDisplayAgentResponse) String() string

type GetEnvRequest

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

func (*GetEnvRequest) Descriptor deprecated

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

Deprecated: Use GetEnvRequest.ProtoReflect.Descriptor instead.

func (*GetEnvRequest) ProtoMessage

func (*GetEnvRequest) ProtoMessage()

func (*GetEnvRequest) ProtoReflect

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

func (*GetEnvRequest) Reset

func (x *GetEnvRequest) Reset()

func (*GetEnvRequest) String

func (x *GetEnvRequest) String() string

type GetEnvResponse

type GetEnvResponse struct {
	Environment *Environment `protobuf:"bytes,1,opt,name=environment,proto3" json:"environment,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEnvResponse) Descriptor deprecated

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

Deprecated: Use GetEnvResponse.ProtoReflect.Descriptor instead.

func (*GetEnvResponse) GetEnvironment

func (x *GetEnvResponse) GetEnvironment() *Environment

func (*GetEnvResponse) ProtoMessage

func (*GetEnvResponse) ProtoMessage()

func (*GetEnvResponse) ProtoReflect

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

func (*GetEnvResponse) Reset

func (x *GetEnvResponse) Reset()

func (*GetEnvResponse) String

func (x *GetEnvResponse) String() string

type GetEnvironmentsRequest

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

func (*GetEnvironmentsRequest) Descriptor deprecated

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

Deprecated: Use GetEnvironmentsRequest.ProtoReflect.Descriptor instead.

func (*GetEnvironmentsRequest) GetProject

func (x *GetEnvironmentsRequest) GetProject() string

func (*GetEnvironmentsRequest) ProtoMessage

func (*GetEnvironmentsRequest) ProtoMessage()

func (*GetEnvironmentsRequest) ProtoReflect

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

func (*GetEnvironmentsRequest) Reset

func (x *GetEnvironmentsRequest) Reset()

func (*GetEnvironmentsRequest) String

func (x *GetEnvironmentsRequest) String() string

type GetEnvironmentsResponse

type GetEnvironmentsResponse struct {
	Environments []*Environment `protobuf:"bytes,2,rep,name=environments,proto3" json:"environments,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEnvironmentsResponse) Descriptor deprecated

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

Deprecated: Use GetEnvironmentsResponse.ProtoReflect.Descriptor instead.

func (*GetEnvironmentsResponse) GetEnvironments

func (x *GetEnvironmentsResponse) GetEnvironments() []*Environment

func (*GetEnvironmentsResponse) ProtoMessage

func (*GetEnvironmentsResponse) ProtoMessage()

func (*GetEnvironmentsResponse) ProtoReflect

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

func (*GetEnvironmentsResponse) Reset

func (x *GetEnvironmentsResponse) Reset()

func (*GetEnvironmentsResponse) String

func (x *GetEnvironmentsResponse) String() string

type GetFeatureSQLRequest

type GetFeatureSQLRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeatureSQLRequest) Descriptor deprecated

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

Deprecated: Use GetFeatureSQLRequest.ProtoReflect.Descriptor instead.

func (*GetFeatureSQLRequest) GetDeploymentId

func (x *GetFeatureSQLRequest) GetDeploymentId() string

func (*GetFeatureSQLRequest) ProtoMessage

func (*GetFeatureSQLRequest) ProtoMessage()

func (*GetFeatureSQLRequest) ProtoReflect

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

func (*GetFeatureSQLRequest) Reset

func (x *GetFeatureSQLRequest) Reset()

func (*GetFeatureSQLRequest) String

func (x *GetFeatureSQLRequest) String() string

type GetFeatureSQLResponse

type GetFeatureSQLResponse struct {
	Features []*FeatureSQL `protobuf:"bytes,1,rep,name=features,proto3" json:"features,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeatureSQLResponse) Descriptor deprecated

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

Deprecated: Use GetFeatureSQLResponse.ProtoReflect.Descriptor instead.

func (*GetFeatureSQLResponse) GetFeatures

func (x *GetFeatureSQLResponse) GetFeatures() []*FeatureSQL

func (*GetFeatureSQLResponse) ProtoMessage

func (*GetFeatureSQLResponse) ProtoMessage()

func (*GetFeatureSQLResponse) ProtoReflect

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

func (*GetFeatureSQLResponse) Reset

func (x *GetFeatureSQLResponse) Reset()

func (*GetFeatureSQLResponse) String

func (x *GetFeatureSQLResponse) String() string

type GetFeaturesMetadataRequest

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

func (*GetFeaturesMetadataRequest) Descriptor deprecated

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

Deprecated: Use GetFeaturesMetadataRequest.ProtoReflect.Descriptor instead.

func (*GetFeaturesMetadataRequest) ProtoMessage

func (*GetFeaturesMetadataRequest) ProtoMessage()

func (*GetFeaturesMetadataRequest) ProtoReflect

func (*GetFeaturesMetadataRequest) Reset

func (x *GetFeaturesMetadataRequest) Reset()

func (*GetFeaturesMetadataRequest) String

func (x *GetFeaturesMetadataRequest) String() string

type GetFeaturesMetadataResponse

type GetFeaturesMetadataResponse struct {
	Features      []*FeatureMetadata `protobuf:"bytes,1,rep,name=features,proto3" json:"features,omitempty"`
	EnvironmentId string             `protobuf:"bytes,2,opt,name=environment_id,json=environmentId,proto3" json:"environment_id,omitempty"`
	DeploymentId  string             `protobuf:"bytes,3,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeaturesMetadataResponse) Descriptor deprecated

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

Deprecated: Use GetFeaturesMetadataResponse.ProtoReflect.Descriptor instead.

func (*GetFeaturesMetadataResponse) GetDeploymentId

func (x *GetFeaturesMetadataResponse) GetDeploymentId() string

func (*GetFeaturesMetadataResponse) GetEnvironmentId

func (x *GetFeaturesMetadataResponse) GetEnvironmentId() string

func (*GetFeaturesMetadataResponse) GetFeatures

func (x *GetFeaturesMetadataResponse) GetFeatures() []*FeatureMetadata

func (*GetFeaturesMetadataResponse) ProtoMessage

func (*GetFeaturesMetadataResponse) ProtoMessage()

func (*GetFeaturesMetadataResponse) ProtoReflect

func (*GetFeaturesMetadataResponse) Reset

func (x *GetFeaturesMetadataResponse) Reset()

func (*GetFeaturesMetadataResponse) String

func (x *GetFeaturesMetadataResponse) String() string

type GetGraphRequest

type GetGraphRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGraphRequest) Descriptor deprecated

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

Deprecated: Use GetGraphRequest.ProtoReflect.Descriptor instead.

func (*GetGraphRequest) GetDeploymentId

func (x *GetGraphRequest) GetDeploymentId() string

func (*GetGraphRequest) ProtoMessage

func (*GetGraphRequest) ProtoMessage()

func (*GetGraphRequest) ProtoReflect

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

func (*GetGraphRequest) Reset

func (x *GetGraphRequest) Reset()

func (*GetGraphRequest) String

func (x *GetGraphRequest) String() string

type GetGraphResponse

type GetGraphResponse struct {
	Graph          *v1.Graph `protobuf:"bytes,1,opt,name=graph,proto3" json:"graph,omitempty"`
	ChalkpyVersion string    `protobuf:"bytes,2,opt,name=chalkpy_version,json=chalkpyVersion,proto3" json:"chalkpy_version,omitempty"`
	Tag            *string   `protobuf:"bytes,3,opt,name=tag,proto3,oneof" json:"tag,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGraphResponse) Descriptor deprecated

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

Deprecated: Use GetGraphResponse.ProtoReflect.Descriptor instead.

func (*GetGraphResponse) GetChalkpyVersion

func (x *GetGraphResponse) GetChalkpyVersion() string

func (*GetGraphResponse) GetGraph

func (x *GetGraphResponse) GetGraph() *v1.Graph

func (*GetGraphResponse) GetTag

func (x *GetGraphResponse) GetTag() string

func (*GetGraphResponse) ProtoMessage

func (*GetGraphResponse) ProtoMessage()

func (*GetGraphResponse) ProtoReflect

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

func (*GetGraphResponse) Reset

func (x *GetGraphResponse) Reset()

func (*GetGraphResponse) String

func (x *GetGraphResponse) String() string

type GetLinkSessionRequest

type GetLinkSessionRequest struct {
	LinkCode    string `protobuf:"bytes,1,opt,name=link_code,json=linkCode,proto3" json:"link_code,omitempty"`
	ProjectName string `protobuf:"bytes,2,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
	// contains filtered or unexported fields
}

GET LINK

func (*GetLinkSessionRequest) Descriptor deprecated

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

Deprecated: Use GetLinkSessionRequest.ProtoReflect.Descriptor instead.

func (*GetLinkSessionRequest) GetLinkCode

func (x *GetLinkSessionRequest) GetLinkCode() string

func (*GetLinkSessionRequest) GetProjectName

func (x *GetLinkSessionRequest) GetProjectName() string

func (*GetLinkSessionRequest) ProtoMessage

func (*GetLinkSessionRequest) ProtoMessage()

func (*GetLinkSessionRequest) ProtoReflect

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

func (*GetLinkSessionRequest) Reset

func (x *GetLinkSessionRequest) Reset()

func (*GetLinkSessionRequest) String

func (x *GetLinkSessionRequest) String() string

type GetLinkSessionResponse

type GetLinkSessionResponse struct {
	Status  LinkSessionStatus `protobuf:"varint,1,opt,name=status,proto3,enum=chalk.server.v1.LinkSessionStatus" json:"status,omitempty"`
	Message string            `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Token   *LinkToken        `protobuf:"bytes,3,opt,name=token,proto3,oneof" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLinkSessionResponse) Descriptor deprecated

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

Deprecated: Use GetLinkSessionResponse.ProtoReflect.Descriptor instead.

func (*GetLinkSessionResponse) GetMessage

func (x *GetLinkSessionResponse) GetMessage() string

func (*GetLinkSessionResponse) GetStatus

func (*GetLinkSessionResponse) GetToken

func (x *GetLinkSessionResponse) GetToken() *LinkToken

func (*GetLinkSessionResponse) ProtoMessage

func (*GetLinkSessionResponse) ProtoMessage()

func (*GetLinkSessionResponse) ProtoReflect

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

func (*GetLinkSessionResponse) Reset

func (x *GetLinkSessionResponse) Reset()

func (*GetLinkSessionResponse) String

func (x *GetLinkSessionResponse) String() string

type GetNodesRequest

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

func (*GetNodesRequest) Descriptor deprecated

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

Deprecated: Use GetNodesRequest.ProtoReflect.Descriptor instead.

func (*GetNodesRequest) ProtoMessage

func (*GetNodesRequest) ProtoMessage()

func (*GetNodesRequest) ProtoReflect

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

func (*GetNodesRequest) Reset

func (x *GetNodesRequest) Reset()

func (*GetNodesRequest) String

func (x *GetNodesRequest) String() string

type GetNodesResponse

type GetNodesResponse struct {
	NodeStatuses []*v1.NodeStatusPubSub `protobuf:"bytes,1,rep,name=node_statuses,json=nodeStatuses,proto3" json:"node_statuses,omitempty"`
	PodStatuses  []*v1.PodStatusPubSub  `protobuf:"bytes,2,rep,name=pod_statuses,json=podStatuses,proto3" json:"pod_statuses,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNodesResponse) Descriptor deprecated

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

Deprecated: Use GetNodesResponse.ProtoReflect.Descriptor instead.

func (*GetNodesResponse) GetNodeStatuses

func (x *GetNodesResponse) GetNodeStatuses() []*v1.NodeStatusPubSub

func (*GetNodesResponse) GetPodStatuses

func (x *GetNodesResponse) GetPodStatuses() []*v1.PodStatusPubSub

func (*GetNodesResponse) ProtoMessage

func (*GetNodesResponse) ProtoMessage()

func (*GetNodesResponse) ProtoReflect

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

func (*GetNodesResponse) Reset

func (x *GetNodesResponse) Reset()

func (*GetNodesResponse) String

func (x *GetNodesResponse) String() string

type GetTokenRequest

type GetTokenRequest struct {
	ClientId     string  `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecret string  `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	GrantType    string  `protobuf:"bytes,3,opt,name=grant_type,json=grantType,proto3" json:"grant_type,omitempty"`
	Scope        *string `protobuf:"bytes,4,opt,name=scope,proto3,oneof" json:"scope,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTokenRequest) Descriptor deprecated

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

Deprecated: Use GetTokenRequest.ProtoReflect.Descriptor instead.

func (*GetTokenRequest) GetClientId

func (x *GetTokenRequest) GetClientId() string

func (*GetTokenRequest) GetClientSecret

func (x *GetTokenRequest) GetClientSecret() string

func (*GetTokenRequest) GetGrantType

func (x *GetTokenRequest) GetGrantType() string

func (*GetTokenRequest) GetScope

func (x *GetTokenRequest) GetScope() string

func (*GetTokenRequest) ProtoMessage

func (*GetTokenRequest) ProtoMessage()

func (*GetTokenRequest) ProtoReflect

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

func (*GetTokenRequest) Reset

func (x *GetTokenRequest) Reset()

func (*GetTokenRequest) String

func (x *GetTokenRequest) String() string

type GetTokenResponse

type GetTokenResponse struct {
	AccessToken        string                 `protobuf:"bytes,1,opt,name=access_token,json=accessToken,proto3" json:"access_token,omitempty"`
	TokenType          string                 `protobuf:"bytes,2,opt,name=token_type,json=tokenType,proto3" json:"token_type,omitempty"`
	ExpiresIn          int32                  `protobuf:"varint,3,opt,name=expires_in,json=expiresIn,proto3" json:"expires_in,omitempty"`
	ExpiresAt          *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	ApiServer          string                 `protobuf:"bytes,5,opt,name=api_server,json=apiServer,proto3" json:"api_server,omitempty"`
	PrimaryEnvironment *string                `protobuf:"bytes,6,opt,name=primary_environment,json=primaryEnvironment,proto3,oneof" json:"primary_environment,omitempty"`
	Engines            map[string]string      `` /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetTokenResponse) Descriptor deprecated

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

Deprecated: Use GetTokenResponse.ProtoReflect.Descriptor instead.

func (*GetTokenResponse) GetAccessToken

func (x *GetTokenResponse) GetAccessToken() string

func (*GetTokenResponse) GetApiServer

func (x *GetTokenResponse) GetApiServer() string

func (*GetTokenResponse) GetEngines

func (x *GetTokenResponse) GetEngines() map[string]string

func (*GetTokenResponse) GetExpiresAt

func (x *GetTokenResponse) GetExpiresAt() *timestamppb.Timestamp

func (*GetTokenResponse) GetExpiresIn

func (x *GetTokenResponse) GetExpiresIn() int32

func (*GetTokenResponse) GetPrimaryEnvironment

func (x *GetTokenResponse) GetPrimaryEnvironment() string

func (*GetTokenResponse) GetTokenType

func (x *GetTokenResponse) GetTokenType() string

func (*GetTokenResponse) ProtoMessage

func (*GetTokenResponse) ProtoMessage()

func (*GetTokenResponse) ProtoReflect

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

func (*GetTokenResponse) Reset

func (x *GetTokenResponse) Reset()

func (*GetTokenResponse) String

func (x *GetTokenResponse) String() string

type GetVersionsRequest

type GetVersionsRequest struct {
	Os   *string `protobuf:"bytes,1,opt,name=os,proto3,oneof" json:"os,omitempty"`
	Arch *string `protobuf:"bytes,2,opt,name=arch,proto3,oneof" json:"arch,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVersionsRequest) Descriptor deprecated

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

Deprecated: Use GetVersionsRequest.ProtoReflect.Descriptor instead.

func (*GetVersionsRequest) GetArch

func (x *GetVersionsRequest) GetArch() string

func (*GetVersionsRequest) GetOs

func (x *GetVersionsRequest) GetOs() string

func (*GetVersionsRequest) ProtoMessage

func (*GetVersionsRequest) ProtoMessage()

func (*GetVersionsRequest) ProtoReflect

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

func (*GetVersionsRequest) Reset

func (x *GetVersionsRequest) Reset()

func (*GetVersionsRequest) String

func (x *GetVersionsRequest) String() string

type GetVersionsResponse

type GetVersionsResponse struct {
	Versions []*CommandLineInterfaceVersion `protobuf:"bytes,1,rep,name=versions,proto3" json:"versions,omitempty"`
	Latest   *CommandLineInterfaceVersion   `protobuf:"bytes,2,opt,name=latest,proto3" json:"latest,omitempty"`
	Nightly  *CommandLineInterfaceVersion   `protobuf:"bytes,3,opt,name=nightly,proto3" json:"nightly,omitempty"`
	Minimum  string                         `protobuf:"bytes,4,opt,name=minimum,proto3" json:"minimum,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVersionsResponse) Descriptor deprecated

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

Deprecated: Use GetVersionsResponse.ProtoReflect.Descriptor instead.

func (*GetVersionsResponse) GetLatest

func (*GetVersionsResponse) GetMinimum

func (x *GetVersionsResponse) GetMinimum() string

func (*GetVersionsResponse) GetNightly

func (*GetVersionsResponse) GetVersions

func (*GetVersionsResponse) ProtoMessage

func (*GetVersionsResponse) ProtoMessage()

func (*GetVersionsResponse) ProtoReflect

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

func (*GetVersionsResponse) Reset

func (x *GetVersionsResponse) Reset()

func (*GetVersionsResponse) String

func (x *GetVersionsResponse) String() string

type HealthCheck

type HealthCheck struct {
	Name    string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Status  HealthCheckStatus `protobuf:"varint,2,opt,name=status,proto3,enum=chalk.server.v1.HealthCheckStatus" json:"status,omitempty"`
	Message *string           `protobuf:"bytes,3,opt,name=message,proto3,oneof" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*HealthCheck) Descriptor deprecated

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

Deprecated: Use HealthCheck.ProtoReflect.Descriptor instead.

func (*HealthCheck) GetMessage

func (x *HealthCheck) GetMessage() string

func (*HealthCheck) GetName

func (x *HealthCheck) GetName() string

func (*HealthCheck) GetStatus

func (x *HealthCheck) GetStatus() HealthCheckStatus

func (*HealthCheck) ProtoMessage

func (*HealthCheck) ProtoMessage()

func (*HealthCheck) ProtoReflect

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

func (*HealthCheck) Reset

func (x *HealthCheck) Reset()

func (*HealthCheck) String

func (x *HealthCheck) String() string

type HealthCheckStatus

type HealthCheckStatus int32
const (
	HealthCheckStatus_HEALTH_CHECK_STATUS_UNSPECIFIED HealthCheckStatus = 0
	HealthCheckStatus_HEALTH_CHECK_STATUS_OK          HealthCheckStatus = 1
	HealthCheckStatus_HEALTH_CHECK_STATUS_FAILING     HealthCheckStatus = 2
)

func (HealthCheckStatus) Descriptor

func (HealthCheckStatus) Enum

func (HealthCheckStatus) EnumDescriptor deprecated

func (HealthCheckStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use HealthCheckStatus.Descriptor instead.

func (HealthCheckStatus) Number

func (HealthCheckStatus) String

func (x HealthCheckStatus) String() string

func (HealthCheckStatus) Type

type LinkSessionStatus

type LinkSessionStatus int32
const (
	LinkSessionStatus_LINK_SESSION_STATUS_UNSPECIFIED LinkSessionStatus = 0
	LinkSessionStatus_LINK_SESSION_STATUS_PENDING     LinkSessionStatus = 1
	LinkSessionStatus_LINK_SESSION_STATUS_SUCCESS     LinkSessionStatus = 2
	LinkSessionStatus_LINK_SESSION_STATUS_FAILED      LinkSessionStatus = 3
	LinkSessionStatus_LINK_SESSION_STATUS_NOT_FOUND   LinkSessionStatus = 4
	LinkSessionStatus_LINK_SESSION_STATUS_FORBIDDEN   LinkSessionStatus = 5
)

func (LinkSessionStatus) Descriptor

func (LinkSessionStatus) Enum

func (LinkSessionStatus) EnumDescriptor deprecated

func (LinkSessionStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use LinkSessionStatus.Descriptor instead.

func (LinkSessionStatus) Number

func (LinkSessionStatus) String

func (x LinkSessionStatus) String() string

func (LinkSessionStatus) Type

type LinkToken

type LinkToken struct {
	Name              string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ClientId          string                 `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecret      string                 `protobuf:"bytes,3,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	ApiServer         string                 `protobuf:"bytes,4,opt,name=api_server,json=apiServer,proto3" json:"api_server,omitempty"`
	ActiveEnvironment *string                `protobuf:"bytes,5,opt,name=active_environment,json=activeEnvironment,proto3,oneof" json:"active_environment,omitempty"`
	ValidUntil        *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=valid_until,json=validUntil,proto3" json:"valid_until,omitempty"`
	// contains filtered or unexported fields
}

func (*LinkToken) Descriptor deprecated

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

Deprecated: Use LinkToken.ProtoReflect.Descriptor instead.

func (*LinkToken) GetActiveEnvironment

func (x *LinkToken) GetActiveEnvironment() string

func (*LinkToken) GetApiServer

func (x *LinkToken) GetApiServer() string

func (*LinkToken) GetClientId

func (x *LinkToken) GetClientId() string

func (*LinkToken) GetClientSecret

func (x *LinkToken) GetClientSecret() string

func (*LinkToken) GetName

func (x *LinkToken) GetName() string

func (*LinkToken) GetValidUntil

func (x *LinkToken) GetValidUntil() *timestamppb.Timestamp

func (*LinkToken) ProtoMessage

func (*LinkToken) ProtoMessage()

func (*LinkToken) ProtoReflect

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

func (*LinkToken) Reset

func (x *LinkToken) Reset()

func (*LinkToken) String

func (x *LinkToken) String() string

type UpdateGraphRequest

type UpdateGraphRequest struct {
	DeploymentId   string    `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	Graph          *v1.Graph `protobuf:"bytes,2,opt,name=graph,proto3" json:"graph,omitempty"`
	ChalkpyVersion string    `protobuf:"bytes,3,opt,name=chalkpy_version,json=chalkpyVersion,proto3" json:"chalkpy_version,omitempty"`
	Tag            *string   `protobuf:"bytes,4,opt,name=tag,proto3,oneof" json:"tag,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateGraphRequest) Descriptor deprecated

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

Deprecated: Use UpdateGraphRequest.ProtoReflect.Descriptor instead.

func (*UpdateGraphRequest) GetChalkpyVersion

func (x *UpdateGraphRequest) GetChalkpyVersion() string

func (*UpdateGraphRequest) GetDeploymentId

func (x *UpdateGraphRequest) GetDeploymentId() string

func (*UpdateGraphRequest) GetGraph

func (x *UpdateGraphRequest) GetGraph() *v1.Graph

func (*UpdateGraphRequest) GetTag

func (x *UpdateGraphRequest) GetTag() string

func (*UpdateGraphRequest) ProtoMessage

func (*UpdateGraphRequest) ProtoMessage()

func (*UpdateGraphRequest) ProtoReflect

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

func (*UpdateGraphRequest) Reset

func (x *UpdateGraphRequest) Reset()

func (*UpdateGraphRequest) String

func (x *UpdateGraphRequest) String() string

type UpdateGraphResponse

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

func (*UpdateGraphResponse) Descriptor deprecated

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

Deprecated: Use UpdateGraphResponse.ProtoReflect.Descriptor instead.

func (*UpdateGraphResponse) ProtoMessage

func (*UpdateGraphResponse) ProtoMessage()

func (*UpdateGraphResponse) ProtoReflect

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

func (*UpdateGraphResponse) Reset

func (x *UpdateGraphResponse) Reset()

func (*UpdateGraphResponse) String

func (x *UpdateGraphResponse) String() string

type UpdateLinkSessionRequest

type UpdateLinkSessionRequest struct {
	Status    string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	UserId    string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	SessionId string `protobuf:"bytes,3,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateLinkSessionRequest) Descriptor deprecated

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

Deprecated: Use UpdateLinkSessionRequest.ProtoReflect.Descriptor instead.

func (*UpdateLinkSessionRequest) GetSessionId

func (x *UpdateLinkSessionRequest) GetSessionId() string

func (*UpdateLinkSessionRequest) GetStatus

func (x *UpdateLinkSessionRequest) GetStatus() string

func (*UpdateLinkSessionRequest) GetUserId

func (x *UpdateLinkSessionRequest) GetUserId() string

func (*UpdateLinkSessionRequest) ProtoMessage

func (*UpdateLinkSessionRequest) ProtoMessage()

func (*UpdateLinkSessionRequest) ProtoReflect

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

func (*UpdateLinkSessionRequest) Reset

func (x *UpdateLinkSessionRequest) Reset()

func (*UpdateLinkSessionRequest) String

func (x *UpdateLinkSessionRequest) String() string

type UpdateLinkSessionResponse

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

func (*UpdateLinkSessionResponse) Descriptor deprecated

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

Deprecated: Use UpdateLinkSessionResponse.ProtoReflect.Descriptor instead.

func (*UpdateLinkSessionResponse) GetId

func (x *UpdateLinkSessionResponse) GetId() string

func (*UpdateLinkSessionResponse) ProtoMessage

func (*UpdateLinkSessionResponse) ProtoMessage()

func (*UpdateLinkSessionResponse) ProtoReflect

func (*UpdateLinkSessionResponse) Reset

func (x *UpdateLinkSessionResponse) Reset()

func (*UpdateLinkSessionResponse) String

func (x *UpdateLinkSessionResponse) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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