model

package
v0.0.83 Latest Latest
Warning

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

Go to latest
Published: Apr 7, 2022 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause Imports: 4 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AttachEipRequest

type AttachEipRequest struct {
	GraphId string `json:"graph_id"`

	ActionId AttachEipRequestActionId `json:"action_id"`

	Body *BindEipReq `json:"body,omitempty"`
}

Request Object

func (AttachEipRequest) String

func (o AttachEipRequest) String() string

type AttachEipRequestActionId

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

func (AttachEipRequestActionId) MarshalJSON

func (c AttachEipRequestActionId) MarshalJSON() ([]byte, error)

func (*AttachEipRequestActionId) UnmarshalJSON

func (c *AttachEipRequestActionId) UnmarshalJSON(b []byte) error

type AttachEipRequestActionIdEnum

type AttachEipRequestActionIdEnum struct {
	BIND_EIP AttachEipRequestActionId
}

func GetAttachEipRequestActionIdEnum

func GetAttachEipRequestActionIdEnum() AttachEipRequestActionIdEnum

type AttachEipResponse

type AttachEipResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (AttachEipResponse) String

func (o AttachEipResponse) String() string

type Backup

type Backup struct {
	Id string `json:"id"`

	Name string `json:"name"`

	BackupMethod string `json:"backupMethod"`

	GraphId string `json:"graphId"`

	GraphName string `json:"graphName"`

	GraphStatus string `json:"graphStatus"`

	GraphSizeTypeIndex string `json:"graphSizeTypeIndex"`

	DataStoreVersion string `json:"dataStoreVersion"`

	Arch string `json:"arch"`

	Status string `json:"status"`

	StartTimestamp int64 `json:"startTimestamp"`

	StartTime string `json:"startTime"`

	EndTimestamp int64 `json:"endTimestamp"`

	EndTime string `json:"endTime"`

	Size int64 `json:"size"`

	Duration int64 `json:"duration"`

	Encrypted *bool `json:"encrypted,omitempty"`
}

图备份

func (Backup) String

func (o Backup) String() string

type BindEipReq

type BindEipReq struct {
	EipId string `json:"eipId"`
}

This is a auto create Body Object

func (BindEipReq) String

func (o BindEipReq) String() string

type ClearGraphRequest

type ClearGraphRequest struct {
	GraphId string `json:"graph_id"`

	ActionId ClearGraphRequestActionId `json:"action_id"`

	ClearMetadata *bool `json:"clear-metadata,omitempty"`
}

Request Object

func (ClearGraphRequest) String

func (o ClearGraphRequest) String() string

type ClearGraphRequestActionId

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

func (ClearGraphRequestActionId) MarshalJSON

func (c ClearGraphRequestActionId) MarshalJSON() ([]byte, error)

func (*ClearGraphRequestActionId) UnmarshalJSON

func (c *ClearGraphRequestActionId) UnmarshalJSON(b []byte) error

type ClearGraphRequestActionIdEnum

type ClearGraphRequestActionIdEnum struct {
	CLEAR_GRAPH ClearGraphRequestActionId
}

func GetClearGraphRequestActionIdEnum

func GetClearGraphRequestActionIdEnum() ClearGraphRequestActionIdEnum

type ClearGraphResponse

type ClearGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ClearGraphResponse) String

func (o ClearGraphResponse) String() string

type CreateBackupRequest

type CreateBackupRequest struct {
	GraphId string `json:"graph_id"`
}

Request Object

func (CreateBackupRequest) String

func (o CreateBackupRequest) String() string

type CreateBackupResponse

type CreateBackupResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateBackupResponse) String

func (o CreateBackupResponse) String() string

type CreateGraphReq

type CreateGraphReq struct {
	Graph *Graph `json:"graph"`
}

This is a auto create Body Object

func (CreateGraphReq) String

func (o CreateGraphReq) String() string

type CreateGraphRequest

type CreateGraphRequest struct {
	Body *CreateGraphReq `json:"body,omitempty"`
}

Request Object

func (CreateGraphRequest) String

func (o CreateGraphRequest) String() string

type CreateGraphResponse

type CreateGraphResponse struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateGraphResponse) String

func (o CreateGraphResponse) String() string

