devops_rdc

package
v1.61.1038 Latest Latest
Warning

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

Go to latest
Published: Apr 20, 2021 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Activity added in v1.61.723

type Activity struct {
	Created string                 `json:"Created" xml:"Created"`
	Title   string                 `json:"Title" xml:"Title"`
	Action  string                 `json:"Action" xml:"Action"`
	Updated string                 `json:"Updated" xml:"Updated"`
	Content map[string]interface{} `json:"Content" xml:"Content"`
}

Activity is a nested struct in devops_rdc response

type AncestorIdsInGetTaskDetailBase added in v1.61.723

type AncestorIdsInGetTaskDetailBase struct {
	AncestorId []string `json:"AncestorId" xml:"AncestorId"`
}

AncestorIdsInGetTaskDetailBase is a nested struct in devops_rdc response

type AncestorIdsInGetTaskListFilter added in v1.61.723

type AncestorIdsInGetTaskListFilter struct {
	AncestorId []string `json:"AncestorId" xml:"AncestorId"`
}

AncestorIdsInGetTaskListFilter is a nested struct in devops_rdc response

type Ancestors added in v1.61.723

type Ancestors struct {
	Ancestor []string `json:"Ancestor" xml:"Ancestor"`
}

Ancestors is a nested struct in devops_rdc response

type Badges added in v1.61.723

type Badges struct {
	AttachmentsCount int `json:"AttachmentsCount" xml:"AttachmentsCount"`
	LikesCount       int `json:"LikesCount" xml:"LikesCount"`
	CommentsCount    int `json:"CommentsCount" xml:"CommentsCount"`
	ObjectlinksCount int `json:"ObjectlinksCount" xml:"ObjectlinksCount"`
}

Badges is a nested struct in devops_rdc response

type BatchInsertMembersRequest added in v1.61.435

type BatchInsertMembersRequest struct {
	*requests.RpcRequest
	Members string `position:"Body" name:"Members"`
	RealPk  string `position:"Body" name:"RealPk"`
	OrgId   string `position:"Body" name:"OrgId"`
}

BatchInsertMembersRequest is the request struct for api BatchInsertMembers

func CreateBatchInsertMembersRequest added in v1.61.435

func CreateBatchInsertMembersRequest() (request *BatchInsertMembersRequest)

CreateBatchInsertMembersRequest creates a request to invoke BatchInsertMembers API

type BatchInsertMembersResponse added in v1.61.435

type BatchInsertMembersResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       bool   `json:"Object" xml:"Object"`
}

BatchInsertMembersResponse is the response struct for api BatchInsertMembers

func CreateBatchInsertMembersResponse added in v1.61.435

func CreateBatchInsertMembersResponse() (response *BatchInsertMembersResponse)

CreateBatchInsertMembersResponse creates a response to parse from BatchInsertMembers response

type BuildProcessNode added in v1.61.398

type BuildProcessNode struct {
	NodeName  string `json:"NodeName" xml:"NodeName"`
	NodeIndex int    `json:"NodeIndex" xml:"NodeIndex"`
	Status    string `json:"Status" xml:"Status"`
}

BuildProcessNode is a nested struct in devops_rdc response

type BuildProcessNodes added in v1.61.398

type BuildProcessNodes struct {
	BuildProcessNode []BuildProcessNode `json:"buildProcessNode" xml:"buildProcessNode"`
}

BuildProcessNodes is a nested struct in devops_rdc response

type CancelPipelineRequest

type CancelPipelineRequest struct {
	*requests.RpcRequest
	FlowInstanceId requests.Integer `position:"Body" name:"FlowInstanceId"`
	UserPk         string           `position:"Body" name:"UserPk"`
	OrgId          string           `position:"Body" name:"OrgId"`
	PipelineId     requests.Integer `position:"Body" name:"PipelineId"`
}

CancelPipelineRequest is the request struct for api CancelPipeline

func CreateCancelPipelineRequest

func CreateCancelPipelineRequest() (request *CancelPipelineRequest)

CreateCancelPipelineRequest creates a request to invoke CancelPipeline API

type CancelPipelineResponse

type CancelPipelineResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Object       bool   `json:"Object" xml:"Object"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
}

CancelPipelineResponse is the response struct for api CancelPipeline

func CreateCancelPipelineResponse

func CreateCancelPipelineResponse() (response *CancelPipelineResponse)

CreateCancelPipelineResponse creates a response to parse from CancelPipeline response

type CheckAliyunAccountExistsRequest added in v1.61.435

type CheckAliyunAccountExistsRequest struct {
	*requests.RpcRequest
	UserPk string `position:"Body" name:"UserPk"`
}

CheckAliyunAccountExistsRequest is the request struct for api CheckAliyunAccountExists

func CreateCheckAliyunAccountExistsRequest added in v1.61.435

func CreateCheckAliyunAccountExistsRequest() (request *CheckAliyunAccountExistsRequest)

CreateCheckAliyunAccountExistsRequest creates a request to invoke CheckAliyunAccountExists API

type CheckAliyunAccountExistsResponse added in v1.61.435

type CheckAliyunAccountExistsResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     bool   `json:"Object" xml:"Object"`
}

CheckAliyunAccountExistsResponse is the response struct for api CheckAliyunAccountExists

func CreateCheckAliyunAccountExistsResponse added in v1.61.435

func CreateCheckAliyunAccountExistsResponse() (response *CheckAliyunAccountExistsResponse)

CreateCheckAliyunAccountExistsResponse creates a response to parse from CheckAliyunAccountExists response

type Client

type Client struct {
	sdk.Client
}

Client is the sdk client struct, each func corresponds to an OpenAPI

func NewClient

func NewClient() (client *Client, err error)

NewClient creates a sdk client with environment variables

func NewClientWithAccessKey

func NewClientWithAccessKey(regionId, accessKeyId, accessKeySecret string) (client *Client, err error)

NewClientWithAccessKey is a shortcut to create sdk client with accesskey usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithEcsRamRole

func NewClientWithEcsRamRole(regionId string, roleName string) (client *Client, err error)

NewClientWithEcsRamRole is a shortcut to create sdk client with ecs ram role usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithOptions

func NewClientWithOptions(regionId string, config *sdk.Config, credential auth.Credential) (client *Client, err error)

NewClientWithOptions creates a sdk client with regionId/sdkConfig/credential this is the common api to create a sdk client

func NewClientWithProvider

func NewClientWithProvider(regionId string, providers ...provider.Provider) (client *Client, err error)

NewClientWithProvider creates a sdk client with providers usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithRamRoleArn

func NewClientWithRamRoleArn(regionId string, accessKeyId, accessKeySecret, roleArn, roleSessionName string) (client *Client, err error)

NewClientWithRamRoleArn is a shortcut to create sdk client with ram roleArn usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithRamRoleArnAndPolicy

func NewClientWithRamRoleArnAndPolicy(regionId string, accessKeyId, accessKeySecret, roleArn, roleSessionName, policy string) (client *Client, err error)

NewClientWithRamRoleArn is a shortcut to create sdk client with ram roleArn and policy usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithRsaKeyPair

func NewClientWithRsaKeyPair(regionId string, publicKeyId, privateKey string, sessionExpiration int) (client *Client, err error)

NewClientWithRsaKeyPair is a shortcut to create sdk client with rsa key pair usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithStsToken

func NewClientWithStsToken(regionId, stsAccessKeyId, stsAccessKeySecret, stsToken string) (client *Client, err error)

NewClientWithStsToken is a shortcut to create sdk client with sts token usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func (*Client) BatchInsertMembers added in v1.61.435

func (client *Client) BatchInsertMembers(request *BatchInsertMembersRequest) (response *BatchInsertMembersResponse, err error)

BatchInsertMembers invokes the devops_rdc.BatchInsertMembers API synchronously

func (*Client) BatchInsertMembersWithCallback added in v1.61.435

func (client *Client) BatchInsertMembersWithCallback(request *BatchInsertMembersRequest, callback func(response *BatchInsertMembersResponse, err error)) <-chan int

BatchInsertMembersWithCallback invokes the devops_rdc.BatchInsertMembers API asynchronously

func (*Client) BatchInsertMembersWithChan added in v1.61.435

func (client *Client) BatchInsertMembersWithChan(request *BatchInsertMembersRequest) (<-chan *BatchInsertMembersResponse, <-chan error)

BatchInsertMembersWithChan invokes the devops_rdc.BatchInsertMembers API asynchronously

func (*Client) CancelPipeline

func (client *Client) CancelPipeline(request *CancelPipelineRequest) (response *CancelPipelineResponse, err error)

CancelPipeline invokes the devops_rdc.CancelPipeline API synchronously

func (*Client) CancelPipelineWithCallback

func (client *Client) CancelPipelineWithCallback(request *CancelPipelineRequest, callback func(response *CancelPipelineResponse, err error)) <-chan int

CancelPipelineWithCallback invokes the devops_rdc.CancelPipeline API asynchronously

func (*Client) CancelPipelineWithChan

func (client *Client) CancelPipelineWithChan(request *CancelPipelineRequest) (<-chan *CancelPipelineResponse, <-chan error)

CancelPipelineWithChan invokes the devops_rdc.CancelPipeline API asynchronously

func (*Client) CheckAliyunAccountExists added in v1.61.435

func (client *Client) CheckAliyunAccountExists(request *CheckAliyunAccountExistsRequest) (response *CheckAliyunAccountExistsResponse, err error)

CheckAliyunAccountExists invokes the devops_rdc.CheckAliyunAccountExists API synchronously

func (*Client) CheckAliyunAccountExistsWithCallback added in v1.61.435

func (client *Client) CheckAliyunAccountExistsWithCallback(request *CheckAliyunAccountExistsRequest, callback func(response *CheckAliyunAccountExistsResponse, err error)) <-chan int

CheckAliyunAccountExistsWithCallback invokes the devops_rdc.CheckAliyunAccountExists API asynchronously

func (*Client) CheckAliyunAccountExistsWithChan added in v1.61.435

func (client *Client) CheckAliyunAccountExistsWithChan(request *CheckAliyunAccountExistsRequest) (<-chan *CheckAliyunAccountExistsResponse, <-chan error)

CheckAliyunAccountExistsWithChan invokes the devops_rdc.CheckAliyunAccountExists API asynchronously

func (*Client) CreateCommonGroup added in v1.61.723

func (client *Client) CreateCommonGroup(request *CreateCommonGroupRequest) (response *CreateCommonGroupResponse, err error)

CreateCommonGroup invokes the devops_rdc.CreateCommonGroup API synchronously

func (*Client) CreateCommonGroupWithCallback added in v1.61.723

func (client *Client) CreateCommonGroupWithCallback(request *CreateCommonGroupRequest, callback func(response *CreateCommonGroupResponse, err error)) <-chan int

CreateCommonGroupWithCallback invokes the devops_rdc.CreateCommonGroup API asynchronously

func (*Client) CreateCommonGroupWithChan added in v1.61.723

func (client *Client) CreateCommonGroupWithChan(request *CreateCommonGroupRequest) (<-chan *CreateCommonGroupResponse, <-chan error)

CreateCommonGroupWithChan invokes the devops_rdc.CreateCommonGroup API asynchronously

func (*Client) CreateCredential

func (client *Client) CreateCredential(request *CreateCredentialRequest) (response *CreateCredentialResponse, err error)

CreateCredential invokes the devops_rdc.CreateCredential API synchronously

func (*Client) CreateCredentialWithCallback

func (client *Client) CreateCredentialWithCallback(request *CreateCredentialRequest, callback func(response *CreateCredentialResponse, err error)) <-chan int

CreateCredentialWithCallback invokes the devops_rdc.CreateCredential API asynchronously

func (*Client) CreateCredentialWithChan

func (client *Client) CreateCredentialWithChan(request *CreateCredentialRequest) (<-chan *CreateCredentialResponse, <-chan error)

CreateCredentialWithChan invokes the devops_rdc.CreateCredential API asynchronously

func (*Client) CreateDevopsOrganization added in v1.61.435

func (client *Client) CreateDevopsOrganization(request *CreateDevopsOrganizationRequest) (response *CreateDevopsOrganizationResponse, err error)

CreateDevopsOrganization invokes the devops_rdc.CreateDevopsOrganization API synchronously

func (*Client) CreateDevopsOrganizationWithCallback added in v1.61.435

func (client *Client) CreateDevopsOrganizationWithCallback(request *CreateDevopsOrganizationRequest, callback func(response *CreateDevopsOrganizationResponse, err error)) <-chan int

CreateDevopsOrganizationWithCallback invokes the devops_rdc.CreateDevopsOrganization API asynchronously

func (*Client) CreateDevopsOrganizationWithChan added in v1.61.435

func (client *Client) CreateDevopsOrganizationWithChan(request *CreateDevopsOrganizationRequest) (<-chan *CreateDevopsOrganizationResponse, <-chan error)

CreateDevopsOrganizationWithChan invokes the devops_rdc.CreateDevopsOrganization API asynchronously

func (*Client) CreateDevopsProject added in v1.61.435

func (client *Client) CreateDevopsProject(request *CreateDevopsProjectRequest) (response *CreateDevopsProjectResponse, err error)

CreateDevopsProject invokes the devops_rdc.CreateDevopsProject API synchronously

func (*Client) CreateDevopsProjectSprint added in v1.61.435

func (client *Client) CreateDevopsProjectSprint(request *CreateDevopsProjectSprintRequest) (response *CreateDevopsProjectSprintResponse, err error)

CreateDevopsProjectSprint invokes the devops_rdc.CreateDevopsProjectSprint API synchronously

func (*Client) CreateDevopsProjectSprintWithCallback added in v1.61.435

func (client *Client) CreateDevopsProjectSprintWithCallback(request *CreateDevopsProjectSprintRequest, callback func(response *CreateDevopsProjectSprintResponse, err error)) <-chan int

CreateDevopsProjectSprintWithCallback invokes the devops_rdc.CreateDevopsProjectSprint API asynchronously

func (*Client) CreateDevopsProjectSprintWithChan added in v1.61.435

func (client *Client) CreateDevopsProjectSprintWithChan(request *CreateDevopsProjectSprintRequest) (<-chan *CreateDevopsProjectSprintResponse, <-chan error)

CreateDevopsProjectSprintWithChan invokes the devops_rdc.CreateDevopsProjectSprint API asynchronously

func (*Client) CreateDevopsProjectTask added in v1.61.435

func (client *Client) CreateDevopsProjectTask(request *CreateDevopsProjectTaskRequest) (response *CreateDevopsProjectTaskResponse, err error)

CreateDevopsProjectTask invokes the devops_rdc.CreateDevopsProjectTask API synchronously

func (*Client) CreateDevopsProjectTaskWithCallback added in v1.61.435

func (client *Client) CreateDevopsProjectTaskWithCallback(request *CreateDevopsProjectTaskRequest, callback func(response *CreateDevopsProjectTaskResponse, err error)) <-chan int

CreateDevopsProjectTaskWithCallback invokes the devops_rdc.CreateDevopsProjectTask API asynchronously

func (*Client) CreateDevopsProjectTaskWithChan added in v1.61.435

func (client *Client) CreateDevopsProjectTaskWithChan(request *CreateDevopsProjectTaskRequest) (<-chan *CreateDevopsProjectTaskResponse, <-chan error)

CreateDevopsProjectTaskWithChan invokes the devops_rdc.CreateDevopsProjectTask API asynchronously

func (*Client) CreateDevopsProjectWithCallback added in v1.61.435

func (client *Client) CreateDevopsProjectWithCallback(request *CreateDevopsProjectRequest, callback func(response *CreateDevopsProjectResponse, err error)) <-chan int

CreateDevopsProjectWithCallback invokes the devops_rdc.CreateDevopsProject API asynchronously

func (*Client) CreateDevopsProjectWithChan added in v1.61.435

func (client *Client) CreateDevopsProjectWithChan(request *CreateDevopsProjectRequest) (<-chan *CreateDevopsProjectResponse, <-chan error)

CreateDevopsProjectWithChan invokes the devops_rdc.CreateDevopsProject API asynchronously

func (*Client) CreatePipeline

func (client *Client) CreatePipeline(request *CreatePipelineRequest) (response *CreatePipelineResponse, err error)

CreatePipeline invokes the devops_rdc.CreatePipeline API synchronously

func (*Client) CreatePipelineWithCallback

func (client *Client) CreatePipelineWithCallback(request *CreatePipelineRequest, callback func(response *CreatePipelineResponse, err error)) <-chan int

CreatePipelineWithCallback invokes the devops_rdc.CreatePipeline API asynchronously

func (*Client) CreatePipelineWithChan

func (client *Client) CreatePipelineWithChan(request *CreatePipelineRequest) (<-chan *CreatePipelineResponse, <-chan error)

CreatePipelineWithChan invokes the devops_rdc.CreatePipeline API asynchronously

func (*Client) CreateServiceConnection

func (client *Client) CreateServiceConnection(request *CreateServiceConnectionRequest) (response *CreateServiceConnectionResponse, err error)

CreateServiceConnection invokes the devops_rdc.CreateServiceConnection API synchronously

func (*Client) CreateServiceConnectionWithCallback

func (client *Client) CreateServiceConnectionWithCallback(request *CreateServiceConnectionRequest, callback func(response *CreateServiceConnectionResponse, err error)) <-chan int

CreateServiceConnectionWithCallback invokes the devops_rdc.CreateServiceConnection API asynchronously

func (*Client) CreateServiceConnectionWithChan

func (client *Client) CreateServiceConnectionWithChan(request *CreateServiceConnectionRequest) (<-chan *CreateServiceConnectionResponse, <-chan error)

CreateServiceConnectionWithChan invokes the devops_rdc.CreateServiceConnection API asynchronously

func (*Client) DeleteCommonGroup added in v1.61.723

func (client *Client) DeleteCommonGroup(request *DeleteCommonGroupRequest) (response *DeleteCommonGroupResponse, err error)

DeleteCommonGroup invokes the devops_rdc.DeleteCommonGroup API synchronously

func (*Client) DeleteCommonGroupWithCallback added in v1.61.723

func (client *Client) DeleteCommonGroupWithCallback(request *DeleteCommonGroupRequest, callback func(response *DeleteCommonGroupResponse, err error)) <-chan int

DeleteCommonGroupWithCallback invokes the devops_rdc.DeleteCommonGroup API asynchronously

func (*Client) DeleteCommonGroupWithChan added in v1.61.723

func (client *Client) DeleteCommonGroupWithChan(request *DeleteCommonGroupRequest) (<-chan *DeleteCommonGroupResponse, <-chan error)

DeleteCommonGroupWithChan invokes the devops_rdc.DeleteCommonGroup API asynchronously

func (*Client) DeleteDevopsOrganization added in v1.61.1035

func (client *Client) DeleteDevopsOrganization(request *DeleteDevopsOrganizationRequest) (response *DeleteDevopsOrganizationResponse, err error)

DeleteDevopsOrganization invokes the devops_rdc.DeleteDevopsOrganization API synchronously

func (*Client) DeleteDevopsOrganizationMembers added in v1.61.435

func (client *Client) DeleteDevopsOrganizationMembers(request *DeleteDevopsOrganizationMembersRequest) (response *DeleteDevopsOrganizationMembersResponse, err error)

DeleteDevopsOrganizationMembers invokes the devops_rdc.DeleteDevopsOrganizationMembers API synchronously

func (*Client) DeleteDevopsOrganizationMembersWithCallback added in v1.61.435

func (client *Client) DeleteDevopsOrganizationMembersWithCallback(request *DeleteDevopsOrganizationMembersRequest, callback func(response *DeleteDevopsOrganizationMembersResponse, err error)) <-chan int

DeleteDevopsOrganizationMembersWithCallback invokes the devops_rdc.DeleteDevopsOrganizationMembers API asynchronously

func (*Client) DeleteDevopsOrganizationMembersWithChan added in v1.61.435

func (client *Client) DeleteDevopsOrganizationMembersWithChan(request *DeleteDevopsOrganizationMembersRequest) (<-chan *DeleteDevopsOrganizationMembersResponse, <-chan error)

DeleteDevopsOrganizationMembersWithChan invokes the devops_rdc.DeleteDevopsOrganizationMembers API asynchronously

func (*Client) DeleteDevopsOrganizationWithCallback added in v1.61.1035

func (client *Client) DeleteDevopsOrganizationWithCallback(request *DeleteDevopsOrganizationRequest, callback func(response *DeleteDevopsOrganizationResponse, err error)) <-chan int

DeleteDevopsOrganizationWithCallback invokes the devops_rdc.DeleteDevopsOrganization API asynchronously

func (*Client) DeleteDevopsOrganizationWithChan added in v1.61.1035

func (client *Client) DeleteDevopsOrganizationWithChan(request *DeleteDevopsOrganizationRequest) (<-chan *DeleteDevopsOrganizationResponse, <-chan error)

DeleteDevopsOrganizationWithChan invokes the devops_rdc.DeleteDevopsOrganization API asynchronously

func (*Client) DeleteDevopsProject added in v1.61.435

func (client *Client) DeleteDevopsProject(request *DeleteDevopsProjectRequest) (response *DeleteDevopsProjectResponse, err error)

DeleteDevopsProject invokes the devops_rdc.DeleteDevopsProject API synchronously

func (*Client) DeleteDevopsProjectMembers added in v1.61.435

func (client *Client) DeleteDevopsProjectMembers(request *DeleteDevopsProjectMembersRequest) (response *DeleteDevopsProjectMembersResponse, err error)

DeleteDevopsProjectMembers invokes the devops_rdc.DeleteDevopsProjectMembers API synchronously

func (*Client) DeleteDevopsProjectMembersWithCallback added in v1.61.435

func (client *Client) DeleteDevopsProjectMembersWithCallback(request *DeleteDevopsProjectMembersRequest, callback func(response *DeleteDevopsProjectMembersResponse, err error)) <-chan int

DeleteDevopsProjectMembersWithCallback invokes the devops_rdc.DeleteDevopsProjectMembers API asynchronously

func (*Client) DeleteDevopsProjectMembersWithChan added in v1.61.435

func (client *Client) DeleteDevopsProjectMembersWithChan(request *DeleteDevopsProjectMembersRequest) (<-chan *DeleteDevopsProjectMembersResponse, <-chan error)

DeleteDevopsProjectMembersWithChan invokes the devops_rdc.DeleteDevopsProjectMembers API asynchronously

func (*Client) DeleteDevopsProjectSprint added in v1.61.435

func (client *Client) DeleteDevopsProjectSprint(request *DeleteDevopsProjectSprintRequest) (response *DeleteDevopsProjectSprintResponse, err error)

DeleteDevopsProjectSprint invokes the devops_rdc.DeleteDevopsProjectSprint API synchronously

func (*Client) DeleteDevopsProjectSprintWithCallback added in v1.61.435

func (client *Client) DeleteDevopsProjectSprintWithCallback(request *DeleteDevopsProjectSprintRequest, callback func(response *DeleteDevopsProjectSprintResponse, err error)) <-chan int

DeleteDevopsProjectSprintWithCallback invokes the devops_rdc.DeleteDevopsProjectSprint API asynchronously

func (*Client) DeleteDevopsProjectSprintWithChan added in v1.61.435

func (client *Client) DeleteDevopsProjectSprintWithChan(request *DeleteDevopsProjectSprintRequest) (<-chan *DeleteDevopsProjectSprintResponse, <-chan error)

DeleteDevopsProjectSprintWithChan invokes the devops_rdc.DeleteDevopsProjectSprint API asynchronously

func (*Client) DeleteDevopsProjectTask added in v1.61.435

func (client *Client) DeleteDevopsProjectTask(request *DeleteDevopsProjectTaskRequest) (response *DeleteDevopsProjectTaskResponse, err error)

DeleteDevopsProjectTask invokes the devops_rdc.DeleteDevopsProjectTask API synchronously

func (*Client) DeleteDevopsProjectTaskWithCallback added in v1.61.435

func (client *Client) DeleteDevopsProjectTaskWithCallback(request *DeleteDevopsProjectTaskRequest, callback func(response *DeleteDevopsProjectTaskResponse, err error)) <-chan int

DeleteDevopsProjectTaskWithCallback invokes the devops_rdc.DeleteDevopsProjectTask API asynchronously

func (*Client) DeleteDevopsProjectTaskWithChan added in v1.61.435

func (client *Client) DeleteDevopsProjectTaskWithChan(request *DeleteDevopsProjectTaskRequest) (<-chan *DeleteDevopsProjectTaskResponse, <-chan error)

DeleteDevopsProjectTaskWithChan invokes the devops_rdc.DeleteDevopsProjectTask API asynchronously

func (*Client) DeleteDevopsProjectWithCallback added in v1.61.435

func (client *Client) DeleteDevopsProjectWithCallback(request *DeleteDevopsProjectRequest, callback func(response *DeleteDevopsProjectResponse, err error)) <-chan int

DeleteDevopsProjectWithCallback invokes the devops_rdc.DeleteDevopsProject API asynchronously

func (*Client) DeleteDevopsProjectWithChan added in v1.61.435

func (client *Client) DeleteDevopsProjectWithChan(request *DeleteDevopsProjectRequest) (<-chan *DeleteDevopsProjectResponse, <-chan error)

DeleteDevopsProjectWithChan invokes the devops_rdc.DeleteDevopsProject API asynchronously

func (*Client) DeletePipelineMember added in v1.61.598

func (client *Client) DeletePipelineMember(request *DeletePipelineMemberRequest) (response *DeletePipelineMemberResponse, err error)

DeletePipelineMember invokes the devops_rdc.DeletePipelineMember API synchronously

func (*Client) DeletePipelineMemberWithCallback added in v1.61.598

func (client *Client) DeletePipelineMemberWithCallback(request *DeletePipelineMemberRequest, callback func(response *DeletePipelineMemberResponse, err error)) <-chan int

DeletePipelineMemberWithCallback invokes the devops_rdc.DeletePipelineMember API asynchronously

func (*Client) DeletePipelineMemberWithChan added in v1.61.598

func (client *Client) DeletePipelineMemberWithChan(request *DeletePipelineMemberRequest) (<-chan *DeletePipelineMemberResponse, <-chan error)

DeletePipelineMemberWithChan invokes the devops_rdc.DeletePipelineMember API asynchronously

func (*Client) ExecutePipeline

func (client *Client) ExecutePipeline(request *ExecutePipelineRequest) (response *ExecutePipelineResponse, err error)

ExecutePipeline invokes the devops_rdc.ExecutePipeline API synchronously

func (*Client) ExecutePipelineWithCallback

func (client *Client) ExecutePipelineWithCallback(request *ExecutePipelineRequest, callback func(response *ExecutePipelineResponse, err error)) <-chan int

ExecutePipelineWithCallback invokes the devops_rdc.ExecutePipeline API asynchronously

func (*Client) ExecutePipelineWithChan

func (client *Client) ExecutePipelineWithChan(request *ExecutePipelineRequest) (<-chan *ExecutePipelineResponse, <-chan error)

ExecutePipelineWithChan invokes the devops_rdc.ExecutePipeline API asynchronously

func (*Client) GetDevopsOrganizationMembers added in v1.61.435

func (client *Client) GetDevopsOrganizationMembers(request *GetDevopsOrganizationMembersRequest) (response *GetDevopsOrganizationMembersResponse, err error)

GetDevopsOrganizationMembers invokes the devops_rdc.GetDevopsOrganizationMembers API synchronously

func (*Client) GetDevopsOrganizationMembersWithCallback added in v1.61.435

func (client *Client) GetDevopsOrganizationMembersWithCallback(request *GetDevopsOrganizationMembersRequest, callback func(response *GetDevopsOrganizationMembersResponse, err error)) <-chan int

GetDevopsOrganizationMembersWithCallback invokes the devops_rdc.GetDevopsOrganizationMembers API asynchronously

func (*Client) GetDevopsOrganizationMembersWithChan added in v1.61.435

func (client *Client) GetDevopsOrganizationMembersWithChan(request *GetDevopsOrganizationMembersRequest) (<-chan *GetDevopsOrganizationMembersResponse, <-chan error)

GetDevopsOrganizationMembersWithChan invokes the devops_rdc.GetDevopsOrganizationMembers API asynchronously

func (*Client) GetDevopsProjectInfo added in v1.61.435

func (client *Client) GetDevopsProjectInfo(request *GetDevopsProjectInfoRequest) (response *GetDevopsProjectInfoResponse, err error)

GetDevopsProjectInfo invokes the devops_rdc.GetDevopsProjectInfo API synchronously

func (*Client) GetDevopsProjectInfoWithCallback added in v1.61.435

func (client *Client) GetDevopsProjectInfoWithCallback(request *GetDevopsProjectInfoRequest, callback func(response *GetDevopsProjectInfoResponse, err error)) <-chan int

GetDevopsProjectInfoWithCallback invokes the devops_rdc.GetDevopsProjectInfo API asynchronously

func (*Client) GetDevopsProjectInfoWithChan added in v1.61.435

func (client *Client) GetDevopsProjectInfoWithChan(request *GetDevopsProjectInfoRequest) (<-chan *GetDevopsProjectInfoResponse, <-chan error)

GetDevopsProjectInfoWithChan invokes the devops_rdc.GetDevopsProjectInfo API asynchronously

func (*Client) GetDevopsProjectMembers added in v1.61.435

func (client *Client) GetDevopsProjectMembers(request *GetDevopsProjectMembersRequest) (response *GetDevopsProjectMembersResponse, err error)

GetDevopsProjectMembers invokes the devops_rdc.GetDevopsProjectMembers API synchronously

func (*Client) GetDevopsProjectMembersWithCallback added in v1.61.435

func (client *Client) GetDevopsProjectMembersWithCallback(request *GetDevopsProjectMembersRequest, callback func(response *GetDevopsProjectMembersResponse, err error)) <-chan int

GetDevopsProjectMembersWithCallback invokes the devops_rdc.GetDevopsProjectMembers API asynchronously

func (*Client) GetDevopsProjectMembersWithChan added in v1.61.435

func (client *Client) GetDevopsProjectMembersWithChan(request *GetDevopsProjectMembersRequest) (<-chan *GetDevopsProjectMembersResponse, <-chan error)

GetDevopsProjectMembersWithChan invokes the devops_rdc.GetDevopsProjectMembers API asynchronously

func (*Client) GetDevopsProjectSprintInfo added in v1.61.435

func (client *Client) GetDevopsProjectSprintInfo(request *GetDevopsProjectSprintInfoRequest) (response *GetDevopsProjectSprintInfoResponse, err error)

GetDevopsProjectSprintInfo invokes the devops_rdc.GetDevopsProjectSprintInfo API synchronously

func (*Client) GetDevopsProjectSprintInfoWithCallback added in v1.61.435

func (client *Client) GetDevopsProjectSprintInfoWithCallback(request *GetDevopsProjectSprintInfoRequest, callback func(response *GetDevopsProjectSprintInfoResponse, err error)) <-chan int

GetDevopsProjectSprintInfoWithCallback invokes the devops_rdc.GetDevopsProjectSprintInfo API asynchronously

func (*Client) GetDevopsProjectSprintInfoWithChan added in v1.61.435

func (client *Client) GetDevopsProjectSprintInfoWithChan(request *GetDevopsProjectSprintInfoRequest) (<-chan *GetDevopsProjectSprintInfoResponse, <-chan error)

GetDevopsProjectSprintInfoWithChan invokes the devops_rdc.GetDevopsProjectSprintInfo API asynchronously

func (*Client) GetDevopsProjectTaskInfo added in v1.61.435

func (client *Client) GetDevopsProjectTaskInfo(request *GetDevopsProjectTaskInfoRequest) (response *GetDevopsProjectTaskInfoResponse, err error)

GetDevopsProjectTaskInfo invokes the devops_rdc.GetDevopsProjectTaskInfo API synchronously

func (*Client) GetDevopsProjectTaskInfoWithCallback added in v1.61.435

func (client *Client) GetDevopsProjectTaskInfoWithCallback(request *GetDevopsProjectTaskInfoRequest, callback func(response *GetDevopsProjectTaskInfoResponse, err error)) <-chan int

GetDevopsProjectTaskInfoWithCallback invokes the devops_rdc.GetDevopsProjectTaskInfo API asynchronously

func (*Client) GetDevopsProjectTaskInfoWithChan added in v1.61.435

func (client *Client) GetDevopsProjectTaskInfoWithChan(request *GetDevopsProjectTaskInfoRequest) (<-chan *GetDevopsProjectTaskInfoResponse, <-chan error)

GetDevopsProjectTaskInfoWithChan invokes the devops_rdc.GetDevopsProjectTaskInfo API asynchronously

func (*Client) GetLastWorkspace added in v1.61.873

func (client *Client) GetLastWorkspace(request *GetLastWorkspaceRequest) (response *GetLastWorkspaceResponse, err error)

GetLastWorkspace invokes the devops_rdc.GetLastWorkspace API synchronously

func (*Client) GetLastWorkspaceWithCallback added in v1.61.873

func (client *Client) GetLastWorkspaceWithCallback(request *GetLastWorkspaceRequest, callback func(response *GetLastWorkspaceResponse, err error)) <-chan int

GetLastWorkspaceWithCallback invokes the devops_rdc.GetLastWorkspace API asynchronously

func (*Client) GetLastWorkspaceWithChan added in v1.61.873

func (client *Client) GetLastWorkspaceWithChan(request *GetLastWorkspaceRequest) (<-chan *GetLastWorkspaceResponse, <-chan error)

GetLastWorkspaceWithChan invokes the devops_rdc.GetLastWorkspace API asynchronously

func (*Client) GetPipelineInstHistory added in v1.61.767

func (client *Client) GetPipelineInstHistory(request *GetPipelineInstHistoryRequest) (response *GetPipelineInstHistoryResponse, err error)

GetPipelineInstHistory invokes the devops_rdc.GetPipelineInstHistory API synchronously

func (*Client) GetPipelineInstHistoryWithCallback added in v1.61.767

func (client *Client) GetPipelineInstHistoryWithCallback(request *GetPipelineInstHistoryRequest, callback func(response *GetPipelineInstHistoryResponse, err error)) <-chan int

GetPipelineInstHistoryWithCallback invokes the devops_rdc.GetPipelineInstHistory API asynchronously

func (*Client) GetPipelineInstHistoryWithChan added in v1.61.767

func (client *Client) GetPipelineInstHistoryWithChan(request *GetPipelineInstHistoryRequest) (<-chan *GetPipelineInstHistoryResponse, <-chan error)

GetPipelineInstHistoryWithChan invokes the devops_rdc.GetPipelineInstHistory API asynchronously

func (*Client) GetPipelineInstanceBuildNumberStatus added in v1.61.398

func (client *Client) GetPipelineInstanceBuildNumberStatus(request *GetPipelineInstanceBuildNumberStatusRequest) (response *GetPipelineInstanceBuildNumberStatusResponse, err error)

GetPipelineInstanceBuildNumberStatus invokes the devops_rdc.GetPipelineInstanceBuildNumberStatus API synchronously

func (*Client) GetPipelineInstanceBuildNumberStatusWithCallback added in v1.61.398

func (client *Client) GetPipelineInstanceBuildNumberStatusWithCallback(request *GetPipelineInstanceBuildNumberStatusRequest, callback func(response *GetPipelineInstanceBuildNumberStatusResponse, err error)) <-chan int

GetPipelineInstanceBuildNumberStatusWithCallback invokes the devops_rdc.GetPipelineInstanceBuildNumberStatus API asynchronously

func (*Client) GetPipelineInstanceBuildNumberStatusWithChan added in v1.61.398

func (client *Client) GetPipelineInstanceBuildNumberStatusWithChan(request *GetPipelineInstanceBuildNumberStatusRequest) (<-chan *GetPipelineInstanceBuildNumberStatusResponse, <-chan error)

GetPipelineInstanceBuildNumberStatusWithChan invokes the devops_rdc.GetPipelineInstanceBuildNumberStatus API asynchronously

func (*Client) GetPipelineInstanceGroupStatus added in v1.61.398

func (client *Client) GetPipelineInstanceGroupStatus(request *GetPipelineInstanceGroupStatusRequest) (response *GetPipelineInstanceGroupStatusResponse, err error)

GetPipelineInstanceGroupStatus invokes the devops_rdc.GetPipelineInstanceGroupStatus API synchronously

func (*Client) GetPipelineInstanceGroupStatusWithCallback added in v1.61.398

func (client *Client) GetPipelineInstanceGroupStatusWithCallback(request *GetPipelineInstanceGroupStatusRequest, callback func(response *GetPipelineInstanceGroupStatusResponse, err error)) <-chan int

GetPipelineInstanceGroupStatusWithCallback invokes the devops_rdc.GetPipelineInstanceGroupStatus API asynchronously

func (*Client) GetPipelineInstanceGroupStatusWithChan added in v1.61.398

func (client *Client) GetPipelineInstanceGroupStatusWithChan(request *GetPipelineInstanceGroupStatusRequest) (<-chan *GetPipelineInstanceGroupStatusResponse, <-chan error)

GetPipelineInstanceGroupStatusWithChan invokes the devops_rdc.GetPipelineInstanceGroupStatus API asynchronously

func (*Client) GetPipelineInstanceInfo

func (client *Client) GetPipelineInstanceInfo(request *GetPipelineInstanceInfoRequest) (response *GetPipelineInstanceInfoResponse, err error)

GetPipelineInstanceInfo invokes the devops_rdc.GetPipelineInstanceInfo API synchronously

func (*Client) GetPipelineInstanceInfoWithCallback

func (client *Client) GetPipelineInstanceInfoWithCallback(request *GetPipelineInstanceInfoRequest, callback func(response *GetPipelineInstanceInfoResponse, err error)) <-chan int

GetPipelineInstanceInfoWithCallback invokes the devops_rdc.GetPipelineInstanceInfo API asynchronously

func (*Client) GetPipelineInstanceInfoWithChan

func (client *Client) GetPipelineInstanceInfoWithChan(request *GetPipelineInstanceInfoRequest) (<-chan *GetPipelineInstanceInfoResponse, <-chan error)

GetPipelineInstanceInfoWithChan invokes the devops_rdc.GetPipelineInstanceInfo API asynchronously

func (*Client) GetPipelineInstanceStatus

func (client *Client) GetPipelineInstanceStatus(request *GetPipelineInstanceStatusRequest) (response *GetPipelineInstanceStatusResponse, err error)

GetPipelineInstanceStatus invokes the devops_rdc.GetPipelineInstanceStatus API synchronously

func (*Client) GetPipelineInstanceStatusWithCallback

func (client *Client) GetPipelineInstanceStatusWithCallback(request *GetPipelineInstanceStatusRequest, callback func(response *GetPipelineInstanceStatusResponse, err error)) <-chan int

GetPipelineInstanceStatusWithCallback invokes the devops_rdc.GetPipelineInstanceStatus API asynchronously

func (*Client) GetPipelineInstanceStatusWithChan

func (client *Client) GetPipelineInstanceStatusWithChan(request *GetPipelineInstanceStatusRequest) (<-chan *GetPipelineInstanceStatusResponse, <-chan error)

GetPipelineInstanceStatusWithChan invokes the devops_rdc.GetPipelineInstanceStatus API asynchronously

func (*Client) GetPipelineLog added in v1.61.398

func (client *Client) GetPipelineLog(request *GetPipelineLogRequest) (response *GetPipelineLogResponse, err error)

GetPipelineLog invokes the devops_rdc.GetPipelineLog API synchronously

func (*Client) GetPipelineLogWithCallback added in v1.61.398

func (client *Client) GetPipelineLogWithCallback(request *GetPipelineLogRequest, callback func(response *GetPipelineLogResponse, err error)) <-chan int

GetPipelineLogWithCallback invokes the devops_rdc.GetPipelineLog API asynchronously

func (*Client) GetPipelineLogWithChan added in v1.61.398

func (client *Client) GetPipelineLogWithChan(request *GetPipelineLogRequest) (<-chan *GetPipelineLogResponse, <-chan error)

GetPipelineLogWithChan invokes the devops_rdc.GetPipelineLog API asynchronously

func (*Client) GetPipelineStepLog added in v1.61.767

func (client *Client) GetPipelineStepLog(request *GetPipelineStepLogRequest) (response *GetPipelineStepLogResponse, err error)

GetPipelineStepLog invokes the devops_rdc.GetPipelineStepLog API synchronously

func (*Client) GetPipelineStepLogWithCallback added in v1.61.767

func (client *Client) GetPipelineStepLogWithCallback(request *GetPipelineStepLogRequest, callback func(response *GetPipelineStepLogResponse, err error)) <-chan int

GetPipelineStepLogWithCallback invokes the devops_rdc.GetPipelineStepLog API asynchronously

func (*Client) GetPipelineStepLogWithChan added in v1.61.767

func (client *Client) GetPipelineStepLogWithChan(request *GetPipelineStepLogRequest) (<-chan *GetPipelineStepLogResponse, <-chan error)

GetPipelineStepLogWithChan invokes the devops_rdc.GetPipelineStepLog API asynchronously

func (*Client) GetPipleineLatestInstanceStatus added in v1.61.398

func (client *Client) GetPipleineLatestInstanceStatus(request *GetPipleineLatestInstanceStatusRequest) (response *GetPipleineLatestInstanceStatusResponse, err error)

GetPipleineLatestInstanceStatus invokes the devops_rdc.GetPipleineLatestInstanceStatus API synchronously

func (*Client) GetPipleineLatestInstanceStatusWithCallback added in v1.61.398

func (client *Client) GetPipleineLatestInstanceStatusWithCallback(request *GetPipleineLatestInstanceStatusRequest, callback func(response *GetPipleineLatestInstanceStatusResponse, err error)) <-chan int

GetPipleineLatestInstanceStatusWithCallback invokes the devops_rdc.GetPipleineLatestInstanceStatus API asynchronously

func (*Client) GetPipleineLatestInstanceStatusWithChan added in v1.61.398

func (client *Client) GetPipleineLatestInstanceStatusWithChan(request *GetPipleineLatestInstanceStatusRequest) (<-chan *GetPipleineLatestInstanceStatusResponse, <-chan error)

GetPipleineLatestInstanceStatusWithChan invokes the devops_rdc.GetPipleineLatestInstanceStatus API asynchronously

func (*Client) GetProjectOption added in v1.61.723

func (client *Client) GetProjectOption(request *GetProjectOptionRequest) (response *GetProjectOptionResponse, err error)

GetProjectOption invokes the devops_rdc.GetProjectOption API synchronously

func (*Client) GetProjectOptionWithCallback added in v1.61.723

func (client *Client) GetProjectOptionWithCallback(request *GetProjectOptionRequest, callback func(response *GetProjectOptionResponse, err error)) <-chan int

GetProjectOptionWithCallback invokes the devops_rdc.GetProjectOption API asynchronously

func (*Client) GetProjectOptionWithChan added in v1.61.723

func (client *Client) GetProjectOptionWithChan(request *GetProjectOptionRequest) (<-chan *GetProjectOptionResponse, <-chan error)

GetProjectOptionWithChan invokes the devops_rdc.GetProjectOption API asynchronously

func (*Client) GetTaskDetailActivity added in v1.61.723

func (client *Client) GetTaskDetailActivity(request *GetTaskDetailActivityRequest) (response *GetTaskDetailActivityResponse, err error)

GetTaskDetailActivity invokes the devops_rdc.GetTaskDetailActivity API synchronously

func (*Client) GetTaskDetailActivityWithCallback added in v1.61.723

func (client *Client) GetTaskDetailActivityWithCallback(request *GetTaskDetailActivityRequest, callback func(response *GetTaskDetailActivityResponse, err error)) <-chan int

GetTaskDetailActivityWithCallback invokes the devops_rdc.GetTaskDetailActivity API asynchronously

func (*Client) GetTaskDetailActivityWithChan added in v1.61.723

func (client *Client) GetTaskDetailActivityWithChan(request *GetTaskDetailActivityRequest) (<-chan *GetTaskDetailActivityResponse, <-chan error)

GetTaskDetailActivityWithChan invokes the devops_rdc.GetTaskDetailActivity API asynchronously

func (*Client) GetTaskDetailBase added in v1.61.723

func (client *Client) GetTaskDetailBase(request *GetTaskDetailBaseRequest) (response *GetTaskDetailBaseResponse, err error)

GetTaskDetailBase invokes the devops_rdc.GetTaskDetailBase API synchronously

func (*Client) GetTaskDetailBaseWithCallback added in v1.61.723

func (client *Client) GetTaskDetailBaseWithCallback(request *GetTaskDetailBaseRequest, callback func(response *GetTaskDetailBaseResponse, err error)) <-chan int

GetTaskDetailBaseWithCallback invokes the devops_rdc.GetTaskDetailBase API asynchronously

func (*Client) GetTaskDetailBaseWithChan added in v1.61.723

func (client *Client) GetTaskDetailBaseWithChan(request *GetTaskDetailBaseRequest) (<-chan *GetTaskDetailBaseResponse, <-chan error)

GetTaskDetailBaseWithChan invokes the devops_rdc.GetTaskDetailBase API asynchronously

func (*Client) GetTaskListFilter added in v1.61.723

func (client *Client) GetTaskListFilter(request *GetTaskListFilterRequest) (response *GetTaskListFilterResponse, err error)

GetTaskListFilter invokes the devops_rdc.GetTaskListFilter API synchronously

func (*Client) GetTaskListFilterWithCallback added in v1.61.723

func (client *Client) GetTaskListFilterWithCallback(request *GetTaskListFilterRequest, callback func(response *GetTaskListFilterResponse, err error)) <-chan int

GetTaskListFilterWithCallback invokes the devops_rdc.GetTaskListFilter API asynchronously

func (*Client) GetTaskListFilterWithChan added in v1.61.723

func (client *Client) GetTaskListFilterWithChan(request *GetTaskListFilterRequest) (<-chan *GetTaskListFilterResponse, <-chan error)

GetTaskListFilterWithChan invokes the devops_rdc.GetTaskListFilter API asynchronously

func (*Client) GetUserByAliyunUid added in v1.61.435

func (client *Client) GetUserByAliyunUid(request *GetUserByAliyunUidRequest) (response *GetUserByAliyunUidResponse, err error)

GetUserByAliyunUid invokes the devops_rdc.GetUserByAliyunUid API synchronously

func (*Client) GetUserByAliyunUidWithCallback added in v1.61.435

func (client *Client) GetUserByAliyunUidWithCallback(request *GetUserByAliyunUidRequest, callback func(response *GetUserByAliyunUidResponse, err error)) <-chan int

GetUserByAliyunUidWithCallback invokes the devops_rdc.GetUserByAliyunUid API asynchronously

func (*Client) GetUserByAliyunUidWithChan added in v1.61.435

func (client *Client) GetUserByAliyunUidWithChan(request *GetUserByAliyunUidRequest) (<-chan *GetUserByAliyunUidResponse, <-chan error)

GetUserByAliyunUidWithChan invokes the devops_rdc.GetUserByAliyunUid API asynchronously

func (*Client) GetUserName added in v1.61.723

func (client *Client) GetUserName(request *GetUserNameRequest) (response *GetUserNameResponse, err error)

GetUserName invokes the devops_rdc.GetUserName API synchronously

func (*Client) GetUserNameWithCallback added in v1.61.723

func (client *Client) GetUserNameWithCallback(request *GetUserNameRequest, callback func(response *GetUserNameResponse, err error)) <-chan int

GetUserNameWithCallback invokes the devops_rdc.GetUserName API asynchronously

func (*Client) GetUserNameWithChan added in v1.61.723

func (client *Client) GetUserNameWithChan(request *GetUserNameRequest) (<-chan *GetUserNameResponse, <-chan error)

GetUserNameWithChan invokes the devops_rdc.GetUserName API asynchronously

func (*Client) InsertDevopsUser added in v1.61.435

func (client *Client) InsertDevopsUser(request *InsertDevopsUserRequest) (response *InsertDevopsUserResponse, err error)

InsertDevopsUser invokes the devops_rdc.InsertDevopsUser API synchronously

func (*Client) InsertDevopsUserWithCallback added in v1.61.435

func (client *Client) InsertDevopsUserWithCallback(request *InsertDevopsUserRequest, callback func(response *InsertDevopsUserResponse, err error)) <-chan int

InsertDevopsUserWithCallback invokes the devops_rdc.InsertDevopsUser API asynchronously

func (*Client) InsertDevopsUserWithChan added in v1.61.435

func (client *Client) InsertDevopsUserWithChan(request *InsertDevopsUserRequest) (<-chan *InsertDevopsUserResponse, <-chan error)

InsertDevopsUserWithChan invokes the devops_rdc.InsertDevopsUser API asynchronously

func (*Client) InsertPipelineMember added in v1.61.598

func (client *Client) InsertPipelineMember(request *InsertPipelineMemberRequest) (response *InsertPipelineMemberResponse, err error)

InsertPipelineMember invokes the devops_rdc.InsertPipelineMember API synchronously

func (*Client) InsertPipelineMemberWithCallback added in v1.61.598

func (client *Client) InsertPipelineMemberWithCallback(request *InsertPipelineMemberRequest, callback func(response *InsertPipelineMemberResponse, err error)) <-chan int

InsertPipelineMemberWithCallback invokes the devops_rdc.InsertPipelineMember API asynchronously

func (*Client) InsertPipelineMemberWithChan added in v1.61.598

func (client *Client) InsertPipelineMemberWithChan(request *InsertPipelineMemberRequest) (<-chan *InsertPipelineMemberResponse, <-chan error)

InsertPipelineMemberWithChan invokes the devops_rdc.InsertPipelineMember API asynchronously

func (*Client) InsertProjectMembers added in v1.61.435

func (client *Client) InsertProjectMembers(request *InsertProjectMembersRequest) (response *InsertProjectMembersResponse, err error)

InsertProjectMembers invokes the devops_rdc.InsertProjectMembers API synchronously

func (*Client) InsertProjectMembersWithCallback added in v1.61.435

func (client *Client) InsertProjectMembersWithCallback(request *InsertProjectMembersRequest, callback func(response *InsertProjectMembersResponse, err error)) <-chan int

InsertProjectMembersWithCallback invokes the devops_rdc.InsertProjectMembers API asynchronously

func (*Client) InsertProjectMembersWithChan added in v1.61.435

func (client *Client) InsertProjectMembersWithChan(request *InsertProjectMembersRequest) (<-chan *InsertProjectMembersResponse, <-chan error)

InsertProjectMembersWithChan invokes the devops_rdc.InsertProjectMembers API asynchronously

func (*Client) ListCommonGroup added in v1.61.723

func (client *Client) ListCommonGroup(request *ListCommonGroupRequest) (response *ListCommonGroupResponse, err error)

ListCommonGroup invokes the devops_rdc.ListCommonGroup API synchronously

func (*Client) ListCommonGroupWithCallback added in v1.61.723

func (client *Client) ListCommonGroupWithCallback(request *ListCommonGroupRequest, callback func(response *ListCommonGroupResponse, err error)) <-chan int

ListCommonGroupWithCallback invokes the devops_rdc.ListCommonGroup API asynchronously

func (*Client) ListCommonGroupWithChan added in v1.61.723

func (client *Client) ListCommonGroupWithChan(request *ListCommonGroupRequest) (<-chan *ListCommonGroupResponse, <-chan error)

ListCommonGroupWithChan invokes the devops_rdc.ListCommonGroup API asynchronously

func (*Client) ListCredentials

func (client *Client) ListCredentials(request *ListCredentialsRequest) (response *ListCredentialsResponse, err error)

ListCredentials invokes the devops_rdc.ListCredentials API synchronously

func (*Client) ListCredentialsWithCallback

func (client *Client) ListCredentialsWithCallback(request *ListCredentialsRequest, callback func(response *ListCredentialsResponse, err error)) <-chan int

ListCredentialsWithCallback invokes the devops_rdc.ListCredentials API asynchronously

func (*Client) ListCredentialsWithChan

func (client *Client) ListCredentialsWithChan(request *ListCredentialsRequest) (<-chan *ListCredentialsResponse, <-chan error)

ListCredentialsWithChan invokes the devops_rdc.ListCredentials API asynchronously

func (*Client) ListDevopsProjectSprints added in v1.61.435

func (client *Client) ListDevopsProjectSprints(request *ListDevopsProjectSprintsRequest) (response *ListDevopsProjectSprintsResponse, err error)

ListDevopsProjectSprints invokes the devops_rdc.ListDevopsProjectSprints API synchronously

func (*Client) ListDevopsProjectSprintsWithCallback added in v1.61.435

func (client *Client) ListDevopsProjectSprintsWithCallback(request *ListDevopsProjectSprintsRequest, callback func(response *ListDevopsProjectSprintsResponse, err error)) <-chan int

ListDevopsProjectSprintsWithCallback invokes the devops_rdc.ListDevopsProjectSprints API asynchronously

func (*Client) ListDevopsProjectSprintsWithChan added in v1.61.435

func (client *Client) ListDevopsProjectSprintsWithChan(request *ListDevopsProjectSprintsRequest) (<-chan *ListDevopsProjectSprintsResponse, <-chan error)

ListDevopsProjectSprintsWithChan invokes the devops_rdc.ListDevopsProjectSprints API asynchronously

func (*Client) ListDevopsProjectTaskFlow added in v1.61.435

func (client *Client) ListDevopsProjectTaskFlow(request *ListDevopsProjectTaskFlowRequest) (response *ListDevopsProjectTaskFlowResponse, err error)

ListDevopsProjectTaskFlow invokes the devops_rdc.ListDevopsProjectTaskFlow API synchronously

func (*Client) ListDevopsProjectTaskFlowStatus added in v1.61.435

func (client *Client) ListDevopsProjectTaskFlowStatus(request *ListDevopsProjectTaskFlowStatusRequest) (response *ListDevopsProjectTaskFlowStatusResponse, err error)

ListDevopsProjectTaskFlowStatus invokes the devops_rdc.ListDevopsProjectTaskFlowStatus API synchronously

func (*Client) ListDevopsProjectTaskFlowStatusWithCallback added in v1.61.435

func (client *Client) ListDevopsProjectTaskFlowStatusWithCallback(request *ListDevopsProjectTaskFlowStatusRequest, callback func(response *ListDevopsProjectTaskFlowStatusResponse, err error)) <-chan int

ListDevopsProjectTaskFlowStatusWithCallback invokes the devops_rdc.ListDevopsProjectTaskFlowStatus API asynchronously

func (*Client) ListDevopsProjectTaskFlowStatusWithChan added in v1.61.435

func (client *Client) ListDevopsProjectTaskFlowStatusWithChan(request *ListDevopsProjectTaskFlowStatusRequest) (<-chan *ListDevopsProjectTaskFlowStatusResponse, <-chan error)

ListDevopsProjectTaskFlowStatusWithChan invokes the devops_rdc.ListDevopsProjectTaskFlowStatus API asynchronously

func (*Client) ListDevopsProjectTaskFlowWithCallback added in v1.61.435

func (client *Client) ListDevopsProjectTaskFlowWithCallback(request *ListDevopsProjectTaskFlowRequest, callback func(response *ListDevopsProjectTaskFlowResponse, err error)) <-chan int

ListDevopsProjectTaskFlowWithCallback invokes the devops_rdc.ListDevopsProjectTaskFlow API asynchronously

func (*Client) ListDevopsProjectTaskFlowWithChan added in v1.61.435

func (client *Client) ListDevopsProjectTaskFlowWithChan(request *ListDevopsProjectTaskFlowRequest) (<-chan *ListDevopsProjectTaskFlowResponse, <-chan error)

ListDevopsProjectTaskFlowWithChan invokes the devops_rdc.ListDevopsProjectTaskFlow API asynchronously

func (*Client) ListDevopsProjectTaskList added in v1.61.700

func (client *Client) ListDevopsProjectTaskList(request *ListDevopsProjectTaskListRequest) (response *ListDevopsProjectTaskListResponse, err error)

ListDevopsProjectTaskList invokes the devops_rdc.ListDevopsProjectTaskList API synchronously

func (*Client) ListDevopsProjectTaskListWithCallback added in v1.61.700

func (client *Client) ListDevopsProjectTaskListWithCallback(request *ListDevopsProjectTaskListRequest, callback func(response *ListDevopsProjectTaskListResponse, err error)) <-chan int

ListDevopsProjectTaskListWithCallback invokes the devops_rdc.ListDevopsProjectTaskList API asynchronously

func (*Client) ListDevopsProjectTaskListWithChan added in v1.61.700

func (client *Client) ListDevopsProjectTaskListWithChan(request *ListDevopsProjectTaskListRequest) (<-chan *ListDevopsProjectTaskListResponse, <-chan error)

ListDevopsProjectTaskListWithChan invokes the devops_rdc.ListDevopsProjectTaskList API asynchronously

func (*Client) ListDevopsProjectTasks added in v1.61.435

func (client *Client) ListDevopsProjectTasks(request *ListDevopsProjectTasksRequest) (response *ListDevopsProjectTasksResponse, err error)

ListDevopsProjectTasks invokes the devops_rdc.ListDevopsProjectTasks API synchronously

func (*Client) ListDevopsProjectTasksWithCallback added in v1.61.435

func (client *Client) ListDevopsProjectTasksWithCallback(request *ListDevopsProjectTasksRequest, callback func(response *ListDevopsProjectTasksResponse, err error)) <-chan int

ListDevopsProjectTasksWithCallback invokes the devops_rdc.ListDevopsProjectTasks API asynchronously

func (*Client) ListDevopsProjectTasksWithChan added in v1.61.435

func (client *Client) ListDevopsProjectTasksWithChan(request *ListDevopsProjectTasksRequest) (<-chan *ListDevopsProjectTasksResponse, <-chan error)

ListDevopsProjectTasksWithChan invokes the devops_rdc.ListDevopsProjectTasks API asynchronously

func (*Client) ListDevopsScenarioFieldConfig added in v1.61.435

func (client *Client) ListDevopsScenarioFieldConfig(request *ListDevopsScenarioFieldConfigRequest) (response *ListDevopsScenarioFieldConfigResponse, err error)

ListDevopsScenarioFieldConfig invokes the devops_rdc.ListDevopsScenarioFieldConfig API synchronously

func (*Client) ListDevopsScenarioFieldConfigWithCallback added in v1.61.435

func (client *Client) ListDevopsScenarioFieldConfigWithCallback(request *ListDevopsScenarioFieldConfigRequest, callback func(response *ListDevopsScenarioFieldConfigResponse, err error)) <-chan int

ListDevopsScenarioFieldConfigWithCallback invokes the devops_rdc.ListDevopsScenarioFieldConfig API asynchronously

func (*Client) ListDevopsScenarioFieldConfigWithChan added in v1.61.435

func (client *Client) ListDevopsScenarioFieldConfigWithChan(request *ListDevopsScenarioFieldConfigRequest) (<-chan *ListDevopsScenarioFieldConfigResponse, <-chan error)

ListDevopsScenarioFieldConfigWithChan invokes the devops_rdc.ListDevopsScenarioFieldConfig API asynchronously

func (*Client) ListPipelines

func (client *Client) ListPipelines(request *ListPipelinesRequest) (response *ListPipelinesResponse, err error)

ListPipelines invokes the devops_rdc.ListPipelines API synchronously

func (*Client) ListPipelinesWithCallback

func (client *Client) ListPipelinesWithCallback(request *ListPipelinesRequest, callback func(response *ListPipelinesResponse, err error)) <-chan int

ListPipelinesWithCallback invokes the devops_rdc.ListPipelines API asynchronously

func (*Client) ListPipelinesWithChan

func (client *Client) ListPipelinesWithChan(request *ListPipelinesRequest) (<-chan *ListPipelinesResponse, <-chan error)

ListPipelinesWithChan invokes the devops_rdc.ListPipelines API asynchronously

func (*Client) ListProjectCustomFields added in v1.61.757

func (client *Client) ListProjectCustomFields(request *ListProjectCustomFieldsRequest) (response *ListProjectCustomFieldsResponse, err error)

ListProjectCustomFields invokes the devops_rdc.ListProjectCustomFields API synchronously

func (*Client) ListProjectCustomFieldsWithCallback added in v1.61.757

func (client *Client) ListProjectCustomFieldsWithCallback(request *ListProjectCustomFieldsRequest, callback func(response *ListProjectCustomFieldsResponse, err error)) <-chan int

ListProjectCustomFieldsWithCallback invokes the devops_rdc.ListProjectCustomFields API asynchronously

func (*Client) ListProjectCustomFieldsWithChan added in v1.61.757

func (client *Client) ListProjectCustomFieldsWithChan(request *ListProjectCustomFieldsRequest) (<-chan *ListProjectCustomFieldsResponse, <-chan error)

ListProjectCustomFieldsWithChan invokes the devops_rdc.ListProjectCustomFields API asynchronously

func (*Client) ListServiceConnections

func (client *Client) ListServiceConnections(request *ListServiceConnectionsRequest) (response *ListServiceConnectionsResponse, err error)

ListServiceConnections invokes the devops_rdc.ListServiceConnections API synchronously

func (*Client) ListServiceConnectionsWithCallback

func (client *Client) ListServiceConnectionsWithCallback(request *ListServiceConnectionsRequest, callback func(response *ListServiceConnectionsResponse, err error)) <-chan int

ListServiceConnectionsWithCallback invokes the devops_rdc.ListServiceConnections API asynchronously

func (*Client) ListServiceConnectionsWithChan

func (client *Client) ListServiceConnectionsWithChan(request *ListServiceConnectionsRequest) (<-chan *ListServiceConnectionsResponse, <-chan error)

ListServiceConnectionsWithChan invokes the devops_rdc.ListServiceConnections API asynchronously

func (*Client) ListSmartGroup added in v1.61.723

func (client *Client) ListSmartGroup(request *ListSmartGroupRequest) (response *ListSmartGroupResponse, err error)

ListSmartGroup invokes the devops_rdc.ListSmartGroup API synchronously

func (*Client) ListSmartGroupWithCallback added in v1.61.723

func (client *Client) ListSmartGroupWithCallback(request *ListSmartGroupRequest, callback func(response *ListSmartGroupResponse, err error)) <-chan int

ListSmartGroupWithCallback invokes the devops_rdc.ListSmartGroup API asynchronously

func (*Client) ListSmartGroupWithChan added in v1.61.723

func (client *Client) ListSmartGroupWithChan(request *ListSmartGroupRequest) (<-chan *ListSmartGroupResponse, <-chan error)

ListSmartGroupWithChan invokes the devops_rdc.ListSmartGroup API asynchronously

func (*Client) ListUserOrganization added in v1.61.552

func (client *Client) ListUserOrganization(request *ListUserOrganizationRequest) (response *ListUserOrganizationResponse, err error)

ListUserOrganization invokes the devops_rdc.ListUserOrganization API synchronously

func (*Client) ListUserOrganizationWithCallback added in v1.61.552

func (client *Client) ListUserOrganizationWithCallback(request *ListUserOrganizationRequest, callback func(response *ListUserOrganizationResponse, err error)) <-chan int

ListUserOrganizationWithCallback invokes the devops_rdc.ListUserOrganization API asynchronously

func (*Client) ListUserOrganizationWithChan added in v1.61.552

func (client *Client) ListUserOrganizationWithChan(request *ListUserOrganizationRequest) (<-chan *ListUserOrganizationResponse, <-chan error)

ListUserOrganizationWithChan invokes the devops_rdc.ListUserOrganization API asynchronously

func (*Client) TransferPipelineOwner added in v1.61.598

func (client *Client) TransferPipelineOwner(request *TransferPipelineOwnerRequest) (response *TransferPipelineOwnerResponse, err error)

TransferPipelineOwner invokes the devops_rdc.TransferPipelineOwner API synchronously

func (*Client) TransferPipelineOwnerWithCallback added in v1.61.598

func (client *Client) TransferPipelineOwnerWithCallback(request *TransferPipelineOwnerRequest, callback func(response *TransferPipelineOwnerResponse, err error)) <-chan int

TransferPipelineOwnerWithCallback invokes the devops_rdc.TransferPipelineOwner API asynchronously

func (*Client) TransferPipelineOwnerWithChan added in v1.61.598

func (client *Client) TransferPipelineOwnerWithChan(request *TransferPipelineOwnerRequest) (<-chan *TransferPipelineOwnerResponse, <-chan error)

TransferPipelineOwnerWithChan invokes the devops_rdc.TransferPipelineOwner API asynchronously

func (*Client) UpdateCommonGroup added in v1.61.723

func (client *Client) UpdateCommonGroup(request *UpdateCommonGroupRequest) (response *UpdateCommonGroupResponse, err error)

UpdateCommonGroup invokes the devops_rdc.UpdateCommonGroup API synchronously

func (*Client) UpdateCommonGroupWithCallback added in v1.61.723

func (client *Client) UpdateCommonGroupWithCallback(request *UpdateCommonGroupRequest, callback func(response *UpdateCommonGroupResponse, err error)) <-chan int

UpdateCommonGroupWithCallback invokes the devops_rdc.UpdateCommonGroup API asynchronously

func (*Client) UpdateCommonGroupWithChan added in v1.61.723

func (client *Client) UpdateCommonGroupWithChan(request *UpdateCommonGroupRequest) (<-chan *UpdateCommonGroupResponse, <-chan error)

UpdateCommonGroupWithChan invokes the devops_rdc.UpdateCommonGroup API asynchronously

func (*Client) UpdateDevopsProject added in v1.61.435

func (client *Client) UpdateDevopsProject(request *UpdateDevopsProjectRequest) (response *UpdateDevopsProjectResponse, err error)

UpdateDevopsProject invokes the devops_rdc.UpdateDevopsProject API synchronously

func (*Client) UpdateDevopsProjectSprint added in v1.61.435

func (client *Client) UpdateDevopsProjectSprint(request *UpdateDevopsProjectSprintRequest) (response *UpdateDevopsProjectSprintResponse, err error)

UpdateDevopsProjectSprint invokes the devops_rdc.UpdateDevopsProjectSprint API synchronously

func (*Client) UpdateDevopsProjectSprintWithCallback added in v1.61.435

func (client *Client) UpdateDevopsProjectSprintWithCallback(request *UpdateDevopsProjectSprintRequest, callback func(response *UpdateDevopsProjectSprintResponse, err error)) <-chan int

UpdateDevopsProjectSprintWithCallback invokes the devops_rdc.UpdateDevopsProjectSprint API asynchronously

func (*Client) UpdateDevopsProjectSprintWithChan added in v1.61.435

func (client *Client) UpdateDevopsProjectSprintWithChan(request *UpdateDevopsProjectSprintRequest) (<-chan *UpdateDevopsProjectSprintResponse, <-chan error)

UpdateDevopsProjectSprintWithChan invokes the devops_rdc.UpdateDevopsProjectSprint API asynchronously

func (*Client) UpdateDevopsProjectTask added in v1.61.435

func (client *Client) UpdateDevopsProjectTask(request *UpdateDevopsProjectTaskRequest) (response *UpdateDevopsProjectTaskResponse, err error)

UpdateDevopsProjectTask invokes the devops_rdc.UpdateDevopsProjectTask API synchronously

func (*Client) UpdateDevopsProjectTaskWithCallback added in v1.61.435

func (client *Client) UpdateDevopsProjectTaskWithCallback(request *UpdateDevopsProjectTaskRequest, callback func(response *UpdateDevopsProjectTaskResponse, err error)) <-chan int

UpdateDevopsProjectTaskWithCallback invokes the devops_rdc.UpdateDevopsProjectTask API asynchronously

func (*Client) UpdateDevopsProjectTaskWithChan added in v1.61.435

func (client *Client) UpdateDevopsProjectTaskWithChan(request *UpdateDevopsProjectTaskRequest) (<-chan *UpdateDevopsProjectTaskResponse, <-chan error)

UpdateDevopsProjectTaskWithChan invokes the devops_rdc.UpdateDevopsProjectTask API asynchronously

func (*Client) UpdateDevopsProjectWithCallback added in v1.61.435

func (client *Client) UpdateDevopsProjectWithCallback(request *UpdateDevopsProjectRequest, callback func(response *UpdateDevopsProjectResponse, err error)) <-chan int

UpdateDevopsProjectWithCallback invokes the devops_rdc.UpdateDevopsProject API asynchronously

func (*Client) UpdateDevopsProjectWithChan added in v1.61.435

func (client *Client) UpdateDevopsProjectWithChan(request *UpdateDevopsProjectRequest) (<-chan *UpdateDevopsProjectResponse, <-chan error)

UpdateDevopsProjectWithChan invokes the devops_rdc.UpdateDevopsProject API asynchronously

func (*Client) UpdatePipelineMember added in v1.61.598

func (client *Client) UpdatePipelineMember(request *UpdatePipelineMemberRequest) (response *UpdatePipelineMemberResponse, err error)

UpdatePipelineMember invokes the devops_rdc.UpdatePipelineMember API synchronously

func (*Client) UpdatePipelineMemberWithCallback added in v1.61.598

func (client *Client) UpdatePipelineMemberWithCallback(request *UpdatePipelineMemberRequest, callback func(response *UpdatePipelineMemberResponse, err error)) <-chan int

UpdatePipelineMemberWithCallback invokes the devops_rdc.UpdatePipelineMember API asynchronously

func (*Client) UpdatePipelineMemberWithChan added in v1.61.598

func (client *Client) UpdatePipelineMemberWithChan(request *UpdatePipelineMemberRequest) (<-chan *UpdatePipelineMemberResponse, <-chan error)

UpdatePipelineMemberWithChan invokes the devops_rdc.UpdatePipelineMember API asynchronously

func (*Client) UpdateTaskDetail added in v1.61.757

func (client *Client) UpdateTaskDetail(request *UpdateTaskDetailRequest) (response *UpdateTaskDetailResponse, err error)

UpdateTaskDetail invokes the devops_rdc.UpdateTaskDetail API synchronously

func (*Client) UpdateTaskDetailWithCallback added in v1.61.757

func (client *Client) UpdateTaskDetailWithCallback(request *UpdateTaskDetailRequest, callback func(response *UpdateTaskDetailResponse, err error)) <-chan int

UpdateTaskDetailWithCallback invokes the devops_rdc.UpdateTaskDetail API asynchronously

func (*Client) UpdateTaskDetailWithChan added in v1.61.757

func (client *Client) UpdateTaskDetailWithChan(request *UpdateTaskDetailRequest) (<-chan *UpdateTaskDetailResponse, <-chan error)

UpdateTaskDetailWithChan invokes the devops_rdc.UpdateTaskDetail API asynchronously

type CommonGroup added in v1.61.723

type CommonGroup struct {
	Pinyin        string `json:"Pinyin" xml:"Pinyin"`
	IsRoot        bool   `json:"IsRoot" xml:"IsRoot"`
	Pos           int    `json:"Pos" xml:"Pos"`
	ResourceCount int    `json:"ResourceCount" xml:"ResourceCount"`
	Name          string `json:"Name" xml:"Name"`
	CreatorId     string `json:"CreatorId" xml:"CreatorId"`
	SmartGroupId  string `json:"SmartGroupId" xml:"SmartGroupId"`
	ProjectId     string `json:"ProjectId" xml:"ProjectId"`
	Id            string `json:"id" xml:"id"`
}

CommonGroup is a nested struct in devops_rdc response

type Component added in v1.61.398

type Component struct {
	Name   string `json:"Name" xml:"Name"`
	JobId  int64  `json:"JobId" xml:"JobId"`
	Status string `json:"Status" xml:"Status"`
}

Component is a nested struct in devops_rdc response

type ComponentInGetPipelineInstanceGroupStatus added in v1.61.398

type ComponentInGetPipelineInstanceGroupStatus struct {
	Name   string `json:"Name" xml:"Name"`
	Status string `json:"Status" xml:"Status"`
	JobId  string `json:"JobId" xml:"JobId"`
}

ComponentInGetPipelineInstanceGroupStatus is a nested struct in devops_rdc response

type ComponentsInGetPipelineInstanceBuildNumberStatus added in v1.61.398

type ComponentsInGetPipelineInstanceBuildNumberStatus struct {
	Component []Component `json:"component" xml:"component"`
}

ComponentsInGetPipelineInstanceBuildNumberStatus is a nested struct in devops_rdc response

type ComponentsInGetPipelineInstanceGroupStatus added in v1.61.398

type ComponentsInGetPipelineInstanceGroupStatus struct {
	Component []ComponentInGetPipelineInstanceGroupStatus `json:"component" xml:"component"`
}

ComponentsInGetPipelineInstanceGroupStatus is a nested struct in devops_rdc response

type ComponentsInGetPipleineLatestInstanceStatus added in v1.61.398

type ComponentsInGetPipleineLatestInstanceStatus struct {
	Component []Component `json:"component" xml:"component"`
}

ComponentsInGetPipleineLatestInstanceStatus is a nested struct in devops_rdc response

type CreateCommonGroupRequest added in v1.61.723

type CreateCommonGroupRequest struct {
	*requests.RpcRequest
	SmartGroupId string `position:"Body" name:"SmartGroupId"`
	Name         string `position:"Body" name:"Name"`
	Description  string `position:"Body" name:"Description"`
	ProjectId    string `position:"Body" name:"ProjectId"`
	OrgId        string `position:"Body" name:"OrgId"`
}

CreateCommonGroupRequest is the request struct for api CreateCommonGroup

func CreateCreateCommonGroupRequest added in v1.61.723

func CreateCreateCommonGroupRequest() (request *CreateCommonGroupRequest)

CreateCreateCommonGroupRequest creates a request to invoke CreateCommonGroup API

type CreateCommonGroupResponse added in v1.61.723

type CreateCommonGroupResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

CreateCommonGroupResponse is the response struct for api CreateCommonGroup

func CreateCreateCommonGroupResponse added in v1.61.723

func CreateCreateCommonGroupResponse() (response *CreateCommonGroupResponse)

CreateCreateCommonGroupResponse creates a response to parse from CreateCommonGroup response

type CreateCredentialRequest

type CreateCredentialRequest struct {
	*requests.RpcRequest
	Type     string `position:"Body" name:"Type"`
	UserPk   string `position:"Body" name:"UserPk"`
	OrgId    string `position:"Body" name:"OrgId"`
	Password string `position:"Body" name:"Password"`
	Name     string `position:"Body" name:"Name"`
	UserName string `position:"Body" name:"UserName"`
}

CreateCredentialRequest is the request struct for api CreateCredential

func CreateCreateCredentialRequest

func CreateCreateCredentialRequest() (request *CreateCredentialRequest)

CreateCreateCredentialRequest creates a request to invoke CreateCredential API

type CreateCredentialResponse

type CreateCredentialResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       int64  `json:"Object" xml:"Object"`
}

CreateCredentialResponse is the response struct for api CreateCredential

func CreateCreateCredentialResponse

func CreateCreateCredentialResponse() (response *CreateCredentialResponse)

CreateCreateCredentialResponse creates a response to parse from CreateCredential response

type CreateDevopsOrganizationRequest added in v1.61.435

type CreateDevopsOrganizationRequest struct {
	*requests.RpcRequest
	OrgName            string           `position:"Body" name:"OrgName"`
	Source             string           `position:"Body" name:"Source"`
	RealPk             string           `position:"Body" name:"RealPk"`
	DesiredMemberCount requests.Integer `position:"Body" name:"DesiredMemberCount"`
}

CreateDevopsOrganizationRequest is the request struct for api CreateDevopsOrganization

func CreateCreateDevopsOrganizationRequest added in v1.61.435

func CreateCreateDevopsOrganizationRequest() (request *CreateDevopsOrganizationRequest)

CreateCreateDevopsOrganizationRequest creates a request to invoke CreateDevopsOrganization API

type CreateDevopsOrganizationResponse added in v1.61.435

type CreateDevopsOrganizationResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       string `json:"Object" xml:"Object"`
}

CreateDevopsOrganizationResponse is the response struct for api CreateDevopsOrganization

func CreateCreateDevopsOrganizationResponse added in v1.61.435

func CreateCreateDevopsOrganizationResponse() (response *CreateDevopsOrganizationResponse)

CreateCreateDevopsOrganizationResponse creates a response to parse from CreateDevopsOrganization response

type CreateDevopsProjectRequest added in v1.61.435

type CreateDevopsProjectRequest struct {
	*requests.RpcRequest
	Name        string `position:"Body" name:"Name"`
	Description string `position:"Body" name:"Description"`
	OrgId       string `position:"Body" name:"OrgId"`
}

CreateDevopsProjectRequest is the request struct for api CreateDevopsProject

func CreateCreateDevopsProjectRequest added in v1.61.435

func CreateCreateDevopsProjectRequest() (request *CreateDevopsProjectRequest)

CreateCreateDevopsProjectRequest creates a request to invoke CreateDevopsProject API

type CreateDevopsProjectResponse added in v1.61.435

type CreateDevopsProjectResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       string `json:"Object" xml:"Object"`
}

CreateDevopsProjectResponse is the response struct for api CreateDevopsProject

func CreateCreateDevopsProjectResponse added in v1.61.435

func CreateCreateDevopsProjectResponse() (response *CreateDevopsProjectResponse)

CreateCreateDevopsProjectResponse creates a response to parse from CreateDevopsProject response

type CreateDevopsProjectSprintRequest added in v1.61.435

type CreateDevopsProjectSprintRequest struct {
	*requests.RpcRequest
	ExecutorId  string `position:"Body" name:"ExecutorId"`
	Description string `position:"Body" name:"Description"`
	StartDate   string `position:"Body" name:"StartDate"`
	OrgId       string `position:"Body" name:"OrgId"`
	DueDate     string `position:"Body" name:"DueDate"`
	Name        string `position:"Body" name:"Name"`
	ProjectId   string `position:"Body" name:"ProjectId"`
}

CreateDevopsProjectSprintRequest is the request struct for api CreateDevopsProjectSprint

func CreateCreateDevopsProjectSprintRequest added in v1.61.435

func CreateCreateDevopsProjectSprintRequest() (request *CreateDevopsProjectSprintRequest)

CreateCreateDevopsProjectSprintRequest creates a request to invoke CreateDevopsProjectSprint API

type CreateDevopsProjectSprintResponse added in v1.61.435

type CreateDevopsProjectSprintResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

CreateDevopsProjectSprintResponse is the response struct for api CreateDevopsProjectSprint

func CreateCreateDevopsProjectSprintResponse added in v1.61.435

func CreateCreateDevopsProjectSprintResponse() (response *CreateDevopsProjectSprintResponse)

CreateCreateDevopsProjectSprintResponse creates a response to parse from CreateDevopsProjectSprint response

type CreateDevopsProjectTaskRequest added in v1.61.435

type CreateDevopsProjectTaskRequest struct {
	*requests.RpcRequest
	Note                  string           `position:"Body" name:"Note"`
	Visible               string           `position:"Body" name:"Visible"`
	ExecutorId            string           `position:"Body" name:"ExecutorId"`
	TaskFlowStatusId      string           `position:"Body" name:"TaskFlowStatusId"`
	StartDate             string           `position:"Body" name:"StartDate"`
	Priority              requests.Integer `position:"Body" name:"Priority"`
	ParentTaskId          string           `position:"Body" name:"ParentTaskId"`
	OrgId                 string           `position:"Body" name:"OrgId"`
	Content               string           `position:"Body" name:"Content"`
	SprintId              string           `position:"Body" name:"SprintId"`
	DueDate               string           `position:"Body" name:"DueDate"`
	ScenarioFieldConfigId string           `position:"Body" name:"ScenarioFieldConfigId"`
	ProjectId             string           `position:"Body" name:"ProjectId"`
	TaskListId            string           `position:"Body" name:"TaskListId"`
}

CreateDevopsProjectTaskRequest is the request struct for api CreateDevopsProjectTask

func CreateCreateDevopsProjectTaskRequest added in v1.61.435

func CreateCreateDevopsProjectTaskRequest() (request *CreateDevopsProjectTaskRequest)

CreateCreateDevopsProjectTaskRequest creates a request to invoke CreateDevopsProjectTask API

type CreateDevopsProjectTaskResponse added in v1.61.435

type CreateDevopsProjectTaskResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

CreateDevopsProjectTaskResponse is the response struct for api CreateDevopsProjectTask

func CreateCreateDevopsProjectTaskResponse added in v1.61.435

func CreateCreateDevopsProjectTaskResponse() (response *CreateDevopsProjectTaskResponse)

CreateCreateDevopsProjectTaskResponse creates a response to parse from CreateDevopsProjectTask response

type CreatePipelineRequest

type CreatePipelineRequest struct {
	*requests.RpcRequest
	Pipeline string `position:"Body" name:"Pipeline"`
	UserPk   string `position:"Body" name:"UserPk"`
	OrgId    string `position:"Body" name:"OrgId"`
}

CreatePipelineRequest is the request struct for api CreatePipeline

func CreateCreatePipelineRequest

func CreateCreatePipelineRequest() (request *CreatePipelineRequest)

CreateCreatePipelineRequest creates a request to invoke CreatePipeline API

type CreatePipelineResponse

type CreatePipelineResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       int64  `json:"Object" xml:"Object"`
}

CreatePipelineResponse is the response struct for api CreatePipeline

func CreateCreatePipelineResponse

func CreateCreatePipelineResponse() (response *CreatePipelineResponse)

CreateCreatePipelineResponse creates a response to parse from CreatePipeline response

type CreateServiceConnectionRequest

type CreateServiceConnectionRequest struct {
	*requests.RpcRequest
	ServiceConnectionType string `position:"Body" name:"ServiceConnectionType"`
	UserPk                string `position:"Body" name:"UserPk"`
	OrgId                 string `position:"Body" name:"OrgId"`
}

CreateServiceConnectionRequest is the request struct for api CreateServiceConnection

func CreateCreateServiceConnectionRequest

func CreateCreateServiceConnectionRequest() (request *CreateServiceConnectionRequest)

CreateCreateServiceConnectionRequest creates a request to invoke CreateServiceConnection API

type CreateServiceConnectionResponse

type CreateServiceConnectionResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       int64  `json:"Object" xml:"Object"`
}

CreateServiceConnectionResponse is the response struct for api CreateServiceConnection

func CreateCreateServiceConnectionResponse

func CreateCreateServiceConnectionResponse() (response *CreateServiceConnectionResponse)

CreateCreateServiceConnectionResponse creates a response to parse from CreateServiceConnection response

type Creator added in v1.61.723

type Creator struct {
	Name      string `json:"Name" xml:"Name"`
	Id        string `json:"Id" xml:"Id"`
	AvatarUrl string `json:"AvatarUrl" xml:"AvatarUrl"`
}

Creator is a nested struct in devops_rdc response

type CustomField added in v1.61.757

type CustomField struct {
	CustomFieldId string  `json:"CustomFieldId" xml:"CustomFieldId"`
	Type          string  `json:"Type" xml:"Type"`
	Subtype       string  `json:"Subtype" xml:"Subtype"`
	Name          string  `json:"Name" xml:"Name"`
	Values        []Value `json:"Values" xml:"Values"`
}

CustomField is a nested struct in devops_rdc response

type Customfield added in v1.61.723

type Customfield struct {
	CustomfieldId string      `json:"CustomfieldId" xml:"CustomfieldId"`
	Type          string      `json:"Type" xml:"Type"`
	Values        []string    `json:"Values" xml:"Values"`
	Value         []ValueInfo `json:"Value" xml:"Value"`
}

Customfield is a nested struct in devops_rdc response

type CustomfieldInGetTaskListFilter added in v1.61.723

type CustomfieldInGetTaskListFilter struct {
	CustomfieldId string      `json:"CustomfieldId" xml:"CustomfieldId"`
	Type          string      `json:"Type" xml:"Type"`
	Values        string      `json:"Values" xml:"Values"`
	Value         []ValueItem `json:"Value" xml:"Value"`
}

CustomfieldInGetTaskListFilter is a nested struct in devops_rdc response

type CustomfieldsInGetTaskDetailBase added in v1.61.723

type CustomfieldsInGetTaskDetailBase struct {
	Customfield []Customfield `json:"Customfield" xml:"Customfield"`
}

CustomfieldsInGetTaskDetailBase is a nested struct in devops_rdc response

type CustomfieldsInGetTaskListFilter added in v1.61.723

type CustomfieldsInGetTaskListFilter struct {
	Customfield []CustomfieldInGetTaskListFilter `json:"Customfield" xml:"Customfield"`
}

CustomfieldsInGetTaskListFilter is a nested struct in devops_rdc response

type Data added in v1.61.767

type Data struct {
	Total    int            `json:"Total" xml:"Total"`
	DataList []PipelineInst `json:"DataList" xml:"DataList"`
}

Data is a nested struct in devops_rdc response

type DataList added in v1.61.767

type DataList struct {
	PipelineInst []PipelineInst `json:"PipelineInst" xml:"PipelineInst"`
}

DataList is a nested struct in devops_rdc response

type DeleteCommonGroupRequest added in v1.61.723

type DeleteCommonGroupRequest struct {
	*requests.RpcRequest
	ProjectId     string `position:"Body" name:"ProjectId"`
	CommonGroupId string `position:"Body" name:"CommonGroupId"`
	OrgId         string `position:"Body" name:"OrgId"`
}

DeleteCommonGroupRequest is the request struct for api DeleteCommonGroup

func CreateDeleteCommonGroupRequest added in v1.61.723

func CreateDeleteCommonGroupRequest() (request *DeleteCommonGroupRequest)

CreateDeleteCommonGroupRequest creates a request to invoke DeleteCommonGroup API

type DeleteCommonGroupResponse added in v1.61.723

type DeleteCommonGroupResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

DeleteCommonGroupResponse is the response struct for api DeleteCommonGroup

func CreateDeleteCommonGroupResponse added in v1.61.723

func CreateDeleteCommonGroupResponse() (response *DeleteCommonGroupResponse)

CreateDeleteCommonGroupResponse creates a response to parse from DeleteCommonGroup response

type DeleteDevopsOrganizationMembersRequest added in v1.61.435

type DeleteDevopsOrganizationMembersRequest struct {
	*requests.RpcRequest
	RealPk string `position:"Body" name:"RealPk"`
	UserId string `position:"Body" name:"UserId"`
	OrgId  string `position:"Body" name:"OrgId"`
}

DeleteDevopsOrganizationMembersRequest is the request struct for api DeleteDevopsOrganizationMembers

func CreateDeleteDevopsOrganizationMembersRequest added in v1.61.435

func CreateDeleteDevopsOrganizationMembersRequest() (request *DeleteDevopsOrganizationMembersRequest)

CreateDeleteDevopsOrganizationMembersRequest creates a request to invoke DeleteDevopsOrganizationMembers API

type DeleteDevopsOrganizationMembersResponse added in v1.61.435

type DeleteDevopsOrganizationMembersResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       bool   `json:"Object" xml:"Object"`
}

DeleteDevopsOrganizationMembersResponse is the response struct for api DeleteDevopsOrganizationMembers

func CreateDeleteDevopsOrganizationMembersResponse added in v1.61.435

func CreateDeleteDevopsOrganizationMembersResponse() (response *DeleteDevopsOrganizationMembersResponse)

CreateDeleteDevopsOrganizationMembersResponse creates a response to parse from DeleteDevopsOrganizationMembers response

type DeleteDevopsOrganizationRequest added in v1.61.1035

type DeleteDevopsOrganizationRequest struct {
	*requests.RpcRequest
	OrgId string `position:"Body" name:"OrgId"`
}

DeleteDevopsOrganizationRequest is the request struct for api DeleteDevopsOrganization

func CreateDeleteDevopsOrganizationRequest added in v1.61.1035

func CreateDeleteDevopsOrganizationRequest() (request *DeleteDevopsOrganizationRequest)

CreateDeleteDevopsOrganizationRequest creates a request to invoke DeleteDevopsOrganization API

type DeleteDevopsOrganizationResponse added in v1.61.1035

type DeleteDevopsOrganizationResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       string `json:"Object" xml:"Object"`
}

DeleteDevopsOrganizationResponse is the response struct for api DeleteDevopsOrganization

func CreateDeleteDevopsOrganizationResponse added in v1.61.1035

func CreateDeleteDevopsOrganizationResponse() (response *DeleteDevopsOrganizationResponse)

CreateDeleteDevopsOrganizationResponse creates a response to parse from DeleteDevopsOrganization response

type DeleteDevopsProjectMembersRequest added in v1.61.435

type DeleteDevopsProjectMembersRequest struct {
	*requests.RpcRequest
	UserIds   string `position:"Body" name:"UserIds"`
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

DeleteDevopsProjectMembersRequest is the request struct for api DeleteDevopsProjectMembers

func CreateDeleteDevopsProjectMembersRequest added in v1.61.435

func CreateDeleteDevopsProjectMembersRequest() (request *DeleteDevopsProjectMembersRequest)

CreateDeleteDevopsProjectMembersRequest creates a request to invoke DeleteDevopsProjectMembers API

type DeleteDevopsProjectMembersResponse added in v1.61.435

type DeleteDevopsProjectMembersResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	Object     bool   `json:"Object" xml:"Object"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
}

