github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/sourcebuild/create_project.go (about)

     1  /*
     2   * sourcebuild
     3   *
     4   * <br/>https://sourcebuild.apigw.ntruss.com/api/v1
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package sourcebuild
    10  
    11  type CreateProject struct {
    12  	Name *string `json:"name"`
    13  
    14  	Description *string `json:"description,omitempty"`
    15  
    16  	Source *ProjectSource `json:"source"`
    17  
    18  	Env *ProjectEnv `json:"env"`
    19  
    20  	Cmd *ProjectCmd `json:"cmd,omitempty"`
    21  
    22  	Artifact *ProjectArtifact `json:"artifact,omitempty"`
    23  
    24  	Cache *ProjectCache `json:"cache,omitempty"`
    25  
    26  	Linked *ProjectLinked `json:"linked,omitempty"`
    27  }