type CreateMetadataReq

type CreateMetadataReq struct {
	MetadataPath string `json:"metadataPath"`

	Name string `json:"name"`

	Description string `json:"description"`

	IsOverwrite bool `json:"isOverwrite"`

	GesMetadata *interface{} `json:"gesMetadata"`
}

This is a auto create Body Object

func (CreateMetadataReq) String

func (o CreateMetadataReq) String() string

type CreateMetadataRequest

type CreateMetadataRequest struct {
	Body *CreateMetadataReq `json:"body,omitempty"`
}

Request Object

func (CreateMetadataRequest) String

func (o CreateMetadataRequest) String() string

type CreateMetadataResponse

type CreateMetadataResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	Id *string `json:"id,omitempty"`

	Name           *string `json:"name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateMetadataResponse) String

func (o CreateMetadataResponse) String() string

type DataSource

type DataSource struct {
	Type string `json:"type"`

	Parameters *Parameters `json:"parameters"`
}

func (DataSource) String

func (o DataSource) String() string

type DeleteBackupRequest

type DeleteBackupRequest struct {
	BackupId string `json:"backup_id"`

	GraphId string `json:"graph_id"`
}

Request Object

func (DeleteBackupRequest) String

func (o DeleteBackupRequest) String() string

type DeleteBackupResponse

type DeleteBackupResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (DeleteBackupResponse) String

func (o DeleteBackupResponse) String() string

type DeleteGraphRequest

type DeleteGraphRequest struct {
	GraphId string `json:"graph_id"`

	KeepBackup *bool `json:"keepBackup,omitempty"`
}

Request Object

func (DeleteGraphRequest) String

func (o DeleteGraphRequest) String() string

type DeleteGraphResponse

type DeleteGraphResponse struct {
	JobId *string `json:"jobId,omitempty"`

	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (DeleteGraphResponse) String

func (o DeleteGraphResponse) String() string

type DeleteMetadataRequest

type DeleteMetadataRequest struct {
	MetadataId string `json:"metadata_id"`
}

Request Object

func (DeleteMetadataRequest) String

func (o DeleteMetadataRequest) String() string

type DeleteMetadataResponse

type DeleteMetadataResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (DeleteMetadataResponse) String

func (o DeleteMetadataResponse) String() string

type DetachEipRequest

type DetachEipRequest struct {
	GraphId string `json:"graph_id"`

	ActionId DetachEipRequestActionId `json:"action_id"`

	Body *UnbindEipReq `json:"body,omitempty"`
}

Request Object

func (DetachEipRequest) String

func (o DetachEipRequest) String() string

type DetachEipRequestActionId

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

func (DetachEipRequestActionId) MarshalJSON

func (c DetachEipRequestActionId) MarshalJSON() ([]byte, error)

func (*DetachEipRequestActionId) UnmarshalJSON

func (c *DetachEipRequestActionId) UnmarshalJSON(b []byte) error

type DetachEipRequestActionIdEnum

type DetachEipRequestActionIdEnum struct {
	UNBIND_EIP DetachEipRequestActionId
}

func GetDetachEipRequestActionIdEnum

func GetDetachEipRequestActionIdEnum() DetachEipRequestActionIdEnum

type DetachEipResponse

type DetachEipResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (DetachEipResponse) String

func (o DetachEipResponse) String() string

type EdgesetPath

type EdgesetPath struct {
	Path string `json:"path"`

	Log *string `json:"log,omitempty"`

	Status string `json:"status"`

	Cause *string `json:"cause,omitempty"`

	TotalLines *int64 `json:"totalLines,omitempty"`

	FailedLines *int64 `json:"failedLines,omitempty"`

	SuccessfulLines *int64 `json:"successfulLines,omitempty"`
}

边数据

func (EdgesetPath) String

func (o EdgesetPath) String() string

type EdgesetPath1

type EdgesetPath1 struct {
	JobId string `json:"jobId"`

	Path string `json:"path"`

	Status string `json:"status"`
}

func (EdgesetPath1) String

func (o EdgesetPath1) String() string

type EncryptionReq

type EncryptionReq struct {
	Enable *bool `json:"enable,omitempty"`

	MasterKeyId *string `json:"masterKeyId,omitempty"`
}

func (EncryptionReq) String

func (o EncryptionReq) String() string

type ExpandGraphReq added in v0.0.69

type ExpandGraphReq struct {
	Expand *ReplicationReq `json:"expand"`
}

func (ExpandGraphReq) String added in v0.0.69

func (o ExpandGraphReq) String() string

type ExpandGraphRequest added in v0.0.69

type ExpandGraphRequest struct {
	GraphId string `json:"graph_id"`

	Body *ExpandGraphReq `json:"body,omitempty"`
}

Request Object

func (ExpandGraphRequest) String added in v0.0.69

func (o ExpandGraphRequest) String() string

type ExpandGraphResponse added in v0.0.69

type ExpandGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ExpandGraphResponse) String added in v0.0.69

func (o ExpandGraphResponse) String() string

type ExportGraphReq

type ExportGraphReq struct {
	GraphExportPath string `json:"graphExportPath"`

	EdgeSetName string `json:"edgeSetName"`

	VertexSetName string `json:"vertexSetName"`

	SchemaName string `json:"schemaName"`
}

This is a auto create Body Object

func (ExportGraphReq) String

func (o ExportGraphReq) String() string

type ExportGraphRequest

type ExportGraphRequest struct {
	GraphId string `json:"graph_id"`

	ActionId ExportGraphRequestActionId `json:"action_id"`

	Body *ExportGraphReq `json:"body,omitempty"`
}

Request Object

func (ExportGraphRequest) String

func (o ExportGraphRequest) String() string

type ExportGraphRequestActionId

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

func (ExportGraphRequestActionId) MarshalJSON

func (c ExportGraphRequestActionId) MarshalJSON() ([]byte, error)

func (*ExportGraphRequestActionId) UnmarshalJSON

func (c *ExportGraphRequestActionId) UnmarshalJSON(b []byte) error

type ExportGraphRequestActionIdEnum

type ExportGraphRequestActionIdEnum struct {
	EXPORT_GRAPH ExportGraphRequestActionId
}

func GetExportGraphRequestActionIdEnum

func GetExportGraphRequestActionIdEnum() ExportGraphRequestActionIdEnum

type ExportGraphResponse

type ExportGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ExportGraphResponse) String

func (o ExportGraphResponse) String() string

type GesMetaData

type GesMetaData struct {
	Labels []Label `json:"labels"`
}

GES 元数据

func (GesMetaData) String

func (o GesMetaData) String() string

type GesQuotaResp

type GesQuotaResp struct {
	Resources *[]Quota `json:"resources,omitempty"`
}

func (GesQuotaResp) String

func (o GesQuotaResp) String() string

type Graph

type Graph struct {
	Name string `json:"name"`

	GraphSizeTypeIndex string `json:"graphSizeTypeIndex"`

	Arch *string `json:"arch,omitempty"`

	DataSource *DataSource `json:"dataSource,omitempty"`

	VpcId string `json:"vpcId"`

	SubnetId string `json:"subnetId"`

	SecurityGroupId string `json:"securityGroupId"`

	PublicIp *PublicIp `json:"publicIp,omitempty"`

	EnableMultiAz *bool `json:"enableMultiAz,omitempty"`

	Encryption *EncryptionReq `json:"encryption,omitempty"`

	LtsOperationTrace *LtsOperationTraceReq `json:"ltsOperationTrace,omitempty"`

	SysTags *[]SysTagsRes `json:"sys_tags,omitempty"`

	EnableRBAC *bool `json:"enableRBAC,omitempty"`

	EnableFullTextIndex *bool `json:"enableFullTextIndex,omitempty"`
}

func (Graph) String

func (o Graph) String() string

type Graph1

type Graph1 struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	CreatedBy *string `json:"createdBy,omitempty"`

	IsMultiAz *string `json:"isMultiAz,omitempty"`

	RegionCode *string `json:"regionCode,omitempty"`

	AzCode *string `json:"azCode,omitempty"`

	SchemaPath *[]SchemaPath1 `json:"schemaPath,omitempty"`

	EdgesetPath *[]EdgesetPath1 `json:"edgesetPath,omitempty"`

	EdgesetFormat *string `json:"edgesetFormat,omitempty"`

	EdgesetDefaultLabel *string `json:"edgesetDefaultLabel,omitempty"`

	VertexsetPath *[]VertexsetPath1 `json:"vertexsetPath,omitempty"`

	VertexsetFormat *string `json:"vertexsetFormat,omitempty"`

	VertexsetDefaultLabel *string `json:"vertexsetDefaultLabel,omitempty"`

	DataStoreVersion *string `json:"dataStoreVersion,omitempty"`

	SysTags *[]SysTagsRes `json:"sys_tags,omitempty"`

	Status *string `json:"status,omitempty"`

	ActionProgress *string `json:"actionProgress,omitempty"`

	GraphSizeTypeIndex *string `json:"graphSizeTypeIndex,omitempty"`

	VpcId *string `json:"vpcId,omitempty"`

	SubnetId *string `json:"subnetId,omitempty"`

	SecurityGroupId *string `json:"securityGroupId,omitempty"`

	Replication *int32 `json:"replication,omitempty"`

	Created *string `json:"created,omitempty"`

	Updated *string `json:"updated,omitempty"`

	PrivateIp *string `json:"privateIp,omitempty"`

	PublicIp *string `json:"publicIp,omitempty"`

	Arch *string `json:"arch,omitempty"`

	Encrypted *bool `json:"encrypted,omitempty"`

	MasterKeyId *string `json:"masterKeyId,omitempty"`

	MasterKeyName *string `json:"masterKeyName,omitempty"`

	EnableRBAC *bool `json:"enableRBAC,omitempty"`

	EnableFulltextIndex *bool `json:"enableFulltextIndex,omitempty"`
}

func (Graph1) String

func (o Graph1) String() string

type GraphSizeTypeIndexReq added in v0.0.69

type GraphSizeTypeIndexReq struct {
	GraphSizeTypeIndex string `json:"graphSizeTypeIndex"`
}

func (GraphSizeTypeIndexReq) String added in v0.0.69

func (o GraphSizeTypeIndexReq) String() string

type ImportGraphReq

type ImportGraphReq struct {
	EdgesetPath *string `json:"edgesetPath,omitempty"`

	EdgesetFormat *string `json:"edgesetFormat,omitempty"`

	VertexsetPath *string `json:"vertexsetPath,omitempty"`

	VertexsetFormat *string `json:"vertexsetFormat,omitempty"`

	SchemaPath *string `json:"schemaPath,omitempty"`

	LogDir *string `json:"logDir,omitempty"`

	ParallelEdge *interface{} `json:"parallelEdge,omitempty"`

	Action *string `json:"action,omitempty"`

	IgnoreLabel *bool `json:"ignoreLabel,omitempty"`

	Delimiter *string `json:"delimiter,omitempty"`

	TrimQuote *string `json:"trimQuote,omitempty"`

	Offline *bool `json:"offline,omitempty"`
}

This is a auto create Body Object

func (ImportGraphReq) String

func (o ImportGraphReq) String() string

type ImportGraphRequest

type ImportGraphRequest struct {
	GraphId string `json:"graph_id"`

	ActionId ImportGraphRequestActionId `json:"action_id"`

	Body *ImportGraphReq `json:"body,omitempty"`
}

Request Object

func (ImportGraphRequest) String

func (o ImportGraphRequest) String() string

type ImportGraphRequestActionId

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

func (ImportGraphRequestActionId) MarshalJSON

func (c ImportGraphRequestActionId) MarshalJSON() ([]byte, error)

func (*ImportGraphRequestActionId) UnmarshalJSON

func (c *ImportGraphRequestActionId) UnmarshalJSON(b []byte) error

type ImportGraphRequestActionIdEnum

type ImportGraphRequestActionIdEnum struct {
	IMPORT_GRAPH ImportGraphRequestActionId
}

func GetImportGraphRequestActionIdEnum

func GetImportGraphRequestActionIdEnum() ImportGraphRequestActionIdEnum

type ImportGraphResponse

type ImportGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ImportGraphResponse) String

func (o ImportGraphResponse) String() string

type Job

type Job struct {
	JobId string `json:"jobId"`

	Status string `json:"status"`

	JobType string `json:"jobType"`

	JobName string `json:"jobName"`

	RelatedGraph string `json:"relatedGraph"`

	BeginTime *string `json:"beginTime,omitempty"`

	EndTime *string `json:"endTime,omitempty"`

	JobDetail *JobDetail `json:"jobDetail,omitempty"`

	FailReason *string `json:"failReason,omitempty"`

	JobProgress *float64 `json:"jobProgress,omitempty"`
}

任务

func (Job) String

func (o Job) String() string

type JobDetail

type JobDetail struct {
	SchemaPath *[]SchemaPath `json:"schemaPath,omitempty"`

	EdgesetPath *[]EdgesetPath `json:"edgesetPath,omitempty"`

	VertexsetPath *[]VertexsetPath `json:"vertexsetPath,omitempty"`
}

任务详情

func (JobDetail) String

func (o JobDetail) String() string

type Label

type Label struct {
	Name *string `json:"name,omitempty"`

	Properties *interface{} `json:"properties,omitempty"`
}

GES 元数据中lable类型

func (Label) String

func (o Label) String() string

type ListBackupsRequest

type ListBackupsRequest struct {
	Limit *int32 `json:"limit,omitempty"`

	Offset *int32 `json:"offset,omitempty"`
}

Request Object

func (ListBackupsRequest) String

func (o ListBackupsRequest) String() string

type ListBackupsResponse

type ListBackupsResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	BackupCount *int32 `json:"backupCount,omitempty"`

	BackupList     *[]Backup `json:"backupList,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (ListBackupsResponse) String