DeleteDevopsProjectMembersResponse is the response struct for api DeleteDevopsProjectMembers

func CreateDeleteDevopsProjectMembersResponse added in v1.61.435

func CreateDeleteDevopsProjectMembersResponse() (response *DeleteDevopsProjectMembersResponse)

CreateDeleteDevopsProjectMembersResponse creates a response to parse from DeleteDevopsProjectMembers response

type DeleteDevopsProjectRequest added in v1.61.435

type DeleteDevopsProjectRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

DeleteDevopsProjectRequest is the request struct for api DeleteDevopsProject

func CreateDeleteDevopsProjectRequest added in v1.61.435

func CreateDeleteDevopsProjectRequest() (request *DeleteDevopsProjectRequest)

CreateDeleteDevopsProjectRequest creates a request to invoke DeleteDevopsProject API

type DeleteDevopsProjectResponse added in v1.61.435

type DeleteDevopsProjectResponse struct {
	*responses.BaseResponse
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Object       string `json:"Object" xml:"Object"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Success      bool   `json:"Success" xml:"Success"`
}

DeleteDevopsProjectResponse is the response struct for api DeleteDevopsProject

func CreateDeleteDevopsProjectResponse added in v1.61.435

func CreateDeleteDevopsProjectResponse() (response *DeleteDevopsProjectResponse)

CreateDeleteDevopsProjectResponse creates a response to parse from DeleteDevopsProject response

type DeleteDevopsProjectSprintRequest added in v1.61.435

type DeleteDevopsProjectSprintRequest struct {
	*requests.RpcRequest
	SprintId string `position:"Body" name:"SprintId"`
	OrgId    string `position:"Body" name:"OrgId"`
}

DeleteDevopsProjectSprintRequest is the request struct for api DeleteDevopsProjectSprint

func CreateDeleteDevopsProjectSprintRequest added in v1.61.435

func CreateDeleteDevopsProjectSprintRequest() (request *DeleteDevopsProjectSprintRequest)

CreateDeleteDevopsProjectSprintRequest creates a request to invoke DeleteDevopsProjectSprint API

type DeleteDevopsProjectSprintResponse added in v1.61.435

type DeleteDevopsProjectSprintResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     bool   `json:"Object" xml:"Object"`
}

DeleteDevopsProjectSprintResponse is the response struct for api DeleteDevopsProjectSprint

func CreateDeleteDevopsProjectSprintResponse added in v1.61.435

func CreateDeleteDevopsProjectSprintResponse() (response *DeleteDevopsProjectSprintResponse)

CreateDeleteDevopsProjectSprintResponse creates a response to parse from DeleteDevopsProjectSprint response

type DeleteDevopsProjectTaskRequest added in v1.61.435

type DeleteDevopsProjectTaskRequest struct {
	*requests.RpcRequest
	OrgId  string `position:"Body" name:"OrgId"`
	TaskId string `position:"Body" name:"TaskId"`
}

DeleteDevopsProjectTaskRequest is the request struct for api DeleteDevopsProjectTask

func CreateDeleteDevopsProjectTaskRequest added in v1.61.435

func CreateDeleteDevopsProjectTaskRequest() (request *DeleteDevopsProjectTaskRequest)

CreateDeleteDevopsProjectTaskRequest creates a request to invoke DeleteDevopsProjectTask API

type DeleteDevopsProjectTaskResponse added in v1.61.435

type DeleteDevopsProjectTaskResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     bool   `json:"Object" xml:"Object"`
}

DeleteDevopsProjectTaskResponse is the response struct for api DeleteDevopsProjectTask

func CreateDeleteDevopsProjectTaskResponse added in v1.61.435

func CreateDeleteDevopsProjectTaskResponse() (response *DeleteDevopsProjectTaskResponse)

CreateDeleteDevopsProjectTaskResponse creates a response to parse from DeleteDevopsProjectTask response

type DeletePipelineMemberRequest added in v1.61.598

type DeletePipelineMemberRequest struct {
	*requests.RpcRequest
	UserPk     string           `position:"Body" name:"UserPk"`
	UserId     string           `position:"Body" name:"UserId"`
	OrgId      string           `position:"Query" name:"OrgId"`
	PipelineId requests.Integer `position:"Query" name:"PipelineId"`
}

DeletePipelineMemberRequest is the request struct for api DeletePipelineMember

func CreateDeletePipelineMemberRequest added in v1.61.598

func CreateDeletePipelineMemberRequest() (request *DeletePipelineMemberRequest)

CreateDeletePipelineMemberRequest creates a request to invoke DeletePipelineMember API

type DeletePipelineMemberResponse added in v1.61.598

type DeletePipelineMemberResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       bool   `json:"Object" xml:"Object"`
}

DeletePipelineMemberResponse is the response struct for api DeletePipelineMember

func CreateDeletePipelineMemberResponse added in v1.61.598

func CreateDeletePipelineMemberResponse() (response *DeletePipelineMemberResponse)

CreateDeletePipelineMemberResponse creates a response to parse from DeletePipelineMember response

type DivisionsInGetTaskDetailBase added in v1.61.723

type DivisionsInGetTaskDetailBase struct {
	Division []string `json:"Division" xml:"Division"`
}

DivisionsInGetTaskDetailBase is a nested struct in devops_rdc response

type DivisionsInGetTaskListFilter added in v1.61.723

type DivisionsInGetTaskListFilter struct {
	Division []string `json:"Division" xml:"Division"`
}

DivisionsInGetTaskListFilter is a nested struct in devops_rdc response

type DockerImages

type DockerImages struct {
	DockerImages []string `json:"DockerImages" xml:"DockerImages"`
}

DockerImages is a nested struct in devops_rdc response

type ExecutePipelineRequest

type ExecutePipelineRequest struct {
	*requests.RpcRequest
	Parameters string           `position:"Body" name:"Parameters"`
	UserPk     string           `position:"Body" name:"UserPk"`
	OrgId      string           `position:"Body" name:"OrgId"`
	PipelineId requests.Integer `position:"Body" name:"PipelineId"`
}

ExecutePipelineRequest is the request struct for api ExecutePipeline

func CreateExecutePipelineRequest

func CreateExecutePipelineRequest() (request *ExecutePipelineRequest)

CreateExecutePipelineRequest creates a request to invoke ExecutePipeline API

type ExecutePipelineResponse

type ExecutePipelineResponse struct {
	*responses.BaseResponse
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       int64  `json:"Object" xml:"Object"`
}

ExecutePipelineResponse is the response struct for api ExecutePipeline

func CreateExecutePipelineResponse

func CreateExecutePipelineResponse() (response *ExecutePipelineResponse)

CreateExecutePipelineResponse creates a response to parse from ExecutePipeline response

type Executor added in v1.61.723

type Executor struct {
	Name      string `json:"Name" xml:"Name"`
	Id        string `json:"Id" xml:"Id"`
	AvatarUrl string `json:"AvatarUrl" xml:"AvatarUrl"`
}

Executor is a nested struct in devops_rdc response

type FlowInstance added in v1.61.767

type FlowInstance struct {
	Creator          string                 `json:"Creator" xml:"Creator"`
	ModifyTime       int64                  `json:"ModifyTime" xml:"ModifyTime"`
	SystemId         string                 `json:"SystemId" xml:"SystemId"`
	StageTopo        string                 `json:"StageTopo" xml:"StageTopo"`
	Modifier         string                 `json:"Modifier" xml:"Modifier"`
	AutoDrivenStatus bool                   `json:"AutoDrivenStatus" xml:"AutoDrivenStatus"`
	CreateTime       int64                  `json:"CreateTime" xml:"CreateTime"`
	ResultStatus     string                 `json:"ResultStatus" xml:"ResultStatus"`
	RunningStatus    string                 `json:"RunningStatus" xml:"RunningStatus"`
	SystemCode       string                 `json:"SystemCode" xml:"SystemCode"`
	Stages           map[string]interface{} `json:"Stages" xml:"Stages"`
	StatusName       string                 `json:"StatusName" xml:"StatusName"`
	Id               int                    `json:"Id" xml:"Id"`
	Status           string                 `json:"Status" xml:"Status"`
	Result           Result                 `json:"Result" xml:"Result"`
	Groups           []Group                `json:"Groups" xml:"Groups"`
}

FlowInstance is a nested struct in devops_rdc response

type GetDevopsOrganizationMembersRequest added in v1.61.435

type GetDevopsOrganizationMembersRequest struct {
	*requests.RpcRequest
	OrgId string `position:"Body" name:"OrgId"`
}

GetDevopsOrganizationMembersRequest is the request struct for api GetDevopsOrganizationMembers

func CreateGetDevopsOrganizationMembersRequest added in v1.61.435

func CreateGetDevopsOrganizationMembersRequest() (request *GetDevopsOrganizationMembersRequest)

CreateGetDevopsOrganizationMembersRequest creates a request to invoke GetDevopsOrganizationMembers API

type GetDevopsOrganizationMembersResponse added in v1.61.435

type GetDevopsOrganizationMembersResponse struct {
	*responses.BaseResponse
	Successful bool     `json:"Successful" xml:"Successful"`
	ErrorCode  string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string   `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string   `json:"RequestId" xml:"RequestId"`
	Object     []Member `json:"Object" xml:"Object"`
}

GetDevopsOrganizationMembersResponse is the response struct for api GetDevopsOrganizationMembers

func CreateGetDevopsOrganizationMembersResponse added in v1.61.435

func CreateGetDevopsOrganizationMembersResponse() (response *GetDevopsOrganizationMembersResponse)

CreateGetDevopsOrganizationMembersResponse creates a response to parse from GetDevopsOrganizationMembers response

type GetDevopsProjectInfoRequest added in v1.61.435

type GetDevopsProjectInfoRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

GetDevopsProjectInfoRequest is the request struct for api GetDevopsProjectInfo

func CreateGetDevopsProjectInfoRequest added in v1.61.435

func CreateGetDevopsProjectInfoRequest() (request *GetDevopsProjectInfoRequest)

CreateGetDevopsProjectInfoRequest creates a request to invoke GetDevopsProjectInfo API

type GetDevopsProjectInfoResponse added in v1.61.435

type GetDevopsProjectInfoResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

GetDevopsProjectInfoResponse is the response struct for api GetDevopsProjectInfo

func CreateGetDevopsProjectInfoResponse added in v1.61.435

func CreateGetDevopsProjectInfoResponse() (response *GetDevopsProjectInfoResponse)

CreateGetDevopsProjectInfoResponse creates a response to parse from GetDevopsProjectInfo response