func (o ListBackupsResponse) String() string

type ListGraphBackupsRequest

type ListGraphBackupsRequest struct {
	GraphId string `json:"graph_id"`

	Limit *int32 `json:"limit,omitempty"`

	Offset *int32 `json:"offset,omitempty"`
}

Request Object

func (ListGraphBackupsRequest) String

func (o ListGraphBackupsRequest) String() string

type ListGraphBackupsResponse

type ListGraphBackupsResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	BackupCount *int32 `json:"backupCount,omitempty"`

	BackupList     *[]Backup `json:"backupList,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (ListGraphBackupsResponse) String

func (o ListGraphBackupsResponse) String() string

type ListGraphMetadatasRequest

type ListGraphMetadatasRequest struct {
	MetadataId string `json:"metadata_id"`
}

Request Object

func (ListGraphMetadatasRequest) String

func (o ListGraphMetadatasRequest) String() string

type ListGraphMetadatasResponse

type ListGraphMetadatasResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	GesMetadata    *GesMetaData `json:"gesMetadata,omitempty"`
	HttpStatusCode int          `json:"-"`
}

Response Object

func (ListGraphMetadatasResponse) String

type ListGraphsRequest

type ListGraphsRequest struct {
	Offset *int32 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`
}

Request Object

func (ListGraphsRequest) String