type GetDevopsProjectMembersRequest added in v1.61.435

type GetDevopsProjectMembersRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

GetDevopsProjectMembersRequest is the request struct for api GetDevopsProjectMembers

func CreateGetDevopsProjectMembersRequest added in v1.61.435

func CreateGetDevopsProjectMembersRequest() (request *GetDevopsProjectMembersRequest)

CreateGetDevopsProjectMembersRequest creates a request to invoke GetDevopsProjectMembers API

type GetDevopsProjectMembersResponse added in v1.61.435

type GetDevopsProjectMembersResponse struct {
	*responses.BaseResponse
	Successful bool     `json:"Successful" xml:"Successful"`
	ErrorCode  string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string   `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string   `json:"RequestId" xml:"RequestId"`
	Object     []Member `json:"Object" xml:"Object"`
}

GetDevopsProjectMembersResponse is the response struct for api GetDevopsProjectMembers

func CreateGetDevopsProjectMembersResponse added in v1.61.435

func CreateGetDevopsProjectMembersResponse() (response *GetDevopsProjectMembersResponse)

CreateGetDevopsProjectMembersResponse creates a response to parse from GetDevopsProjectMembers response

type GetDevopsProjectSprintInfoRequest added in v1.61.435

type GetDevopsProjectSprintInfoRequest struct {
	*requests.RpcRequest
	SprintId string `position:"Body" name:"SprintId"`
	OrgId    string `position:"Body" name:"OrgId"`
}

GetDevopsProjectSprintInfoRequest is the request struct for api GetDevopsProjectSprintInfo

func CreateGetDevopsProjectSprintInfoRequest added in v1.61.435

func CreateGetDevopsProjectSprintInfoRequest() (request *GetDevopsProjectSprintInfoRequest)

CreateGetDevopsProjectSprintInfoRequest creates a request to invoke GetDevopsProjectSprintInfo API

type GetDevopsProjectSprintInfoResponse added in v1.61.435

type GetDevopsProjectSprintInfoResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

GetDevopsProjectSprintInfoResponse is the response struct for api GetDevopsProjectSprintInfo

func CreateGetDevopsProjectSprintInfoResponse added in v1.61.435

func CreateGetDevopsProjectSprintInfoResponse() (response *GetDevopsProjectSprintInfoResponse)

CreateGetDevopsProjectSprintInfoResponse creates a response to parse from GetDevopsProjectSprintInfo response

type GetDevopsProjectTaskInfoRequest added in v1.61.435

type GetDevopsProjectTaskInfoRequest struct {
	*requests.RpcRequest
	OrgId  string `position:"Body" name:"OrgId"`
	TaskId string `position:"Body" name:"TaskId"`
}

GetDevopsProjectTaskInfoRequest is the request struct for api GetDevopsProjectTaskInfo

func CreateGetDevopsProjectTaskInfoRequest added in v1.61.435

func CreateGetDevopsProjectTaskInfoRequest() (request *GetDevopsProjectTaskInfoRequest)

CreateGetDevopsProjectTaskInfoRequest creates a request to invoke GetDevopsProjectTaskInfo API

type GetDevopsProjectTaskInfoResponse added in v1.61.435

type GetDevopsProjectTaskInfoResponse struct {
	*responses.BaseResponse
	Successful bool                             `json:"Successful" xml:"Successful"`
	ErrorCode  string                           `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string                           `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string                           `json:"RequestId" xml:"RequestId"`
	Object     ObjectInGetDevopsProjectTaskInfo `json:"Object" xml:"Object"`
}

GetDevopsProjectTaskInfoResponse is the response struct for api GetDevopsProjectTaskInfo

func CreateGetDevopsProjectTaskInfoResponse added in v1.61.435

func CreateGetDevopsProjectTaskInfoResponse() (response *GetDevopsProjectTaskInfoResponse)

CreateGetDevopsProjectTaskInfoResponse creates a response to parse from GetDevopsProjectTaskInfo response

type GetLastWorkspaceRequest added in v1.61.873

type GetLastWorkspaceRequest struct {
	*requests.RpcRequest
	RealPk string `position:"Body" name:"RealPk"`
	OrgId  string `position:"Body" name:"OrgId"`
}

GetLastWorkspaceRequest is the request struct for api GetLastWorkspace

func CreateGetLastWorkspaceRequest added in v1.61.873

func CreateGetLastWorkspaceRequest() (request *GetLastWorkspaceRequest)

CreateGetLastWorkspaceRequest creates a request to invoke GetLastWorkspace API

type GetLastWorkspaceResponse added in v1.61.873

type GetLastWorkspaceResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       string `json:"Object" xml:"Object"`
}

GetLastWorkspaceResponse is the response struct for api GetLastWorkspace

func CreateGetLastWorkspaceResponse added in v1.61.873

func CreateGetLastWorkspaceResponse() (response *GetLastWorkspaceResponse)

CreateGetLastWorkspaceResponse creates a response to parse from GetLastWorkspace response

type GetPipelineInstHistoryRequest added in v1.61.767

type GetPipelineInstHistoryRequest struct {
	*requests.RpcRequest
	EndTime    string           `position:"Body" name:"EndTime"`
	StartTime  string           `position:"Body" name:"StartTime"`
	UserPk     string           `position:"Body" name:"UserPk"`
	OrgId      string           `position:"Body" name:"OrgId"`
	PipelineId requests.Integer `position:"Body" name:"PipelineId"`
	PageSize   requests.Integer `position:"Body" name:"PageSize"`
	PageStart  requests.Integer `position:"Body" name:"PageStart"`
}

GetPipelineInstHistoryRequest is the request struct for api GetPipelineInstHistory

func CreateGetPipelineInstHistoryRequest added in v1.61.767

func CreateGetPipelineInstHistoryRequest() (request *GetPipelineInstHistoryRequest)

CreateGetPipelineInstHistoryRequest creates a request to invoke GetPipelineInstHistory API

type GetPipelineInstHistoryResponse added in v1.61.767

type GetPipelineInstHistoryResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Data         Data   `json:"Data" xml:"Data"`
}

GetPipelineInstHistoryResponse is the response struct for api GetPipelineInstHistory

func CreateGetPipelineInstHistoryResponse added in v1.61.767

func CreateGetPipelineInstHistoryResponse() (response *GetPipelineInstHistoryResponse)

CreateGetPipelineInstHistoryResponse creates a response to parse from GetPipelineInstHistory response

type GetPipelineInstanceBuildNumberStatusRequest added in v1.61.398

type GetPipelineInstanceBuildNumberStatusRequest struct {
	*requests.RpcRequest
	BuildNum   requests.Integer `position:"Body" name:"BuildNum"`
	UserPk     string           `position:"Body" name:"UserPk"`
	OrgId      string           `position:"Query" name:"OrgId"`
	PipelineId requests.Integer `position:"Query" name:"PipelineId"`
}

GetPipelineInstanceBuildNumberStatusRequest is the request struct for api GetPipelineInstanceBuildNumberStatus

func CreateGetPipelineInstanceBuildNumberStatusRequest added in v1.61.398

func CreateGetPipelineInstanceBuildNumberStatusRequest() (request *GetPipelineInstanceBuildNumberStatusRequest)

CreateGetPipelineInstanceBuildNumberStatusRequest creates a request to invoke GetPipelineInstanceBuildNumberStatus API

type GetPipelineInstanceBuildNumberStatusResponse added in v1.61.398

type GetPipelineInstanceBuildNumberStatusResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       Object `json:"Object" xml:"Object"`
}

GetPipelineInstanceBuildNumberStatusResponse is the response struct for api GetPipelineInstanceBuildNumberStatus

func CreateGetPipelineInstanceBuildNumberStatusResponse added in v1.61.398

func CreateGetPipelineInstanceBuildNumberStatusResponse() (response *GetPipelineInstanceBuildNumberStatusResponse)

CreateGetPipelineInstanceBuildNumberStatusResponse creates a response to parse from GetPipelineInstanceBuildNumberStatus response

type GetPipelineInstanceGroupStatusRequest added in v1.61.398

type GetPipelineInstanceGroupStatusRequest struct {
	*requests.RpcRequest
	FlowInstanceId requests.Integer `position:"Body" name:"FlowInstanceId"`
	UserPk         string           `position:"Body" name:"UserPk"`
	OrgId          string           `position:"Query" name:"OrgId"`
	PipelineId     requests.Integer `position:"Query" name:"PipelineId"`
}

GetPipelineInstanceGroupStatusRequest is the request struct for api GetPipelineInstanceGroupStatus

func CreateGetPipelineInstanceGroupStatusRequest added in v1.61.398

func CreateGetPipelineInstanceGroupStatusRequest() (request *GetPipelineInstanceGroupStatusRequest)

CreateGetPipelineInstanceGroupStatusRequest creates a request to invoke GetPipelineInstanceGroupStatus API

type GetPipelineInstanceGroupStatusResponse added in v1.61.398

type GetPipelineInstanceGroupStatusResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       Object `json:"Object" xml:"Object"`
}

GetPipelineInstanceGroupStatusResponse is the response struct for api GetPipelineInstanceGroupStatus

func CreateGetPipelineInstanceGroupStatusResponse added in v1.61.398

func CreateGetPipelineInstanceGroupStatusResponse() (response *GetPipelineInstanceGroupStatusResponse)

CreateGetPipelineInstanceGroupStatusResponse creates a response to parse from GetPipelineInstanceGroupStatus response

type GetPipelineInstanceInfoRequest

type GetPipelineInstanceInfoRequest struct {
	*requests.RpcRequest
	FlowInstanceId string           `position:"Body" name:"FlowInstanceId"`
	UserPk         string           `position:"Body" name:"UserPk"`
	OrgId          string           `position:"Body" name:"OrgId"`
	PipelineId     requests.Integer `position:"Body" name:"PipelineId"`
}

GetPipelineInstanceInfoRequest is the request struct for api GetPipelineInstanceInfo

func CreateGetPipelineInstanceInfoRequest

func CreateGetPipelineInstanceInfoRequest() (request *GetPipelineInstanceInfoRequest)

CreateGetPipelineInstanceInfoRequest creates a request to invoke GetPipelineInstanceInfo API

type GetPipelineInstanceInfoResponse

type GetPipelineInstanceInfoResponse struct {
	*responses.BaseResponse
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       Object `json:"Object" xml:"Object"`
}

GetPipelineInstanceInfoResponse is the response struct for api GetPipelineInstanceInfo

func CreateGetPipelineInstanceInfoResponse

func CreateGetPipelineInstanceInfoResponse() (response *GetPipelineInstanceInfoResponse)

CreateGetPipelineInstanceInfoResponse creates a response to parse from GetPipelineInstanceInfo response

type GetPipelineInstanceStatusRequest

type GetPipelineInstanceStatusRequest struct {
	*requests.RpcRequest
	FlowInstanceId requests.Integer `position:"Query" name:"FlowInstanceId"`
	UserPk         string           `position:"Body" name:"UserPk"`
	OrgId          string           `position:"Query" name:"OrgId"`
	PipelineId     requests.Integer `position:"Query" name:"PipelineId"`
}

GetPipelineInstanceStatusRequest is the request struct for api GetPipelineInstanceStatus

func CreateGetPipelineInstanceStatusRequest

func CreateGetPipelineInstanceStatusRequest() (request *GetPipelineInstanceStatusRequest)

CreateGetPipelineInstanceStatusRequest creates a request to invoke GetPipelineInstanceStatus API

type GetPipelineInstanceStatusResponse

type GetPipelineInstanceStatusResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Object       string `json:"Object" xml:"Object"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
}

GetPipelineInstanceStatusResponse is the response struct for api GetPipelineInstanceStatus

func CreateGetPipelineInstanceStatusResponse

func CreateGetPipelineInstanceStatusResponse() (response *GetPipelineInstanceStatusResponse)

CreateGetPipelineInstanceStatusResponse creates a response to parse from GetPipelineInstanceStatus response

type GetPipelineLogRequest added in v1.61.398

type GetPipelineLogRequest struct {
	*requests.RpcRequest
	UserPk     string           `position:"Body" name:"UserPk"`
	OrgId      string           `position:"Body" name:"OrgId"`
	PipelineId requests.Integer `position:"Body" name:"PipelineId"`
	JobId      requests.Integer `position:"Body" name:"JobId"`
}

GetPipelineLogRequest is the request struct for api GetPipelineLog

func CreateGetPipelineLogRequest added in v1.61.398

func CreateGetPipelineLogRequest() (request *GetPipelineLogRequest)

CreateGetPipelineLogRequest creates a request to invoke GetPipelineLog API

type GetPipelineLogResponse added in v1.61.398

type GetPipelineLogResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       []Job  `json:"Object" xml:"Object"`
}

GetPipelineLogResponse is the response struct for api GetPipelineLog

func CreateGetPipelineLogResponse added in v1.61.398

func CreateGetPipelineLogResponse() (response *GetPipelineLogResponse)

CreateGetPipelineLogResponse creates a response to parse from GetPipelineLog response

type GetPipelineStepLogRequest added in v1.61.767

type GetPipelineStepLogRequest struct {
	*requests.RpcRequest
	Offset     requests.Integer `position:"Body" name:"Offset"`
	UserPk     string           `position:"Body" name:"UserPk"`
	OrgId      string           `position:"Body" name:"OrgId"`
	PipelineId requests.Integer `position:"Body" name:"PipelineId"`
	JobId      requests.Integer `position:"Body" name:"JobId"`
	StepIndex  string           `position:"Body" name:"StepIndex"`
	Limit      requests.Integer `position:"Body" name:"Limit"`
}

GetPipelineStepLogRequest is the request struct for api GetPipelineStepLog

func CreateGetPipelineStepLogRequest added in v1.61.767

func CreateGetPipelineStepLogRequest() (request *GetPipelineStepLogRequest)

CreateGetPipelineStepLogRequest creates a request to invoke GetPipelineStepLog API

type GetPipelineStepLogResponse added in v1.61.767

type GetPipelineStepLogResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       Object `json:"Object" xml:"Object"`
}

GetPipelineStepLogResponse is the response struct for api GetPipelineStepLog

func CreateGetPipelineStepLogResponse added in v1.61.767

func CreateGetPipelineStepLogResponse() (response *GetPipelineStepLogResponse)

CreateGetPipelineStepLogResponse creates a response to parse from GetPipelineStepLog response

type GetPipleineLatestInstanceStatusRequest added in v1.61.398

type GetPipleineLatestInstanceStatusRequest struct {
	*requests.RpcRequest
	UserPk     string           `position:"Body" name:"UserPk"`
	OrgId      string           `position:"Query" name:"OrgId"`
	PipelineId requests.Integer `position:"Query" name:"PipelineId"`
}

GetPipleineLatestInstanceStatusRequest is the request struct for api GetPipleineLatestInstanceStatus

func CreateGetPipleineLatestInstanceStatusRequest added in v1.61.398

func CreateGetPipleineLatestInstanceStatusRequest() (request *GetPipleineLatestInstanceStatusRequest)

CreateGetPipleineLatestInstanceStatusRequest creates a request to invoke GetPipleineLatestInstanceStatus API

type GetPipleineLatestInstanceStatusResponse added in v1.61.398

type GetPipleineLatestInstanceStatusResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       Object `json:"Object" xml:"Object"`
}

GetPipleineLatestInstanceStatusResponse is the response struct for api GetPipleineLatestInstanceStatus

func CreateGetPipleineLatestInstanceStatusResponse added in v1.61.398

func CreateGetPipleineLatestInstanceStatusResponse() (response *GetPipleineLatestInstanceStatusResponse)

CreateGetPipleineLatestInstanceStatusResponse creates a response to parse from GetPipleineLatestInstanceStatus response

type GetProjectOptionRequest added in v1.61.723

type GetProjectOptionRequest struct {
	*requests.RpcRequest
	Query     string `position:"Body" name:"Query"`
	Type      string `position:"Body" name:"Type"`
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

GetProjectOptionRequest is the request struct for api GetProjectOption

func CreateGetProjectOptionRequest added in v1.61.723

func CreateGetProjectOptionRequest() (request *GetProjectOptionRequest)

CreateGetProjectOptionRequest creates a request to invoke GetProjectOption API

type GetProjectOptionResponse added in v1.61.723

type GetProjectOptionResponse struct {
	*responses.BaseResponse
	Successful bool     `json:"Successful" xml:"Successful"`
	ErrorCode  string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string   `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string   `json:"RequestId" xml:"RequestId"`
	Object     []Option `json:"Object" xml:"Object"`
}

GetProjectOptionResponse is the response struct for api GetProjectOption

func CreateGetProjectOptionResponse added in v1.61.723

func CreateGetProjectOptionResponse() (response *GetProjectOptionResponse)

CreateGetProjectOptionResponse creates a response to parse from GetProjectOption response

type GetTaskDetailActivityRequest added in v1.61.723

type GetTaskDetailActivityRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
	TaskId    string `position:"Body" name:"TaskId"`
}

GetTaskDetailActivityRequest is the request struct for api GetTaskDetailActivity

func CreateGetTaskDetailActivityRequest added in v1.61.723

func CreateGetTaskDetailActivityRequest() (request *GetTaskDetailActivityRequest)

CreateGetTaskDetailActivityRequest creates a request to invoke GetTaskDetailActivity API

type GetTaskDetailActivityResponse added in v1.61.723

type GetTaskDetailActivityResponse struct {
	*responses.BaseResponse
	Successful     bool       `json:"Successful" xml:"Successful"`
	ErrorCode      string     `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg       string     `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId      string     `json:"RequestId" xml:"RequestId"`
	HttpStatusCode int        `json:"HttpStatusCode" xml:"HttpStatusCode"`
	Object         []Activity `json:"Object" xml:"Object"`
}

GetTaskDetailActivityResponse is the response struct for api GetTaskDetailActivity

func CreateGetTaskDetailActivityResponse added in v1.61.723

func CreateGetTaskDetailActivityResponse() (response *GetTaskDetailActivityResponse)

CreateGetTaskDetailActivityResponse creates a response to parse from GetTaskDetailActivity response

type GetTaskDetailBaseRequest added in v1.61.723

type GetTaskDetailBaseRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
	TaskId    string `position:"Body" name:"TaskId"`
}

GetTaskDetailBaseRequest is the request struct for api GetTaskDetailBase

func CreateGetTaskDetailBaseRequest added in v1.61.723

func CreateGetTaskDetailBaseRequest() (request *GetTaskDetailBaseRequest)

CreateGetTaskDetailBaseRequest creates a request to invoke GetTaskDetailBase API

type GetTaskDetailBaseResponse added in v1.61.723

type GetTaskDetailBaseResponse struct {
	*responses.BaseResponse
	Successful bool                      `json:"Successful" xml:"Successful"`
	ErrorCode  string                    `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string                    `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string                    `json:"RequestId" xml:"RequestId"`
	Object     ObjectInGetTaskDetailBase `json:"Object" xml:"Object"`
}

GetTaskDetailBaseResponse is the response struct for api GetTaskDetailBase

func CreateGetTaskDetailBaseResponse added in v1.61.723

func CreateGetTaskDetailBaseResponse() (response *GetTaskDetailBaseResponse)

CreateGetTaskDetailBaseResponse creates a response to parse from GetTaskDetailBase response

type GetTaskListFilterRequest added in v1.61.723

type GetTaskListFilterRequest struct {
	*requests.RpcRequest
	InvolveMembers        string           `position:"Body" name:"InvolveMembers"`
	ExecutorId            string           `position:"Body" name:"ExecutorId"`
	OrderCondition        string           `position:"Body" name:"OrderCondition"`
	SprintId              string           `position:"Body" name:"SprintId"`
	Extra                 string           `position:"Body" name:"Extra"`
	PageSize              requests.Integer `position:"Body" name:"PageSize"`
	ScenarioFieldConfigId string           `position:"Body" name:"ScenarioFieldConfigId"`
	IsDone                requests.Boolean `position:"Body" name:"IsDone"`
	ObjectType            string           `position:"Body" name:"ObjectType"`
	ProjectId             string           `position:"Body" name:"ProjectId"`
	PageToken             string           `position:"Body" name:"PageToken"`
	Order                 string           `position:"Body" name:"Order"`
	TagId                 string           `position:"Body" name:"TagId"`
	TaskFlowStatusId      string           `position:"Body" name:"TaskFlowStatusId"`
	DueDateStart          string           `position:"Body" name:"DueDateStart"`
	CreatorId             string           `position:"Body" name:"CreatorId"`
	Priority              string           `position:"Body" name:"Priority"`
	DueDateEnd            string           `position:"Body" name:"DueDateEnd"`
	OrgId                 string           `position:"Body" name:"OrgId"`
	Name                  string           `position:"Body" name:"Name"`
}

GetTaskListFilterRequest is the request struct for api GetTaskListFilter

func CreateGetTaskListFilterRequest added in v1.61.723

func CreateGetTaskListFilterRequest() (request *GetTaskListFilterRequest)

CreateGetTaskListFilterRequest creates a request to invoke GetTaskListFilter API

type GetTaskListFilterResponse added in v1.61.723

type GetTaskListFilterResponse struct {
	*responses.BaseResponse
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	Successful string `json:"Successful" xml:"Successful"`
	Object     Object `json:"Object" xml:"Object"`
}

GetTaskListFilterResponse is the response struct for api GetTaskListFilter

func CreateGetTaskListFilterResponse added in v1.61.723

func CreateGetTaskListFilterResponse() (response *GetTaskListFilterResponse)

CreateGetTaskListFilterResponse creates a response to parse from GetTaskListFilter response

type GetUserByAliyunUidRequest added in v1.61.435

type GetUserByAliyunUidRequest struct {
	*requests.RpcRequest
	UserPk string `position:"Body" name:"UserPk"`
	OrgId  string `position:"Body" name:"OrgId"`
}

GetUserByAliyunUidRequest is the request struct for api GetUserByAliyunUid

func CreateGetUserByAliyunUidRequest added in v1.61.435

func CreateGetUserByAliyunUidRequest() (request *GetUserByAliyunUidRequest)

CreateGetUserByAliyunUidRequest creates a request to invoke GetUserByAliyunUid API

type GetUserByAliyunUidResponse added in v1.61.435

type GetUserByAliyunUidResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

GetUserByAliyunUidResponse is the response struct for api GetUserByAliyunUid

func CreateGetUserByAliyunUidResponse added in v1.61.435

func CreateGetUserByAliyunUidResponse() (response *GetUserByAliyunUidResponse)

CreateGetUserByAliyunUidResponse creates a response to parse from GetUserByAliyunUid response

type GetUserNameRequest added in v1.61.723

type GetUserNameRequest struct {
	*requests.RpcRequest
	UserId string `position:"Body" name:"UserId"`
	OrgId  string `position:"Body" name:"OrgId"`
}

GetUserNameRequest is the request struct for api GetUserName

func CreateGetUserNameRequest added in v1.61.723

func CreateGetUserNameRequest() (request *GetUserNameRequest)

CreateGetUserNameRequest creates a request to invoke GetUserName API

type GetUserNameResponse added in v1.61.723

type GetUserNameResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     string `json:"Object" xml:"Object"`
}

GetUserNameResponse is the response struct for api GetUserName

func CreateGetUserNameResponse added in v1.61.723

func CreateGetUserNameResponse() (response *GetUserNameResponse)

CreateGetUserNameResponse creates a response to parse from GetUserName response

type Group added in v1.61.398

type Group struct {
	Name         string  `json:"Name" xml:"Name"`
	ModifyTime   int64   `json:"ModifyTime" xml:"ModifyTime"`
	Id           int     `json:"Id" xml:"Id"`
	ResultStatus string  `json:"ResultStatus" xml:"ResultStatus"`
	FlowInstId   int     `json:"FlowInstId" xml:"FlowInstId"`
	IdExtent     int     `json:"IdExtent" xml:"IdExtent"`
	CreateTime   int64   `json:"CreateTime" xml:"CreateTime"`
	EndTime      int64   `json:"EndTime" xml:"EndTime"`
	StartTime    int64   `json:"StartTime" xml:"StartTime"`
	Modifier     string  `json:"Modifier" xml:"Modifier"`
	Creator      string  `json:"Creator" xml:"Creator"`
	Status       string  `json:"Status" xml:"Status"`
	DeleteStatus string  `json:"DeleteStatus" xml:"DeleteStatus"`
	Stages       []Stage `json:"Stages" xml:"Stages"`
}

Group is a nested struct in devops_rdc response

type GroupsInGetPipelineInstHistory added in v1.61.767

type GroupsInGetPipelineInstHistory struct {
	Group []Group `json:"Group" xml:"Group"`
}

GroupsInGetPipelineInstHistory is a nested struct in devops_rdc response

type GroupsInGetPipelineInstanceBuildNumberStatus added in v1.61.398

type GroupsInGetPipelineInstanceBuildNumberStatus struct {
	Group []Group `json:"group" xml:"group"`
}

GroupsInGetPipelineInstanceBuildNumberStatus is a nested struct in devops_rdc response

type GroupsInGetPipelineInstanceGroupStatus added in v1.61.398

type GroupsInGetPipelineInstanceGroupStatus struct {
	Group []Group `json:"group" xml:"group"`
}

GroupsInGetPipelineInstanceGroupStatus is a nested struct in devops_rdc response

type GroupsInGetPipleineLatestInstanceStatus added in v1.61.398

type GroupsInGetPipleineLatestInstanceStatus struct {
	Group []Group `json:"group" xml:"group"`
}

GroupsInGetPipleineLatestInstanceStatus is a nested struct in devops_rdc response

type InsertDevopsUserRequest added in v1.61.435

type InsertDevopsUserRequest struct {
	*requests.RpcRequest
	Phone    string `position:"Body" name:"Phone"`
	UserPk   string `position:"Body" name:"UserPk"`
	Email    string `position:"Body" name:"Email"`
	UserName string `position:"Body" name:"UserName"`
}

InsertDevopsUserRequest is the request struct for api InsertDevopsUser

func CreateInsertDevopsUserRequest added in v1.61.435

func CreateInsertDevopsUserRequest() (request *InsertDevopsUserRequest)

CreateInsertDevopsUserRequest creates a request to invoke InsertDevopsUser API

type InsertDevopsUserResponse added in v1.61.435

type InsertDevopsUserResponse struct {
	*responses.BaseResponse
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       string `json:"Object" xml:"Object"`
}

InsertDevopsUserResponse is the response struct for api InsertDevopsUser

func CreateInsertDevopsUserResponse added in v1.61.435

func CreateInsertDevopsUserResponse() (response *InsertDevopsUserResponse)

CreateInsertDevopsUserResponse creates a response to parse from InsertDevopsUser response

type InsertPipelineMemberRequest added in v1.61.598

type InsertPipelineMemberRequest struct {
	*requests.RpcRequest
	RoleName   string           `position:"Body" name:"RoleName"`
	UserPk     string           `position:"Body" name:"UserPk"`
	UserId     string           `position:"Body" name:"UserId"`
	OrgId      string           `position:"Query" name:"OrgId"`
	PipelineId requests.Integer `position:"Query" name:"PipelineId"`
}

InsertPipelineMemberRequest is the request struct for api InsertPipelineMember

func CreateInsertPipelineMemberRequest added in v1.61.598

func CreateInsertPipelineMemberRequest() (request *InsertPipelineMemberRequest)

CreateInsertPipelineMemberRequest creates a request to invoke InsertPipelineMember API

type InsertPipelineMemberResponse added in v1.61.598

type InsertPipelineMemberResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       bool   `json:"Object" xml:"Object"`
}

InsertPipelineMemberResponse is the response struct for api InsertPipelineMember

func CreateInsertPipelineMemberResponse added in v1.61.598

func CreateInsertPipelineMemberResponse() (response *InsertPipelineMemberResponse)

CreateInsertPipelineMemberResponse creates a response to parse from InsertPipelineMember response

type InsertProjectMembersRequest added in v1.61.435

type InsertProjectMembersRequest struct {
	*requests.RpcRequest
	Members   string `position:"Body" name:"Members"`
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

InsertProjectMembersRequest is the request struct for api InsertProjectMembers

func CreateInsertProjectMembersRequest added in v1.61.435

func CreateInsertProjectMembersRequest() (request *InsertProjectMembersRequest)

CreateInsertProjectMembersRequest creates a request to invoke InsertProjectMembers API

type InsertProjectMembersResponse added in v1.61.435

type InsertProjectMembersResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	Object     bool   `json:"Object" xml:"Object"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
}

InsertProjectMembersResponse is the response struct for api InsertProjectMembers

func CreateInsertProjectMembersResponse added in v1.61.435

func CreateInsertProjectMembersResponse() (response *InsertProjectMembersResponse)

CreateInsertProjectMembersResponse creates a response to parse from InsertProjectMembers response

type InvolveMembersInGetDevopsProjectTaskInfo added in v1.61.723

type InvolveMembersInGetDevopsProjectTaskInfo struct {
	InvolveMember []string `json:"InvolveMember" xml:"InvolveMember"`
}

InvolveMembersInGetDevopsProjectTaskInfo is a nested struct in devops_rdc response

type InvolveMembersInGetTaskDetailBase added in v1.61.723

type InvolveMembersInGetTaskDetailBase struct {
	InvolveMember []string `json:"InvolveMember" xml:"InvolveMember"`
}

InvolveMembersInGetTaskDetailBase is a nested struct in devops_rdc response

type InvolveMembersInGetTaskListFilter added in v1.61.723

type InvolveMembersInGetTaskListFilter struct {
	InvolveMember []string `json:"InvolveMember" xml:"InvolveMember"`
}

InvolveMembersInGetTaskListFilter is a nested struct in devops_rdc response

type Involver added in v1.61.723

type Involver struct {
	Name string `json:"Name" xml:"Name"`
	Id   string `json:"Id" xml:"Id"`
}

Involver is a nested struct in devops_rdc response

type Involvers added in v1.61.723

type Involvers struct {
	Involver []Involver `json:"Involver" xml:"Involver"`
}

Involvers is a nested struct in devops_rdc response

type Job added in v1.61.398

type Job struct {
	JobId             int64              `json:"JobId" xml:"JobId"`
	ActionName        string             `json:"ActionName" xml:"ActionName"`
	StartTime         string             `json:"StartTime" xml:"StartTime"`
	BuildProcessNodes []BuildProcessNode `json:"BuildProcessNodes" xml:"BuildProcessNodes"`
}

Job is a nested struct in devops_rdc response

type LabelsInGetTaskDetailBase added in v1.61.723

type LabelsInGetTaskDetailBase struct {
	Label []string `json:"Label" xml:"Label"`
}

LabelsInGetTaskDetailBase is a nested struct in devops_rdc response

type LabelsInGetTaskListFilter added in v1.61.723

type LabelsInGetTaskListFilter struct {
	Label []string `json:"Label" xml:"Label"`
}

LabelsInGetTaskListFilter is a nested struct in devops_rdc response

type ListCommonGroupRequest added in v1.61.723

type ListCommonGroupRequest struct {
	*requests.RpcRequest
	All          requests.Boolean `position:"Body" name:"All"`
	SmartGroupId string           `position:"Body" name:"SmartGroupId"`
	ProjectId    string           `position:"Body" name:"ProjectId"`
	OrgId        string           `position:"Body" name:"OrgId"`
}

ListCommonGroupRequest is the request struct for api ListCommonGroup

func CreateListCommonGroupRequest added in v1.61.723

func CreateListCommonGroupRequest() (request *ListCommonGroupRequest)

CreateListCommonGroupRequest creates a request to invoke ListCommonGroup API

type ListCommonGroupResponse added in v1.61.723

type ListCommonGroupResponse struct {
	*responses.BaseResponse
	Successful bool          `json:"Successful" xml:"Successful"`
	ErrorCode  string        `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string        `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string        `json:"RequestId" xml:"RequestId"`
	Object     []CommonGroup `json:"Object" xml:"Object"`
}

ListCommonGroupResponse is the response struct for api ListCommonGroup

func CreateListCommonGroupResponse added in v1.61.723

func CreateListCommonGroupResponse() (response *ListCommonGroupResponse)

CreateListCommonGroupResponse creates a response to parse from ListCommonGroup response

type ListCredentialsRequest

type ListCredentialsRequest struct {
	*requests.RpcRequest
	UserPk string `position:"Body" name:"UserPk"`
	OrgId  string `position:"Body" name:"OrgId"`
}

ListCredentialsRequest is the request struct for api ListCredentials

func CreateListCredentialsRequest

func CreateListCredentialsRequest() (request *ListCredentialsRequest)

CreateListCredentialsRequest creates a request to invoke ListCredentials API

type ListCredentialsResponse

type ListCredentialsResponse struct {
	*responses.BaseResponse
	RequestId    string                   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string                   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool                     `json:"Success" xml:"Success"`
	Object       []map[string]interface{} `json:"Object" xml:"Object"`
}

ListCredentialsResponse is the response struct for api ListCredentials

func CreateListCredentialsResponse

func CreateListCredentialsResponse() (response *ListCredentialsResponse)

CreateListCredentialsResponse creates a response to parse from ListCredentials response

type ListDevopsProjectSprintsRequest added in v1.61.435

type ListDevopsProjectSprintsRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

ListDevopsProjectSprintsRequest is the request struct for api ListDevopsProjectSprints

func CreateListDevopsProjectSprintsRequest added in v1.61.435

func CreateListDevopsProjectSprintsRequest() (request *ListDevopsProjectSprintsRequest)

CreateListDevopsProjectSprintsRequest creates a request to invoke ListDevopsProjectSprints API

type ListDevopsProjectSprintsResponse added in v1.61.435

type ListDevopsProjectSprintsResponse struct {
	*responses.BaseResponse
	Successful bool     `json:"Successful" xml:"Successful"`
	ErrorCode  string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string   `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string   `json:"RequestId" xml:"RequestId"`
	Object     []Sprint `json:"Object" xml:"Object"`
}

ListDevopsProjectSprintsResponse is the response struct for api ListDevopsProjectSprints

func CreateListDevopsProjectSprintsResponse added in v1.61.435

func CreateListDevopsProjectSprintsResponse() (response *ListDevopsProjectSprintsResponse)

CreateListDevopsProjectSprintsResponse creates a response to parse from ListDevopsProjectSprints response

type ListDevopsProjectTaskFlowRequest added in v1.61.435

type ListDevopsProjectTaskFlowRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

ListDevopsProjectTaskFlowRequest is the request struct for api ListDevopsProjectTaskFlow

func CreateListDevopsProjectTaskFlowRequest added in v1.61.435

func CreateListDevopsProjectTaskFlowRequest() (request *ListDevopsProjectTaskFlowRequest)

CreateListDevopsProjectTaskFlowRequest creates a request to invoke ListDevopsProjectTaskFlow API

type ListDevopsProjectTaskFlowResponse added in v1.61.435

type ListDevopsProjectTaskFlowResponse struct {
	*responses.BaseResponse
	Successful bool       `json:"Successful" xml:"Successful"`
	ErrorCode  string     `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string     `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string     `json:"RequestId" xml:"RequestId"`
	Object     []Taskflow `json:"Object" xml:"Object"`
}

ListDevopsProjectTaskFlowResponse is the response struct for api ListDevopsProjectTaskFlow

func CreateListDevopsProjectTaskFlowResponse added in v1.61.435

func CreateListDevopsProjectTaskFlowResponse() (response *ListDevopsProjectTaskFlowResponse)

CreateListDevopsProjectTaskFlowResponse creates a response to parse from ListDevopsProjectTaskFlow response

type ListDevopsProjectTaskFlowStatusRequest added in v1.61.435

type ListDevopsProjectTaskFlowStatusRequest struct {
	*requests.RpcRequest
	TaskFlowId string `position:"Body" name:"TaskFlowId"`
	OrgId      string `position:"Body" name:"OrgId"`
}

ListDevopsProjectTaskFlowStatusRequest is the request struct for api ListDevopsProjectTaskFlowStatus

func CreateListDevopsProjectTaskFlowStatusRequest added in v1.61.435

func CreateListDevopsProjectTaskFlowStatusRequest() (request *ListDevopsProjectTaskFlowStatusRequest)

CreateListDevopsProjectTaskFlowStatusRequest creates a request to invoke ListDevopsProjectTaskFlowStatus API

type ListDevopsProjectTaskFlowStatusResponse added in v1.61.435

type ListDevopsProjectTaskFlowStatusResponse struct {
	*responses.BaseResponse
	Successful bool             `json:"Successful" xml:"Successful"`
	ErrorCode  string           `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string           `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string           `json:"RequestId" xml:"RequestId"`
	Object     []TaskflowStatus `json:"Object" xml:"Object"`
}

ListDevopsProjectTaskFlowStatusResponse is the response struct for api ListDevopsProjectTaskFlowStatus

func CreateListDevopsProjectTaskFlowStatusResponse added in v1.61.435

func CreateListDevopsProjectTaskFlowStatusResponse() (response *ListDevopsProjectTaskFlowStatusResponse)

CreateListDevopsProjectTaskFlowStatusResponse creates a response to parse from ListDevopsProjectTaskFlowStatus response

type ListDevopsProjectTaskListRequest added in v1.61.700

type ListDevopsProjectTaskListRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

ListDevopsProjectTaskListRequest is the request struct for api ListDevopsProjectTaskList

func CreateListDevopsProjectTaskListRequest added in v1.61.700

func CreateListDevopsProjectTaskListRequest() (request *ListDevopsProjectTaskListRequest)

CreateListDevopsProjectTaskListRequest creates a request to invoke ListDevopsProjectTaskList API

type ListDevopsProjectTaskListResponse added in v1.61.700

type ListDevopsProjectTaskListResponse struct {
	*responses.BaseResponse
	Successful bool                              `json:"Successful" xml:"Successful"`
	ErrorCode  string                            `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string                            `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string                            `json:"RequestId" xml:"RequestId"`
	Object     ObjectInListDevopsProjectTaskList `json:"Object" xml:"Object"`
}

ListDevopsProjectTaskListResponse is the response struct for api ListDevopsProjectTaskList

func CreateListDevopsProjectTaskListResponse added in v1.61.700

func CreateListDevopsProjectTaskListResponse() (response *ListDevopsProjectTaskListResponse)

CreateListDevopsProjectTaskListResponse creates a response to parse from ListDevopsProjectTaskList response

type ListDevopsProjectTasksRequest added in v1.61.435

type ListDevopsProjectTasksRequest struct {
	*requests.RpcRequest
	ProjectIds string `position:"Body" name:"ProjectIds"`
	OrgId      string `position:"Body" name:"OrgId"`
}

ListDevopsProjectTasksRequest is the request struct for api ListDevopsProjectTasks

func CreateListDevopsProjectTasksRequest added in v1.61.435

func CreateListDevopsProjectTasksRequest() (request *ListDevopsProjectTasksRequest)

CreateListDevopsProjectTasksRequest creates a request to invoke ListDevopsProjectTasks API

type ListDevopsProjectTasksResponse added in v1.61.435

type ListDevopsProjectTasksResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     []Task `json:"Object" xml:"Object"`
}

ListDevopsProjectTasksResponse is the response struct for api ListDevopsProjectTasks

func CreateListDevopsProjectTasksResponse added in v1.61.435

func CreateListDevopsProjectTasksResponse() (response *ListDevopsProjectTasksResponse)

CreateListDevopsProjectTasksResponse creates a response to parse from ListDevopsProjectTasks response

type ListDevopsScenarioFieldConfigRequest added in v1.61.435

type ListDevopsScenarioFieldConfigRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

ListDevopsScenarioFieldConfigRequest is the request struct for api ListDevopsScenarioFieldConfig

func CreateListDevopsScenarioFieldConfigRequest added in v1.61.435

func CreateListDevopsScenarioFieldConfigRequest() (request *ListDevopsScenarioFieldConfigRequest)

CreateListDevopsScenarioFieldConfigRequest creates a request to invoke ListDevopsScenarioFieldConfig API

type ListDevopsScenarioFieldConfigResponse added in v1.61.435

type ListDevopsScenarioFieldConfigResponse struct {
	*responses.BaseResponse
	Successful bool                  `json:"Successful" xml:"Successful"`
	ErrorCode  string                `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string                `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string                `json:"RequestId" xml:"RequestId"`
	Object     []ScenarioFieldConfig `json:"Object" xml:"Object"`
}

ListDevopsScenarioFieldConfigResponse is the response struct for api ListDevopsScenarioFieldConfig

func CreateListDevopsScenarioFieldConfigResponse added in v1.61.435

func CreateListDevopsScenarioFieldConfigResponse() (response *ListDevopsScenarioFieldConfigResponse)

CreateListDevopsScenarioFieldConfigResponse creates a response to parse from ListDevopsScenarioFieldConfig response

type ListPipelinesRequest

type ListPipelinesRequest struct {
	*requests.RpcRequest
	PipelineName     string           `position:"Body" name:"PipelineName"`
	ResultStatusList string           `position:"Body" name:"ResultStatusList"`
	Creators         string           `position:"Body" name:"Creators"`
	ExecuteEndTime   string           `position:"Body" name:"ExecuteEndTime"`
	UserPk           string           `position:"Body" name:"UserPk"`
	OrgId            string           `position:"Query" name:"OrgId"`
	CreateStartTime  string           `position:"Body" name:"CreateStartTime"`
	Operators        string           `position:"Body" name:"Operators"`
	PageSize         requests.Integer `position:"Body" name:"PageSize"`
	ExecuteStartTime string           `position:"Body" name:"ExecuteStartTime"`
	PageStart        requests.Integer `position:"Body" name:"PageStart"`
	CreateEndTime    string           `position:"Body" name:"CreateEndTime"`
}

ListPipelinesRequest is the request struct for api ListPipelines

func CreateListPipelinesRequest

func CreateListPipelinesRequest() (request *ListPipelinesRequest)

CreateListPipelinesRequest creates a request to invoke ListPipelines API

type ListPipelinesResponse

type ListPipelinesResponse struct {
	*responses.BaseResponse
	Success      bool                   `json:"Success" xml:"Success"`
	ErrorCode    string                 `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                 `json:"ErrorMessage" xml:"ErrorMessage"`
	Object       map[string]interface{} `json:"Object" xml:"Object"`
	RequestId    string                 `json:"RequestId" xml:"RequestId"`
}

ListPipelinesResponse is the response struct for api ListPipelines

func CreateListPipelinesResponse

func CreateListPipelinesResponse() (response *ListPipelinesResponse)

CreateListPipelinesResponse creates a response to parse from ListPipelines response

type ListProjectCustomFieldsRequest added in v1.61.757

type ListProjectCustomFieldsRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

ListProjectCustomFieldsRequest is the request struct for api ListProjectCustomFields

func CreateListProjectCustomFieldsRequest added in v1.61.757

func CreateListProjectCustomFieldsRequest() (request *ListProjectCustomFieldsRequest)

CreateListProjectCustomFieldsRequest creates a request to invoke ListProjectCustomFields API

type ListProjectCustomFieldsResponse added in v1.61.757

type ListProjectCustomFieldsResponse struct {
	*responses.BaseResponse
	Successful bool          `json:"Successful" xml:"Successful"`
	ErrorCode  string        `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string        `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string        `json:"RequestId" xml:"RequestId"`
	Object     []CustomField `json:"Object" xml:"Object"`
}

ListProjectCustomFieldsResponse is the response struct for api ListProjectCustomFields

func CreateListProjectCustomFieldsResponse added in v1.61.757

func CreateListProjectCustomFieldsResponse() (response *ListProjectCustomFieldsResponse)

CreateListProjectCustomFieldsResponse creates a response to parse from ListProjectCustomFields response

type ListServiceConnectionsRequest

type ListServiceConnectionsRequest struct {
	*requests.RpcRequest
	ScType string `position:"Body" name:"ScType"`
	UserPk string `position:"Body" name:"UserPk"`
	OrgId  string `position:"Body" name:"OrgId"`
}

ListServiceConnectionsRequest is the request struct for api ListServiceConnections

func CreateListServiceConnectionsRequest

func CreateListServiceConnectionsRequest() (request *ListServiceConnectionsRequest)

CreateListServiceConnectionsRequest creates a request to invoke ListServiceConnections API

type ListServiceConnectionsResponse

type ListServiceConnectionsResponse struct {
	*responses.BaseResponse
	RequestId    string                   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string                   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool                     `json:"Success" xml:"Success"`
	Object       []map[string]interface{} `json:"Object" xml:"Object"`
}

ListServiceConnectionsResponse is the response struct for api ListServiceConnections

func CreateListServiceConnectionsResponse

func CreateListServiceConnectionsResponse() (response *ListServiceConnectionsResponse)

CreateListServiceConnectionsResponse creates a response to parse from ListServiceConnections response

type ListSmartGroupRequest added in v1.61.723

type ListSmartGroupRequest struct {
	*requests.RpcRequest
	ProjectId string `position:"Body" name:"ProjectId"`
	OrgId     string `position:"Body" name:"OrgId"`
}

ListSmartGroupRequest is the request struct for api ListSmartGroup

func CreateListSmartGroupRequest added in v1.61.723

func CreateListSmartGroupRequest() (request *ListSmartGroupRequest)

CreateListSmartGroupRequest creates a request to invoke ListSmartGroup API

type ListSmartGroupResponse added in v1.61.723

type ListSmartGroupResponse struct {
	*responses.BaseResponse
	Successful bool         `json:"Successful" xml:"Successful"`
	ErrorCode  string       `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string       `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string       `json:"RequestId" xml:"RequestId"`
	Object     []SmartGroup `json:"Object" xml:"Object"`
}

ListSmartGroupResponse is the response struct for api ListSmartGroup

func CreateListSmartGroupResponse added in v1.61.723

func CreateListSmartGroupResponse() (response *ListSmartGroupResponse)

CreateListSmartGroupResponse creates a response to parse from ListSmartGroup response

type ListUserOrganizationRequest added in v1.61.552

type ListUserOrganizationRequest struct {
	*requests.RpcRequest
	RealPk string `position:"Body" name:"RealPk"`
}

ListUserOrganizationRequest is the request struct for api ListUserOrganization

func CreateListUserOrganizationRequest added in v1.61.552

func CreateListUserOrganizationRequest() (request *ListUserOrganizationRequest)

CreateListUserOrganizationRequest creates a request to invoke ListUserOrganization API

type ListUserOrganizationResponse added in v1.61.552

type ListUserOrganizationResponse struct {
	*responses.BaseResponse
	RequestId    string         `json:"RequestId" xml:"RequestId"`
	Success      bool           `json:"Success" xml:"Success"`
	ErrorCode    string         `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string         `json:"ErrorMessage" xml:"ErrorMessage"`
	Object       []Organization `json:"Object" xml:"Object"`
}

ListUserOrganizationResponse is the response struct for api ListUserOrganization

func CreateListUserOrganizationResponse added in v1.61.552

func CreateListUserOrganizationResponse() (response *ListUserOrganizationResponse)

CreateListUserOrganizationResponse creates a response to parse from ListUserOrganization response

type Member added in v1.61.435

type Member struct {
	Name      string `json:"Name" xml:"Name"`
	Email     string `json:"Email" xml:"Email"`
	UserId    string `json:"UserId" xml:"UserId"`
	MemberId  string `json:"MemberId" xml:"MemberId"`
	Role      int    `json:"Role" xml:"Role"`
	Phone     string `json:"Phone" xml:"Phone"`
	AvatarUrl string `json:"AvatarUrl" xml:"AvatarUrl"`
}

Member is a nested struct in devops_rdc response

type MemberRoles added in v1.61.723

type MemberRoles struct {
	MemberRole []string `json:"MemberRole" xml:"MemberRole"`
}

MemberRoles is a nested struct in devops_rdc response

type MembersInGetTaskDetailBase added in v1.61.723

type MembersInGetTaskDetailBase struct {
	Member []string `json:"Member" xml:"Member"`
}

MembersInGetTaskDetailBase is a nested struct in devops_rdc response

type MembersInGetTaskListFilter added in v1.61.723

type MembersInGetTaskListFilter struct {
	Member []string `json:"Member" xml:"Member"`
}

MembersInGetTaskListFilter is a nested struct in devops_rdc response

type Object

type Object struct {
	StoryPoint            string   `json:"StoryPoint" xml:"StoryPoint"`
	EndTime               int64    `json:"EndTime" xml:"EndTime"`
	Source                string   `json:"Source" xml:"Source"`
	AvatarUrl             string   `json:"AvatarUrl" xml:"AvatarUrl"`
	TaskflowstatusId      string   `json:"TaskflowstatusId" xml:"TaskflowstatusId"`
	Pos                   int      `json:"Pos" xml:"Pos"`
	RootCollectionId      string   `json:"RootCollectionId" xml:"RootCollectionId"`
	StartTime             int64    `json:"StartTime" xml:"StartTime"`
	Content               string   `json:"Content" xml:"Content"`
	IsTemplate            bool     `json:"IsTemplate" xml:"IsTemplate"`
	ProjectId             string   `json:"ProjectId" xml:"ProjectId"`
	IsDone                bool     `json:"IsDone" xml:"IsDone"`
	Id                    string   `json:"Id" xml:"Id"`
	OrganizationId        string   `json:"OrganizationId" xml:"OrganizationId"`
	EndDate               string   `json:"EndDate" xml:"EndDate"`
	Accomplished          string   `json:"Accomplished" xml:"Accomplished"`
	Email                 string   `json:"Email" xml:"Email"`
	AliyunPk              string   `json:"AliyunPk" xml:"AliyunPk"`
	UniqueIdPrefix        string   `json:"UniqueIdPrefix" xml:"UniqueIdPrefix"`
	Note                  string   `json:"Note" xml:"Note"`
	StartDate             string   `json:"StartDate" xml:"StartDate"`
	Customfields          string   `json:"Customfields" xml:"Customfields"`
	Visible               string   `json:"Visible" xml:"Visible"`
	IsArchived            bool     `json:"IsArchived" xml:"IsArchived"`
	IsDeleted             bool     `json:"IsDeleted" xml:"IsDeleted"`
	IsSuspended           bool     `json:"IsSuspended" xml:"IsSuspended"`
	UniqueId              int      `json:"UniqueId" xml:"UniqueId"`
	Status                string   `json:"Status" xml:"Status"`
	TaskType              string   `json:"TaskType" xml:"TaskType"`
	Py                    string   `json:"Py" xml:"Py"`
	More                  bool     `json:"More" xml:"More"`
	Pinyin                string   `json:"Pinyin" xml:"Pinyin"`
	TotalSize             int      `json:"TotalSize" xml:"TotalSize"`
	ModifierId            string   `json:"ModifierId" xml:"ModifierId"`
	Visibility            string   `json:"Visibility" xml:"Visibility"`
	Name                  string   `json:"Name" xml:"Name"`
	Category              string   `json:"Category" xml:"Category"`
	Created               string   `json:"Created" xml:"Created"`
	EmployeeId            string   `json:"EmployeeId" xml:"EmployeeId"`
	ExecutorId            string   `json:"ExecutorId" xml:"ExecutorId"`
	DefaultCollectionId   string   `json:"DefaultCollectionId" xml:"DefaultCollectionId"`
	NormalType            string   `json:"NormalType" xml:"NormalType"`
	NextPageToken         string   `json:"NextPageToken" xml:"NextPageToken"`
	Executor              string   `json:"Executor" xml:"Executor"`
	SourceType            string   `json:"SourceType" xml:"SourceType"`
	SortMethod            string   `json:"SortMethod" xml:"SortMethod"`
	CreatorId             string   `json:"CreatorId" xml:"CreatorId"`
	DefaultRoleId         string   `json:"DefaultRoleId" xml:"DefaultRoleId"`
	Description           string   `json:"Description" xml:"Description"`
	Phone                 string   `json:"Phone" xml:"Phone"`
	SprintId              string   `json:"SprintId" xml:"SprintId"`
	Priority              int      `json:"Priority" xml:"Priority"`
	Updated               string   `json:"Updated" xml:"Updated"`
	TasklistId            string   `json:"TasklistId" xml:"TasklistId"`
	AncestorIds           string   `json:"AncestorIds" xml:"AncestorIds"`
	SourceId              string   `json:"SourceId" xml:"SourceId"`
	NextTaskUniqueId      int      `json:"NextTaskUniqueId" xml:"NextTaskUniqueId"`
	Logs                  string   `json:"Logs" xml:"Logs"`
	Last                  int      `json:"Last" xml:"Last"`
	ScenarioFieldConfigId string   `json:"ScenarioFieldConfigId" xml:"ScenarioFieldConfigId"`
	Sources               string   `json:"Sources" xml:"Sources"`
	DueDate               string   `json:"DueDate" xml:"DueDate"`
	Rating                int      `json:"Rating" xml:"Rating"`
	PackageDownloadUrls   []string `json:"PackageDownloadUrls" xml:"PackageDownloadUrls"`
	DockerImages          []string `json:"DockerImages" xml:"DockerImages"`
	PlanToDo              PlanToDo `json:"PlanToDo" xml:"PlanToDo"`
	Groups                []Group  `json:"Groups" xml:"Groups"`
	Result                []Task   `json:"Result" xml:"Result"`
}

Object is a nested struct in devops_rdc response

type ObjectInGetDevopsOrganizationMembers added in v1.61.435

type ObjectInGetDevopsOrganizationMembers struct {
	Member []Member `json:"member" xml:"member"`
}

ObjectInGetDevopsOrganizationMembers is a nested struct in devops_rdc response

type ObjectInGetDevopsProjectMembers added in v1.61.435

type ObjectInGetDevopsProjectMembers struct {
	Member []Member `json:"Member" xml:"Member"`
}

ObjectInGetDevopsProjectMembers is a nested struct in devops_rdc response

type ObjectInGetDevopsProjectTaskInfo added in v1.61.435

type ObjectInGetDevopsProjectTaskInfo struct {
	TasklistId       string   `json:"TasklistId" xml:"TasklistId"`
	TaskflowstatusId string   `json:"TaskflowstatusId" xml:"TaskflowstatusId"`
	TaskType         string   `json:"TaskType" xml:"TaskType"`
	IsDeleted        bool     `json:"IsDeleted" xml:"IsDeleted"`
	CreatorId        string   `json:"CreatorId" xml:"CreatorId"`
	IsTopInProject   bool     `json:"IsTopInProject" xml:"IsTopInProject"`
	ExecutorId       string   `json:"ExecutorId" xml:"ExecutorId"`
	StoryPoint       string   `json:"StoryPoint" xml:"StoryPoint"`
	Created          string   `json:"Created" xml:"Created"`
	OrganizationId   string   `json:"OrganizationId" xml:"OrganizationId"`
	IsDone           bool     `json:"IsDone" xml:"IsDone"`
	Id               string   `json:"Id" xml:"Id"`
	Updated          string   `json:"Updated" xml:"Updated"`
	SprintId         string   `json:"SprintId" xml:"SprintId"`
	ProjectId        string   `json:"ProjectId" xml:"ProjectId"`
	Content          string   `json:"Content" xml:"Content"`
	Note             string   `json:"Note" xml:"Note"`
	DueDate          string   `json:"DueDate" xml:"DueDate"`
	StartDate        string   `json:"StartDate" xml:"StartDate"`
	Visible          string   `json:"Visible" xml:"Visible"`
	Priority         string   `json:"Priority" xml:"Priority"`
	InvolveMembers   []string `json:"InvolveMembers" xml:"InvolveMembers"`
}

ObjectInGetDevopsProjectTaskInfo is a nested struct in devops_rdc response

type ObjectInGetPipelineLog added in v1.61.398

type ObjectInGetPipelineLog struct {
	Job []Job `json:"job" xml:"job"`
}

ObjectInGetPipelineLog is a nested struct in devops_rdc response

type ObjectInGetProjectOption added in v1.61.723

type ObjectInGetProjectOption struct {
	Option []Option `json:"Option" xml:"Option"`
}

ObjectInGetProjectOption is a nested struct in devops_rdc response

type ObjectInGetTaskDetailActivity added in v1.61.723

type ObjectInGetTaskDetailActivity struct {
	Activity []Activity `json:"Activity" xml:"Activity"`
}

ObjectInGetTaskDetailActivity is a nested struct in devops_rdc response

type ObjectInGetTaskDetailBase added in v1.61.723

type ObjectInGetTaskDetailBase struct {
	Parent                string              `json:"Parent" xml:"Parent"`
	DueDate               string              `json:"DueDate" xml:"DueDate"`
	Sprint                string              `json:"Sprint" xml:"Sprint"`
	Rating                int                 `json:"Rating" xml:"Rating"`
	SourceId              string              `json:"SourceId" xml:"SourceId"`
	Source                string              `json:"Source" xml:"Source"`
	StageId               string              `json:"StageId" xml:"StageId"`
	ObjectType            string              `json:"ObjectType" xml:"ObjectType"`
	TaskflowstatusId      string              `json:"TaskflowstatusId" xml:"TaskflowstatusId"`
	LikesCount            int                 `json:"LikesCount" xml:"LikesCount"`
	Accomplished          string              `json:"Accomplished" xml:"Accomplished"`
	ObjectlinksCount      int                 `json:"ObjectlinksCount" xml:"ObjectlinksCount"`
	CreatorId             string              `json:"CreatorId" xml:"CreatorId"`
	Visible               string              `json:"Visible" xml:"Visible"`
	StoryPoint            string              `json:"StoryPoint" xml:"StoryPoint"`
	Created               string              `json:"Created" xml:"Created"`
	Priority              int                 `json:"Priority" xml:"Priority"`
	Recurrence            string              `json:"Recurrence" xml:"Recurrence"`
	UntilDate             string              `json:"UntilDate" xml:"UntilDate"`
	Id                    string              `json:"Id" xml:"Id"`
	Updated               string              `json:"Updated" xml:"Updated"`
	StartDate             string              `json:"StartDate" xml:"StartDate"`
	UniqueId              int                 `json:"UniqueId" xml:"UniqueId"`
	IsFavorite            bool                `json:"IsFavorite" xml:"IsFavorite"`
	Note                  string              `json:"Note" xml:"Note"`
	IsArchived            bool                `json:"IsArchived" xml:"IsArchived"`
	Content               string              `json:"Content" xml:"Content"`
	SourceDate            string              `json:"SourceDate" xml:"SourceDate"`
	AttachmentsCount      int                 `json:"AttachmentsCount" xml:"AttachmentsCount"`
	ScenariofieldconfigId string              `json:"ScenariofieldconfigId" xml:"ScenariofieldconfigId"`
	IsTopInProject        bool                `json:"IsTopInProject" xml:"IsTopInProject"`
	ExecutorId            string              `json:"ExecutorId" xml:"ExecutorId"`
	OrganizationId        string              `json:"OrganizationId" xml:"OrganizationId"`
	IsDone                bool                `json:"IsDone" xml:"IsDone"`
	TaskId                string              `json:"TaskId" xml:"TaskId"`
	CommentsCount         int                 `json:"CommentsCount" xml:"CommentsCount"`
	Organization          string              `json:"Organization" xml:"Organization"`
	Progress              int                 `json:"Progress" xml:"Progress"`
	SprintId              string              `json:"SprintId" xml:"SprintId"`
	ProjectId             string              `json:"ProjectId" xml:"ProjectId"`
	ShareStatus           int                 `json:"ShareStatus" xml:"ShareStatus"`
	Divisions             []string            `json:"Divisions" xml:"Divisions"`
	Ancestors             []string            `json:"Ancestors" xml:"Ancestors"`
	Labels                []string            `json:"Labels" xml:"Labels"`
	TagIds                []string            `json:"TagIds" xml:"TagIds"`
	AncestorIds           []string            `json:"AncestorIds" xml:"AncestorIds"`
	InvolveMembers        []string            `json:"InvolveMembers" xml:"InvolveMembers"`
	Scenariofieldconfig   Scenariofieldconfig `json:"Scenariofieldconfig" xml:"Scenariofieldconfig"`
	Executor              Executor            `json:"Executor" xml:"Executor"`
	Tasklist              Tasklist            `json:"Tasklist" xml:"Tasklist"`
	Taskflowstatus        Taskflowstatus      `json:"Taskflowstatus" xml:"Taskflowstatus"`
	Creator               Creator             `json:"Creator" xml:"Creator"`
	Reminder              Reminder            `json:"Reminder" xml:"Reminder"`
	SubtaskCount          SubtaskCount        `json:"SubtaskCount" xml:"SubtaskCount"`
	WorkTime              WorkTime            `json:"WorkTime" xml:"WorkTime"`
	Badges                Badges              `json:"Badges" xml:"Badges"`
	Stage                 Stage               `json:"Stage" xml:"Stage"`
	Customfields          []Customfield       `json:"Customfields" xml:"Customfields"`
	Subtasks              []Subtask           `json:"Subtasks" xml:"Subtasks"`
	Involvers             []Involver          `json:"Involvers" xml:"Involvers"`
}

ObjectInGetTaskDetailBase is a nested struct in devops_rdc response

type ObjectInListCommonGroup added in v1.61.723

type ObjectInListCommonGroup struct {
	CommonGroup []CommonGroup `json:"CommonGroup" xml:"CommonGroup"`
}

ObjectInListCommonGroup is a nested struct in devops_rdc response

type ObjectInListCredentials

type ObjectInListCredentials struct {
	Object []map[string]interface{} `json:"Object" xml:"Object"`
}

ObjectInListCredentials is a nested struct in devops_rdc response

type ObjectInListDevopsProjectSprints added in v1.61.435

type ObjectInListDevopsProjectSprints struct {
	Sprint []Sprint `json:"Sprint" xml:"Sprint"`
}

ObjectInListDevopsProjectSprints is a nested struct in devops_rdc response

type ObjectInListDevopsProjectTaskFlow added in v1.61.435

type ObjectInListDevopsProjectTaskFlow struct {
	Taskflow []Taskflow `json:"Taskflow" xml:"Taskflow"`
}

ObjectInListDevopsProjectTaskFlow is a nested struct in devops_rdc response

type ObjectInListDevopsProjectTaskFlowStatus added in v1.61.435

type ObjectInListDevopsProjectTaskFlowStatus struct {
	TaskflowStatus []TaskflowStatus `json:"taskflowStatus" xml:"taskflowStatus"`
}

ObjectInListDevopsProjectTaskFlowStatus is a nested struct in devops_rdc response

type ObjectInListDevopsProjectTaskList added in v1.61.723

type ObjectInListDevopsProjectTaskList struct {
	Result []ResultItem `json:"Result" xml:"Result"`
}

ObjectInListDevopsProjectTaskList is a nested struct in devops_rdc response

type ObjectInListDevopsProjectTasks added in v1.61.435

type ObjectInListDevopsProjectTasks struct {
	Task []Task `json:"Task" xml:"Task"`
}

ObjectInListDevopsProjectTasks is a nested struct in devops_rdc response

type ObjectInListDevopsScenarioFieldConfig added in v1.61.435

type ObjectInListDevopsScenarioFieldConfig struct {
	ScenarioFieldConfig []ScenarioFieldConfig `json:"ScenarioFieldConfig" xml:"ScenarioFieldConfig"`
}

ObjectInListDevopsScenarioFieldConfig is a nested struct in devops_rdc response

type ObjectInListProjectCustomFields added in v1.61.757

type ObjectInListProjectCustomFields struct {
	CustomField []CustomField `json:"CustomField" xml:"CustomField"`
}

ObjectInListProjectCustomFields is a nested struct in devops_rdc response

type ObjectInListServiceConnections

type ObjectInListServiceConnections struct {
	Object []map[string]interface{} `json:"Object" xml:"Object"`
}

ObjectInListServiceConnections is a nested struct in devops_rdc response

type ObjectInListSmartGroup added in v1.61.723

type ObjectInListSmartGroup struct {
	SmartGroup []SmartGroup `json:"SmartGroup" xml:"SmartGroup"`
}

ObjectInListSmartGroup is a nested struct in devops_rdc response

type ObjectInListUserOrganization added in v1.61.873

type ObjectInListUserOrganization struct {
	Organization []Organization `json:"Organization" xml:"Organization"`
}

ObjectInListUserOrganization is a nested struct in devops_rdc response

type Option added in v1.61.723

type Option struct {
	Name  string `json:"Name" xml:"Name"`
	Value string `json:"Value" xml:"Value"`
}

Option is a nested struct in devops_rdc response

type Organization added in v1.61.873

type Organization struct {
	Name string `json:"Name" xml:"Name"`
	Id   string `json:"Id" xml:"Id"`
}

Organization is a nested struct in devops_rdc response

type PackageDownloadUrls

type PackageDownloadUrls struct {
	PackageDownloadUrls []string `json:"PackageDownloadUrls" xml:"PackageDownloadUrls"`
}

PackageDownloadUrls is a nested struct in devops_rdc response

type PipelineInst added in v1.61.767

type PipelineInst struct {
	Creator          string       `json:"Creator" xml:"Creator"`
	ModifyTime       int64        `json:"ModifyTime" xml:"ModifyTime"`
	PipelineConfigId int          `json:"PipelineConfigId" xml:"PipelineConfigId"`
	Modifier         string       `json:"Modifier" xml:"Modifier"`
	CreateTime       int64        `json:"CreateTime" xml:"CreateTime"`
	Packages         string       `json:"Packages" xml:"Packages"`
	PipelineId       int          `json:"PipelineId" xml:"PipelineId"`
	FlowInstId       int          `json:"FlowInstId" xml:"FlowInstId"`
	InstNumber       int          `json:"InstNumber" xml:"InstNumber"`
	Deletion         string       `json:"Deletion" xml:"Deletion"`
	StatusName       string       `json:"StatusName" xml:"StatusName"`
	Id               int          `json:"Id" xml:"Id"`
	TriggerMode      int          `json:"TriggerMode" xml:"TriggerMode"`
	Status           string       `json:"Status" xml:"Status"`
	FlowInstance     FlowInstance `json:"FlowInstance" xml:"FlowInstance"`
}

PipelineInst is a nested struct in devops_rdc response

type PlanToDo added in v1.61.435

type PlanToDo struct {
	StoryPoints int `json:"StoryPoints" xml:"StoryPoints"`
	Tasks       int `json:"Tasks" xml:"Tasks"`
	WorkTimes   int `json:"WorkTimes" xml:"WorkTimes"`
}

PlanToDo is a nested struct in devops_rdc response

type Reminder added in v1.61.723

type Reminder struct {
	CreatorId   string   `json:"CreatorId" xml:"CreatorId"`
	Method      string   `json:"Method" xml:"Method"`
	Date        string   `json:"Date" xml:"Date"`
	Type        string   `json:"Type" xml:"Type"`
	Members     []string `json:"Members" xml:"Members"`
	MemberRoles []string `json:"MemberRoles" xml:"MemberRoles"`
	Rules       []string `json:"Rules" xml:"Rules"`
}

Reminder is a nested struct in devops_rdc response

type Result added in v1.61.700

type Result struct {
	EnginePipelineId     int    `json:"EnginePipelineId" xml:"EnginePipelineId"`
	TimeStamp            string `json:"TimeStamp" xml:"TimeStamp"`
	MixFlowInstId        string `json:"MixFlowInstId" xml:"MixFlowInstId"`
	DateTime             string `json:"DateTime" xml:"DateTime"`
	Sources              string `json:"Sources" xml:"Sources"`
	EnginePipelineNumber int    `json:"EnginePipelineNumber" xml:"EnginePipelineNumber"`
	Caches               string `json:"Caches" xml:"Caches"`
	TriggerMode          string `json:"TriggerMode" xml:"TriggerMode"`
	EnginePipelineName   string `json:"EnginePipelineName" xml:"EnginePipelineName"`
	EnginePipelineInstId int    `json:"EnginePipelineInstId" xml:"EnginePipelineInstId"`
}

Result is a nested struct in devops_rdc response

type ResultInGetTaskListFilter added in v1.61.723

type ResultInGetTaskListFilter struct {
	Task []Task `json:"Task" xml:"Task"`
}

ResultInGetTaskListFilter is a nested struct in devops_rdc response

type ResultInListDevopsProjectTaskList added in v1.61.723

type ResultInListDevopsProjectTaskList struct {
	ResultItem []ResultItem `json:"Result" xml:"Result"`
}

ResultInListDevopsProjectTaskList is a nested struct in devops_rdc response

type ResultItem added in v1.61.700

type ResultItem struct {
	Id string `json:"Id" xml:"Id"`
}

ResultItem is a nested struct in devops_rdc response

type RulesInGetTaskDetailBase added in v1.61.723

type RulesInGetTaskDetailBase struct {
	Rule []string `json:"Rule" xml:"Rule"`
}

RulesInGetTaskDetailBase is a nested struct in devops_rdc response

type RulesInGetTaskListFilter added in v1.61.723

type RulesInGetTaskListFilter struct {
	Rule []string `json:"Rule" xml:"Rule"`
}

RulesInGetTaskListFilter is a nested struct in devops_rdc response

type ScenarioFieldConfig added in v1.61.435

type ScenarioFieldConfig struct {
	Id   string `json:"Id" xml:"Id"`
	Type string `json:"Type" xml:"Type"`
}

ScenarioFieldConfig is a nested struct in devops_rdc response

type Scenariofieldconfig added in v1.61.723

type Scenariofieldconfig struct {
	Name                  string `json:"Name" xml:"Name"`
	Icon                  string `json:"Icon" xml:"Icon"`
	ProTemplateConfigType string `json:"ProTemplateConfigType" xml:"ProTemplateConfigType"`
	Id                    string `json:"Id" xml:"Id"`
}

Scenariofieldconfig is a nested struct in devops_rdc response

type SmartGroup added in v1.61.723

type SmartGroup struct {
	Id   string `json:"Id" xml:"Id"`
	Type string `json:"Type" xml:"Type"`
}

SmartGroup is a nested struct in devops_rdc response

type Sprint added in v1.61.435

type Sprint struct {
	Accomplished string   `json:"Accomplished" xml:"Accomplished"`
	IsDeleted    bool     `json:"IsDeleted" xml:"IsDeleted"`
	Created      string   `json:"Created" xml:"Created"`
	DueDate      string   `json:"DueDate" xml:"DueDate"`
	Name         string   `json:"Name" xml:"Name"`
	CreatorId    string   `json:"CreatorId" xml:"CreatorId"`
	Id           string   `json:"Id" xml:"Id"`
	Updated      string   `json:"Updated" xml:"Updated"`
	StartDate    string   `json:"StartDate" xml:"StartDate"`
	Status       string   `json:"Status" xml:"Status"`
	ProjectId    string   `json:"ProjectId" xml:"ProjectId"`
	PlanToDo     PlanToDo `json:"PlanToDo" xml:"PlanToDo"`
}

Sprint is a nested struct in devops_rdc response

type Stage added in v1.61.398

type Stage struct {
	Name       string      `json:"Name" xml:"Name"`
	Sign       string      `json:"Sign" xml:"Sign"`
	Id         string      `json:"Id" xml:"Id"`
	Status     string      `json:"Status" xml:"Status"`
	Components []Component `json:"Components" xml:"Components"`
}

Stage is a nested struct in devops_rdc response

type StagesInGetPipelineInstanceBuildNumberStatus added in v1.61.398

type StagesInGetPipelineInstanceBuildNumberStatus struct {
	Stage []Stage `json:"stage" xml:"stage"`
}

StagesInGetPipelineInstanceBuildNumberStatus is a nested struct in devops_rdc response

type StagesInGetPipelineInstanceGroupStatus added in v1.61.398

type StagesInGetPipelineInstanceGroupStatus struct {
	Stage []Stage `json:"stage" xml:"stage"`
}

StagesInGetPipelineInstanceGroupStatus is a nested struct in devops_rdc response

type StagesInGetPipleineLatestInstanceStatus added in v1.61.398

type StagesInGetPipleineLatestInstanceStatus struct {
	Stage []Stage `json:"stage" xml:"stage"`
}

StagesInGetPipleineLatestInstanceStatus is a nested struct in devops_rdc response

type Subtask added in v1.61.723

type Subtask struct {
	Id      string `json:"Id" xml:"Id"`
	Content string `json:"Content" xml:"Content"`
}

Subtask is a nested struct in devops_rdc response

type SubtaskCount added in v1.61.723

type SubtaskCount struct {
	Total int `json:"Total" xml:"Total"`
	Done  int `json:"Done" xml:"Done"`
}

SubtaskCount is a nested struct in devops_rdc response

type Subtasks added in v1.61.723

type Subtasks struct {
	Subtask []Subtask `json:"Subtask" xml:"Subtask"`
}

Subtasks is a nested struct in devops_rdc response

type TagIdsInGetTaskDetailBase added in v1.61.723

type TagIdsInGetTaskDetailBase struct {
	TagId []string `json:"TagId" xml:"TagId"`
}

TagIdsInGetTaskDetailBase is a nested struct in devops_rdc response

type TagIdsInGetTaskListFilter added in v1.61.723

type TagIdsInGetTaskListFilter struct {
	TagId []string `json:"TagId" xml:"TagId"`
}

TagIdsInGetTaskListFilter is a nested struct in devops_rdc response

type Task added in v1.61.435

type Task struct {
	StoryPoint            string                           `json:"StoryPoint" xml:"StoryPoint"`
	IsTopInProject        bool                             `json:"IsTopInProject" xml:"IsTopInProject"`
	Source                string                           `json:"Source" xml:"Source"`
	StageId               string                           `json:"StageId" xml:"StageId"`
	Pos                   int                              `json:"Pos" xml:"Pos"`
	TaskId                string                           `json:"TaskId" xml:"TaskId"`
	Content               string                           `json:"Content" xml:"Content"`
	Progress              int                              `json:"Progress" xml:"Progress"`
	ProjectId             string                           `json:"ProjectId" xml:"ProjectId"`
	IsDone                bool                             `json:"IsDone" xml:"IsDone"`
	IsFavorite            bool                             `json:"IsFavorite" xml:"IsFavorite"`
	Id                    string                           `json:"Id" xml:"Id"`
	OrganizationId        string                           `json:"OrganizationId" xml:"OrganizationId"`
	TaskListId            string                           `json:"TaskListId" xml:"TaskListId"`
	Accomplished          string                           `json:"Accomplished" xml:"Accomplished"`
	TaskFlowStatusId      string                           `json:"TaskFlowStatusId" xml:"TaskFlowStatusId"`
	LikesCount            int                              `json:"LikesCount" xml:"LikesCount"`
	Note                  string                           `json:"Note" xml:"Note"`
	UntilDate             string                           `json:"UntilDate" xml:"UntilDate"`
	StartDate             string                           `json:"StartDate" xml:"StartDate"`
	SourceDate            string                           `json:"SourceDate" xml:"SourceDate"`
	Visible               string                           `json:"Visible" xml:"Visible"`
	AttachmentsCount      int                              `json:"AttachmentsCount" xml:"AttachmentsCount"`
	IsArchived            bool                             `json:"IsArchived" xml:"IsArchived"`
	ObjectType            string                           `json:"ObjectType" xml:"ObjectType"`
	Recurrence            string                           `json:"Recurrence" xml:"Recurrence"`
	UniqueId              int                              `json:"UniqueId" xml:"UniqueId"`
	ModifierId            string                           `json:"ModifierId" xml:"ModifierId"`
	Name                  string                           `json:"Name" xml:"Name"`
	Created               string                           `json:"Created" xml:"Created"`
	Parent                string                           `json:"Parent" xml:"Parent"`
	ExecutorId            string                           `json:"ExecutorId" xml:"ExecutorId"`
	TaskUniqueId          string                           `json:"TaskUniqueId" xml:"TaskUniqueId"`
	CreatorId             string                           `json:"CreatorId" xml:"CreatorId"`
	SprintId              string                           `json:"SprintId" xml:"SprintId"`
	Priority              int                              `json:"Priority" xml:"Priority"`
	Updated               string                           `json:"Updated" xml:"Updated"`
	TasklistId            string                           `json:"TasklistId" xml:"TasklistId"`
	ObjectlinksCount      int                              `json:"ObjectlinksCount" xml:"ObjectlinksCount"`
	ScenariofFeldConfigId string                           `json:"ScenariofFeldConfigId" xml:"ScenariofFeldConfigId"`
	SourceId              string                           `json:"SourceId" xml:"SourceId"`
	ShareStatus           int                              `json:"ShareStatus" xml:"ShareStatus"`
	DueDate               string                           `json:"DueDate" xml:"DueDate"`
	CommentsCount         int                              `json:"CommentsCount" xml:"CommentsCount"`
	TaskgroupId           string                           `json:"TaskgroupId" xml:"TaskgroupId"`
	Sprint                string                           `json:"Sprint" xml:"Sprint"`
	Rating                int                              `json:"Rating" xml:"Rating"`
	TagIds                []string                         `json:"TagIds" xml:"TagIds"`
	Divisions             []string                         `json:"Divisions" xml:"Divisions"`
	AncestorIds           []string                         `json:"AncestorIds" xml:"AncestorIds"`
	Labels                []string                         `json:"Labels" xml:"Labels"`
	InvolveMembers        []string                         `json:"InvolveMembers" xml:"InvolveMembers"`
	TaskFlowStatus        TaskFlowStatus                   `json:"TaskFlowStatus" xml:"TaskFlowStatus"`
	Badges                Badges                           `json:"Badges" xml:"Badges"`
	Stage                 Stage                            `json:"Stage" xml:"Stage"`
	WorkTime              WorkTime                         `json:"WorkTime" xml:"WorkTime"`
	Executor              Executor                         `json:"Executor" xml:"Executor"`
	Creator               Creator                          `json:"Creator" xml:"Creator"`
	Reminder              Reminder                         `json:"Reminder" xml:"Reminder"`
	SubtaskCount          SubtaskCount                     `json:"SubtaskCount" xml:"SubtaskCount"`
	Customfields          []CustomfieldInGetTaskListFilter `json:"Customfields" xml:"Customfields"`
}

Task is a nested struct in devops_rdc response

type TaskFlowStatus added in v1.61.723

type TaskFlowStatus struct {
	Id         string `json:"Id" xml:"Id"`
	Name       string `json:"Name" xml:"Name"`
	Kind       string `json:"Kind" xml:"Kind"`
	Pos        int    `json:"Pos" xml:"Pos"`
	TaskFlowId string `json:"TaskFlowId" xml:"TaskFlowId"`
}

TaskFlowStatus is a nested struct in devops_rdc response

type Taskflow added in v1.61.435

type Taskflow struct {
	Id   string `json:"Id" xml:"Id"`
	Type string `json:"Type" xml:"Type"`
	Name string `json:"Name" xml:"Name"`
}

Taskflow is a nested struct in devops_rdc response

type TaskflowStatus added in v1.61.435

type TaskflowStatus struct {
	IsDeleted       bool   `json:"IsDeleted" xml:"IsDeleted"`
	RejectStatusIds string `json:"RejectStatusIds" xml:"RejectStatusIds"`
	Pos             int    `json:"Pos" xml:"Pos"`
	Kind            string `json:"Kind" xml:"Kind"`
	Created         string `json:"Created" xml:"Created"`
	TaskflowId      string `json:"TaskflowId" xml:"TaskflowId"`
	Name            string `json:"Name" xml:"Name"`
	CreatorId       string `json:"CreatorId" xml:"CreatorId"`
	Id              string `json:"Id" xml:"Id"`
	Updated         string `json:"Updated" xml:"Updated"`
}

TaskflowStatus is a nested struct in devops_rdc response

type Taskflowstatus added in v1.61.723

type Taskflowstatus struct {
	Kind       string `json:"Kind" xml:"Kind"`
	TaskflowId string `json:"TaskflowId" xml:"TaskflowId"`
	Name       string `json:"Name" xml:"Name"`
	Id         string `json:"Id" xml:"Id"`
}

Taskflowstatus is a nested struct in devops_rdc response

type Tasklist added in v1.61.723

type Tasklist struct {
	Id    string `json:"Id" xml:"Id"`
	Title string `json:"Title" xml:"Title"`
}

Tasklist is a nested struct in devops_rdc response

type TransferPipelineOwnerRequest added in v1.61.598

type TransferPipelineOwnerRequest struct {
	*requests.RpcRequest
	UserPk     string           `position:"Body" name:"UserPk"`
	OrgId      string           `position:"Query" name:"OrgId"`
	PipelineId requests.Integer `position:"Query" name:"PipelineId"`
	NewOwnerId string           `position:"Body" name:"NewOwnerId"`
}

TransferPipelineOwnerRequest is the request struct for api TransferPipelineOwner

func CreateTransferPipelineOwnerRequest added in v1.61.598

func CreateTransferPipelineOwnerRequest() (request *TransferPipelineOwnerRequest)

CreateTransferPipelineOwnerRequest creates a request to invoke TransferPipelineOwner API

type TransferPipelineOwnerResponse added in v1.61.598

type TransferPipelineOwnerResponse struct {
	*responses.BaseResponse
	Success      bool                   `json:"Success" xml:"Success"`
	ErrorCode    string                 `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                 `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string                 `json:"RequestId" xml:"RequestId"`
	Object       map[string]interface{} `json:"Object" xml:"Object"`
}

TransferPipelineOwnerResponse is the response struct for api TransferPipelineOwner

func CreateTransferPipelineOwnerResponse added in v1.61.598

func CreateTransferPipelineOwnerResponse() (response *TransferPipelineOwnerResponse)

CreateTransferPipelineOwnerResponse creates a response to parse from TransferPipelineOwner response

type UpdateCommonGroupRequest added in v1.61.723

type UpdateCommonGroupRequest struct {
	*requests.RpcRequest
	Description   string `position:"Body" name:"Description"`
	CommonGroupId string `position:"Body" name:"CommonGroupId"`
	OrgId         string `position:"Body" name:"OrgId"`
	SmartGroupId  string `position:"Body" name:"SmartGroupId"`
	Name          string `position:"Body" name:"Name"`
	ProjectId     string `position:"Body" name:"ProjectId"`
}

UpdateCommonGroupRequest is the request struct for api UpdateCommonGroup

func CreateUpdateCommonGroupRequest added in v1.61.723

func CreateUpdateCommonGroupRequest() (request *UpdateCommonGroupRequest)

CreateUpdateCommonGroupRequest creates a request to invoke UpdateCommonGroup API

type UpdateCommonGroupResponse added in v1.61.723

type UpdateCommonGroupResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     Object `json:"Object" xml:"Object"`
}

UpdateCommonGroupResponse is the response struct for api UpdateCommonGroup

func CreateUpdateCommonGroupResponse added in v1.61.723

func CreateUpdateCommonGroupResponse() (response *UpdateCommonGroupResponse)

CreateUpdateCommonGroupResponse creates a response to parse from UpdateCommonGroup response

type UpdateDevopsProjectRequest added in v1.61.435

type UpdateDevopsProjectRequest struct {
	*requests.RpcRequest
	Name        string `position:"Body" name:"Name"`
	Description string `position:"Body" name:"Description"`
	ProjectId   string `position:"Body" name:"ProjectId"`
	OrgId       string `position:"Body" name:"OrgId"`
}

UpdateDevopsProjectRequest is the request struct for api UpdateDevopsProject

func CreateUpdateDevopsProjectRequest added in v1.61.435

func CreateUpdateDevopsProjectRequest() (request *UpdateDevopsProjectRequest)

CreateUpdateDevopsProjectRequest creates a request to invoke UpdateDevopsProject API

type UpdateDevopsProjectResponse added in v1.61.435

type UpdateDevopsProjectResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Object       string `json:"Object" xml:"Object"`
}

UpdateDevopsProjectResponse is the response struct for api UpdateDevopsProject

func CreateUpdateDevopsProjectResponse added in v1.61.435

func CreateUpdateDevopsProjectResponse() (response *UpdateDevopsProjectResponse)

CreateUpdateDevopsProjectResponse creates a response to parse from UpdateDevopsProject response

type UpdateDevopsProjectSprintRequest added in v1.61.435

type UpdateDevopsProjectSprintRequest struct {
	*requests.RpcRequest
	ExecutorId  string `position:"Body" name:"ExecutorId"`
	Description string `position:"Body" name:"Description"`
	StartDate   string `position:"Body" name:"StartDate"`
	OrgId       string `position:"Body" name:"OrgId"`
	SprintId    string `position:"Body" name:"SprintId"`
	DueDate     string `position:"Body" name:"DueDate"`
	Name        string `position:"Body" name:"Name"`
	ProjectId   string `position:"Body" name:"ProjectId"`
}

UpdateDevopsProjectSprintRequest is the request struct for api UpdateDevopsProjectSprint

func CreateUpdateDevopsProjectSprintRequest added in v1.61.435

func CreateUpdateDevopsProjectSprintRequest() (request *UpdateDevopsProjectSprintRequest)

CreateUpdateDevopsProjectSprintRequest creates a request to invoke UpdateDevopsProjectSprint API

type UpdateDevopsProjectSprintResponse added in v1.61.435

type UpdateDevopsProjectSprintResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     bool   `json:"Object" xml:"Object"`
}

UpdateDevopsProjectSprintResponse is the response struct for api UpdateDevopsProjectSprint

func CreateUpdateDevopsProjectSprintResponse added in v1.61.435

func CreateUpdateDevopsProjectSprintResponse() (response *UpdateDevopsProjectSprintResponse)

CreateUpdateDevopsProjectSprintResponse creates a response to parse from UpdateDevopsProjectSprint response

type UpdateDevopsProjectTaskRequest added in v1.61.435

type UpdateDevopsProjectTaskRequest struct {
	*requests.RpcRequest
	Note                   string           `position:"Body" name:"Note"`
	Visible                string           `position:"Body" name:"Visible"`
	ExecutorId             string           `position:"Body" name:"ExecutorId"`
	TaskFlowStatusId       string           `position:"Body" name:"TaskFlowStatusId"`
	ScenarioFiieldConfigId string           `position:"Body" name:"ScenarioFiieldConfigId"`
	StartDate              string           `position:"Body" name:"StartDate"`
	Priority               requests.Integer `position:"Body" name:"Priority"`
	ParentTaskId           string           `position:"Body" name:"ParentTaskId"`
	OrgId                  string           `position:"Body" name:"OrgId"`
	Content                string           `position:"Body" name:"Content"`
	SprintId               string           `position:"Body" name:"SprintId"`
	DueDate                string           `position:"Body" name:"DueDate"`
	ProjectId              string           `position:"Body" name:"ProjectId"`
	TaskId                 string           `position:"Body" name:"TaskId"`
}

UpdateDevopsProjectTaskRequest is the request struct for api UpdateDevopsProjectTask

func CreateUpdateDevopsProjectTaskRequest added in v1.61.435

func CreateUpdateDevopsProjectTaskRequest() (request *UpdateDevopsProjectTaskRequest)

CreateUpdateDevopsProjectTaskRequest creates a request to invoke UpdateDevopsProjectTask API

type UpdateDevopsProjectTaskResponse added in v1.61.435

type UpdateDevopsProjectTaskResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     bool   `json:"Object" xml:"Object"`
}

UpdateDevopsProjectTaskResponse is the response struct for api UpdateDevopsProjectTask

func CreateUpdateDevopsProjectTaskResponse added in v1.61.435

func CreateUpdateDevopsProjectTaskResponse() (response *UpdateDevopsProjectTaskResponse)

CreateUpdateDevopsProjectTaskResponse creates a response to parse from UpdateDevopsProjectTask response

type UpdatePipelineMemberRequest added in v1.61.598

type UpdatePipelineMemberRequest struct {
	*requests.RpcRequest
	RoleName   string           `position:"Body" name:"RoleName"`
	UserPk     string           `position:"Body" name:"UserPk"`
	UserId     string           `position:"Body" name:"UserId"`
	OrgId      string           `position:"Query" name:"OrgId"`
	PipelineId requests.Integer `position:"Query" name:"PipelineId"`
}

UpdatePipelineMemberRequest is the request struct for api UpdatePipelineMember

func CreateUpdatePipelineMemberRequest added in v1.61.598

func CreateUpdatePipelineMemberRequest() (request *UpdatePipelineMemberRequest)

CreateUpdatePipelineMemberRequest creates a request to invoke UpdatePipelineMember API

type UpdatePipelineMemberResponse added in v1.61.598

type UpdatePipelineMemberResponse struct {
	*responses.BaseResponse
	Success      bool   `json:"Success" xml:"Success"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Object       bool   `json:"Object" xml:"Object"`
}

UpdatePipelineMemberResponse is the response struct for api UpdatePipelineMember

func CreateUpdatePipelineMemberResponse added in v1.61.598

func CreateUpdatePipelineMemberResponse() (response *UpdatePipelineMemberResponse)

CreateUpdatePipelineMemberResponse creates a response to parse from UpdatePipelineMember response

type UpdateTaskDetailRequest added in v1.61.757

type UpdateTaskDetailRequest struct {
	*requests.RpcRequest
	Note              string           `position:"Body" name:"Note"`
	ExecutorId        string           `position:"Body" name:"ExecutorId"`
	StartDate         string           `position:"Body" name:"StartDate"`
	DelInvolvers      string           `position:"Body" name:"DelInvolvers"`
	Content           string           `position:"Body" name:"Content"`
	SprintId          string           `position:"Body" name:"SprintId"`
	CustomFieldId     string           `position:"Body" name:"CustomFieldId"`
	ProjectId         string           `position:"Body" name:"ProjectId"`
	TaskId            string           `position:"Body" name:"TaskId"`
	TaskFlowStatusId  string           `position:"Body" name:"TaskFlowStatusId"`
	TagIds            string           `position:"Body" name:"TagIds"`
	AddInvolvers      string           `position:"Body" name:"AddInvolvers"`
	Priority          requests.Integer `position:"Body" name:"Priority"`
	OrgId             string           `position:"Body" name:"OrgId"`
	DueDate           string           `position:"Body" name:"DueDate"`
	WorkTimes         requests.Integer `position:"Body" name:"WorkTimes"`
	StoryPoint        string           `position:"Body" name:"StoryPoint"`
	CustomFieldValues string           `position:"Body" name:"CustomFieldValues"`
}

UpdateTaskDetailRequest is the request struct for api UpdateTaskDetail

func CreateUpdateTaskDetailRequest added in v1.61.757

func CreateUpdateTaskDetailRequest() (request *UpdateTaskDetailRequest)

CreateUpdateTaskDetailRequest creates a request to invoke UpdateTaskDetail API

type UpdateTaskDetailResponse added in v1.61.757

type UpdateTaskDetailResponse struct {
	*responses.BaseResponse
	Successful bool   `json:"Successful" xml:"Successful"`
	ErrorCode  string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMsg   string `json:"ErrorMsg" xml:"ErrorMsg"`
	RequestId  string `json:"RequestId" xml:"RequestId"`
	Object     bool   `json:"Object" xml:"Object"`
}

UpdateTaskDetailResponse is the response struct for api UpdateTaskDetail

func CreateUpdateTaskDetailResponse added in v1.61.757

func CreateUpdateTaskDetailResponse() (response *UpdateTaskDetailResponse)

CreateUpdateTaskDetailResponse creates a response to parse from UpdateTaskDetail response

type Value added in v1.61.757

type Value struct {
	Value string `json:"Value" xml:"Value"`
	Id    string `json:"Id" xml:"Id"`
}

Value is a nested struct in devops_rdc response

type ValueInGetTaskDetailBase added in v1.61.723

type ValueInGetTaskDetailBase struct {
	ValueInfo []ValueInfo `json:"ValueInfo" xml:"ValueInfo"`
}

ValueInGetTaskDetailBase is a nested struct in devops_rdc response

type ValueInGetTaskListFilter added in v1.61.723

type ValueInGetTaskListFilter struct {
	ValueItem []ValueItem `json:"Value" xml:"Value"`
}

ValueInGetTaskListFilter is a nested struct in devops_rdc response

type ValueInfo added in v1.61.723

type ValueInfo struct {
	Id    string `json:"Id" xml:"Id"`
	Title string `json:"Title" xml:"Title"`
}

ValueInfo is a nested struct in devops_rdc response

type ValueItem added in v1.61.723

type ValueItem struct {
	Id    string `json:"Id" xml:"Id"`
	Title string `json:"Title" xml:"Title"`
}

ValueItem is a nested struct in devops_rdc response

type ValuesInGetTaskDetailBase added in v1.61.757

type ValuesInGetTaskDetailBase struct {
	Value []string `json:"Value" xml:"Value"`
}

ValuesInGetTaskDetailBase is a nested struct in devops_rdc response

type ValuesInListProjectCustomFields added in v1.61.757

type ValuesInListProjectCustomFields struct {
	Value []Value `json:"Value" xml:"Value"`
}

ValuesInListProjectCustomFields is a nested struct in devops_rdc response

type WorkTime added in v1.61.723

type WorkTime struct {
	TotalTime int    `json:"TotalTime" xml:"TotalTime"`
	UsedTime  int    `json:"UsedTime" xml:"UsedTime"`
	Unit      string `json:"Unit" xml:"Unit"`
}

WorkTime is a nested struct in devops_rdc response

Source Files

Jump to

Keyboard shortcuts

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