func (o ListGraphsRequest) String() string

type ListGraphsResponse

type ListGraphsResponse struct {
	GraphCount *int32 `json:"graphCount,omitempty"`

	Graphs *[]Graph1 `json:"graphs,omitempty"`

	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ListGraphsResponse) String

func (o ListGraphsResponse) String() string

type ListJobsRequest

type ListJobsRequest struct {
	EndTime *string `json:"endTime,omitempty"`

	GraphName *string `json:"graph_name,omitempty"`

	Limit *string `json:"limit,omitempty"`

	Offset *string `json:"offset,omitempty"`

	StartTime *string `json:"startTime,omitempty"`

	Status *string `json:"status,omitempty"`
}

Request Object

func (ListJobsRequest) String

func (o ListJobsRequest) String() string

type ListJobsResponse

type ListJobsResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobCount *int32 `json:"jobCount,omitempty"`

	JobList        *[]Job `json:"jobList,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ListJobsResponse) String

func (o ListJobsResponse) String() string

type ListMetadatasRequest

type ListMetadatasRequest struct {
	Limit *int32 `json:"limit,omitempty"`

	Offset *int32 `json:"offset,omitempty"`
}

Request Object

func (ListMetadatasRequest) String

func (o ListMetadatasRequest) String() string

type ListMetadatasResponse

type ListMetadatasResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	SchemaCount *int32 `json:"schemaCount,omitempty"`

	SchemaList     *[]Metadata `json:"schemaList,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (ListMetadatasResponse) String

func (o ListMetadatasResponse) String() string

type ListQuotasRequest

type ListQuotasRequest struct {
}

Request Object

func (ListQuotasRequest) String

func (o ListQuotasRequest) String() string

type ListQuotasResponse

type ListQuotasResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	Quotas         *GesQuotaResp `json:"quotas,omitempty"`
	HttpStatusCode int           `json:"-"`
}

Response Object

func (ListQuotasResponse) String

func (o ListQuotasResponse) String() string

type LtsOperationTraceReq

type LtsOperationTraceReq struct {
	EnableAudit *bool `json:"enableAudit,omitempty"`

	AuditLogGroupName *string `json:"auditLogGroupName,omitempty"`
}

func (LtsOperationTraceReq) String

func (o LtsOperationTraceReq) String() string

type Metadata

type Metadata struct {
	Id string `json:"id"`

	Name string `json:"name"`

	Description string `json:"description"`

	Status string `json:"status"`

	MetadataPath string `json:"metadataPath"`

	CreateTimestamp *string `json:"createTimestamp,omitempty"`

	LastUpdateTimestamp *string `json:"lastUpdateTimestamp,omitempty"`
}

元数据

func (Metadata) String

func (o Metadata) String() string

type ParallelEdge

type ParallelEdge struct {
	Action *string `json:"action,omitempty"`

	IgnoreLabel *bool `json:"ignoreLabel,omitempty"`
}

func (ParallelEdge) String

func (o ParallelEdge) String() string

type Parameters

type Parameters struct {
	SchemaPath string `json:"schemaPath"`

	EdgesetPath string `json:"edgesetPath"`

	EdgesetFormat *string `json:"edgesetFormat,omitempty"`

	EdgesetDefaultLabel *string `json:"edgesetDefaultLabel,omitempty"`

	VertexsetPath *string `json:"vertexsetPath,omitempty"`

	VertexsetFormat *string `json:"vertexsetFormat,omitempty"`

	VertexsetDefaultLabel *string `json:"vertexsetDefaultLabel,omitempty"`

	LogDir *string `json:"logDir,omitempty"`

	ParallelEdge *ParallelEdge `json:"parallelEdge,omitempty"`
}

func (Parameters) String

func (o Parameters) String() string

type PublicIp

type PublicIp struct {
	PublicBindType *string `json:"publicBindType,omitempty"`

	EipId *string `json:"eipId,omitempty"`
}

func (PublicIp) String

func (o PublicIp) String() string

type Quota

type Quota struct {
	Type string `json:"type"`

	Available int32 `json:"available"`

	EdgeVolume *int32 `json:"edgeVolume,omitempty"`
}

Indicates the resource type

func (Quota) String

func (o Quota) String() string

type ReplicationReq added in v0.0.69

type ReplicationReq struct {
	Replication string `json:"replication"`
}

func (ReplicationReq) String added in v0.0.69

func (o ReplicationReq) String() string

type ResizeGraphReq added in v0.0.69

type ResizeGraphReq struct {
	Resize *GraphSizeTypeIndexReq `json:"resize"`
}

func (ResizeGraphReq) String added in v0.0.69

func (o ResizeGraphReq) String() string

type ResizeGraphRequest added in v0.0.69

type ResizeGraphRequest struct {
	GraphId string `json:"graph_id"`

	Body *ResizeGraphReq `json:"body,omitempty"`
}

Request Object

func (ResizeGraphRequest) String added in v0.0.69

func (o ResizeGraphRequest) String() string

type ResizeGraphResponse added in v0.0.69

type ResizeGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ResizeGraphResponse) String added in v0.0.69

func (o ResizeGraphResponse) String() string

type RestartGraphRequest

type RestartGraphRequest struct {
	GraphId string `json:"graph_id"`

	ActionId RestartGraphRequestActionId `json:"action_id"`
}

Request Object

func (RestartGraphRequest) String

func (o RestartGraphRequest) String() string

type RestartGraphRequestActionId

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

func (RestartGraphRequestActionId) MarshalJSON

func (c RestartGraphRequestActionId) MarshalJSON() ([]byte, error)

func (*RestartGraphRequestActionId) UnmarshalJSON

func (c *RestartGraphRequestActionId) UnmarshalJSON(b []byte) error

type RestartGraphRequestActionIdEnum

type RestartGraphRequestActionIdEnum struct {
	RESTART RestartGraphRequestActionId
}

func GetRestartGraphRequestActionIdEnum

func GetRestartGraphRequestActionIdEnum() RestartGraphRequestActionIdEnum

type RestartGraphResponse

type RestartGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (RestartGraphResponse) String

func (o RestartGraphResponse) String() string

type SchemaPath

type SchemaPath struct {
	Path string `json:"path"`

	Log *string `json:"log,omitempty"`

	Status string `json:"status"`

	Cause *string `json:"cause,omitempty"`
}

点数据

func (SchemaPath) String

func (o SchemaPath) String() string

type SchemaPath1

type SchemaPath1 struct {
	JobId string `json:"jobId"`

	Path string `json:"path"`

	Status string `json:"status"`
}

func (SchemaPath1) String

func (o SchemaPath1) String() string

type ShowGraphRequest

type ShowGraphRequest struct {
	GraphId string `json:"graph_id"`
}

Request Object

func (ShowGraphRequest) String

func (o ShowGraphRequest) String() string

type ShowGraphResponse

type ShowGraphResponse struct {
	Graph *Graph1 `json:"graph,omitempty"`

	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode      *string `json:"errorCode,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowGraphResponse) String

func (o ShowGraphResponse) String() string

type ShowJobRequest

type ShowJobRequest struct {
	GraphId string `json:"graph_id"`

	JobId string `json:"job_id"`
}

Request Object

func (ShowJobRequest) String

func (o ShowJobRequest) String() string

type ShowJobResponse

type ShowJobResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId *string `json:"jobId,omitempty"`

	Status *string `json:"status,omitempty"`

	JobType *string `json:"jobType,omitempty"`

	JobName *string `json:"jobName,omitempty"`

	RelatedGraph *string `json:"relatedGraph,omitempty"`

	BeginTime *string `json:"beginTime,omitempty"`

	EndTime *string `json:"endTime,omitempty"`

	JobDetail *JobDetail `json:"jobDetail,omitempty"`

	FailReason *string `json:"failReason,omitempty"`

	JobProgress    *float64 `json:"jobProgress,omitempty"`
	HttpStatusCode int      `json:"-"`
}

Response Object

func (ShowJobResponse) String

func (o ShowJobResponse) String() string

type StartGraphReq

type StartGraphReq struct {
	GraphBackupId *string `json:"graph_backup_id,omitempty"`
}

This is a auto create Body Object

func (StartGraphReq) String

func (o StartGraphReq) String() string

type StartGraphRequest

type StartGraphRequest struct {
	GraphId string `json:"graph_id"`

	ActionId StartGraphRequestActionId `json:"action_id"`

	Body *StartGraphReq `json:"body,omitempty"`
}

Request Object

func (StartGraphRequest) String

func (o StartGraphRequest) String() string

type StartGraphRequestActionId

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

func (StartGraphRequestActionId) MarshalJSON

func (c StartGraphRequestActionId) MarshalJSON() ([]byte, error)

func (*StartGraphRequestActionId) UnmarshalJSON

func (c *StartGraphRequestActionId) UnmarshalJSON(b []byte) error

type StartGraphRequestActionIdEnum

type StartGraphRequestActionIdEnum struct {
	START StartGraphRequestActionId
}

func GetStartGraphRequestActionIdEnum

func GetStartGraphRequestActionIdEnum() StartGraphRequestActionIdEnum

type StartGraphResponse

type StartGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (StartGraphResponse) String

func (o StartGraphResponse) String() string

type StopGraphRequest

type StopGraphRequest struct {
	GraphId string `json:"graph_id"`

	ActionId StopGraphRequestActionId `json:"action_id"`
}

Request Object

func (StopGraphRequest) String

func (o StopGraphRequest) String() string

type StopGraphRequestActionId

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

func (StopGraphRequestActionId) MarshalJSON

func (c StopGraphRequestActionId) MarshalJSON() ([]byte, error)

func (*StopGraphRequestActionId) UnmarshalJSON

func (c *StopGraphRequestActionId) UnmarshalJSON(b []byte) error

type StopGraphRequestActionIdEnum

type StopGraphRequestActionIdEnum struct {
	STOP StopGraphRequestActionId
}

func GetStopGraphRequestActionIdEnum

func GetStopGraphRequestActionIdEnum() StopGraphRequestActionIdEnum

type StopGraphResponse

type StopGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (StopGraphResponse) String

func (o StopGraphResponse) String() string

type SysTagsRes

type SysTagsRes struct {
	Key *string `json:"key,omitempty"`

	Value *string `json:"value,omitempty"`
}

func (SysTagsRes) String

func (o SysTagsRes) String() string

type UnbindEipReq

type UnbindEipReq struct {
	EipId string `json:"eipId"`
}

This is a auto create Body Object

func (UnbindEipReq) String

func (o UnbindEipReq) String() string

type UpgradeGraphReq

type UpgradeGraphReq struct {
	UpgradeVersion string `json:"upgradeVersion"`

	ForceUpgrade *bool `json:"forceUpgrade,omitempty"`
}

This is a auto create Body Object

func (UpgradeGraphReq) String

func (o UpgradeGraphReq) String() string

type UpgradeGraphRequest

type UpgradeGraphRequest struct {
	GraphId string `json:"graph_id"`

	ActionId UpgradeGraphRequestActionId `json:"action_id"`

	Body *UpgradeGraphReq `json:"body,omitempty"`
}

Request Object

func (UpgradeGraphRequest) String

func (o UpgradeGraphRequest) String() string

type UpgradeGraphRequestActionId

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

func (UpgradeGraphRequestActionId) MarshalJSON

func (c UpgradeGraphRequestActionId) MarshalJSON() ([]byte, error)

func (*UpgradeGraphRequestActionId) UnmarshalJSON

func (c *UpgradeGraphRequestActionId) UnmarshalJSON(b []byte) error

type UpgradeGraphRequestActionIdEnum

type UpgradeGraphRequestActionIdEnum struct {
	UPGRADE UpgradeGraphRequestActionId
}

func GetUpgradeGraphRequestActionIdEnum

func GetUpgradeGraphRequestActionIdEnum() UpgradeGraphRequestActionIdEnum

type UpgradeGraphResponse

type UpgradeGraphResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	JobId          *string `json:"jobId,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpgradeGraphResponse) String

func (o UpgradeGraphResponse) String() string

type UploadFromObsReq added in v0.0.69

type UploadFromObsReq struct {
	MetadataPath string `json:"metadataPath"`

	Name string `json:"name"`

	Description *string `json:"description,omitempty"`

	Encryption *EncryptionReq `json:"encryption,omitempty"`
}

func (UploadFromObsReq) String added in v0.0.69

func (o UploadFromObsReq) String() string

type UploadFromObsRequest added in v0.0.69

type UploadFromObsRequest struct {
	Body *UploadFromObsReq `json:"body,omitempty"`
}

Request Object

func (UploadFromObsRequest) String added in v0.0.69

func (o UploadFromObsRequest) String() string

type UploadFromObsResponse added in v0.0.69

type UploadFromObsResponse struct {
	ErrorMessage *string `json:"errorMessage,omitempty"`

	ErrorCode *string `json:"errorCode,omitempty"`

	Id *string `json:"id,omitempty"`

	Name           *string `json:"name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UploadFromObsResponse) String added in v0.0.69

func (o UploadFromObsResponse) String() string

type VertexsetPath

type VertexsetPath struct {
	Path string `json:"path"`

	Log *string `json:"log,omitempty"`

	Status string `json:"status"`

	Cause *string `json:"cause,omitempty"`

	TotalLines *int64 `json:"totalLines,omitempty"`

	FailedLines *int64 `json:"failedLines,omitempty"`

	SuccessfulLines *int64 `json:"successfulLines,omitempty"`
}

点数据

func (VertexsetPath) String

func (o VertexsetPath) String() string

type VertexsetPath1

type VertexsetPath1 struct {
	JobId string `json:"jobId"`

	Path string `json:"path"`

	Status string `json:"status"`
}

func (VertexsetPath1) String

func (o VertexsetPath1) String() string

Source Files

Jump to

Keyboard shortcuts

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