This PATCH service will update an existing project with the information passed through a JSON object. PATCH will only modify the attributes provided in input, and leave all other project attributes unchanged.
Info |
---|
|
http://host:port/flexdeploy/rest/v1/project/{projectId} |
Request
PATCH will receive a project input JSON object and return a project JSON object. Project input JSON objects for the request can have the following attributes:
| | |
---|
projectId | URL | Id of the project to patch. |
projectName | String | Unique name of the project. |
applicationId | Long | Id of the application the project is in. |
projectPath | String | Fully qualified project path. |
isActive | Boolean | Boolean that tracks whether or not the project is active. Null input defaults to true. |
packageBuildType | String | String that defines usage of packages and build or deployments of packages. Possible values are ALL, PACKAGE, or BOTH. Defaults to Project Default or BOTH if Project Default is empty. |
description | String | Description of the project. |
priority | Integer | Deploy priority of the project. Null input defaults to 1. |
webhooksEnabled | Boolean | Whether or not webhooks are enabled. Null input defaults to false. |
projectBuildSequence | Integer | @since 5.4.0.2 Update the value for the ProjectBuildSequence variable which can be used in stream syntax scripts. |
projectType | ProjectTypeEnum | Type of project. Possible values are GENERAL, EBS, PARTIAL_FILE, PARTIAL_JDBC, OracleForms, ORACLE_DB, ORACLE_BI, ORACLE_APEX, MFT, SALESFORCE, UTILITY, MDS, or GENERIC. |
scmType | SCMTypeEnum | This specifies the source control management system used by this project. Must be a valid source control management system. Possible values are SVN, GIT, CVS, TFVC, PERF, PVCS, FILE, or NONE. |
priorityScope | String | This specifies the priority scope of the current project. Either Global, Folder, or Application. Null input defaults to Application. |
buildInfo | ProjectBuildInfo | Build info for the project. See more info about the ProjectBuildInfo object below. |
deployInfo | ProjectDeployInfo | Deploy info for the project. See more info about the ProjectDeployInfo object below. |
utilityExecutionInfo | UtilityProjectExecutionInfo | Execution info for a utility project. See more info about the UtilityProjectExecutionInfo object below. |
mainStreamName | String | Name of the main stream for the project. Null input defaults to master. |
scmConfiguration | ProjectSCMPojo | SCM configuration for the project. See more info about the ProjectSCMPojo object below. |
contianerConfiguration | ContainerConfiguration | Container configuration for the project. See more info about the ContainerConfiguration type below. |
...
Attribute | Type | Description |
---|
configName | String | Name of the configuration attribute. |
configValue | String | Value of the configuration attribute. |
ContainerConfiguration
Attribute | Type | Description |
---|
dockerFile | String | Name of the dockerfile |
dockerStreams | List<DockerStream> | Information about the docker streams. See more info about the DockerStream type below. |
kubernetesConfiguration | KubernetesConfiguration | Configuration for Kubernetes. See more info about the KubernetesConfiguration type below. |
DockerStream
Attribute | Type | Description |
---|
streamId | Long | Id of the stream. |
streamName | String | Name of the stream. |
imageName | String | Name of the image. |
isImageBuild | Boolean | If the image will build. |
isImagePush | Boolean | If the image will push. Null if isImageBuild is false. |
KubernetesConfiguration
Attribute | Type | Description |
---|
deploymentName | String | Name of the deployment. |
manifestsToDeploy | List<String> | Manifests to deploy. |
blueGreenManifests | List<String> | Blue green manifests. |
canaryManifests | List<String> | Canary manifests. |
abmanifests | List<String> | AB manifests. |
helmConfiguration | HelmConfiguration | The helm configuration. See more info about the HelmConfiguration type below. |
HelmConfiguration
Attribute | Type | Description |
---|
chart | String | Name of the chart. |
releaseName | String | Name of the release. |
parametersMap | List<ParameterMap> | All of the parameter mappings. See more info about the ParmaterMap type below. |
ParameterMap
Attribute | Type | Description |
---|
key | String | Key for the parameter map. |
value | String | Value for the parameter map. |
SCM Configuration Names by Type
...
Expand |
---|
title | Subversion SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
TrunkScript | Path for the trunk within selected repository. | BranchScript | Path for the branches within selected repository. Use StreamName variable to identify branch name used at runtime. | TagScript | Path for the tag within the selected repository. Use ProjectVersion variable to specify identifier of current build. | CheckoutFolderScript | Optional sub-folder to use for export/checkout operations during build workflow execution. |
|
...
Expand |
---|
title | Git SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
BranchScript | Path for the branches within selected repository. Use StreamName variable to identify branch name used at runtime. | TagScript | Path for the tag within the selected repository. Use ProjectVersion variable to specify identifier of current build. | SparseCheckoutFoldersScript | This is very useful when you have many folders in your Git repository, but your project only needs few folders for build. This can be specified as one more values by using comma. | CheckoutFolderScript | Optional sub-folder to use for clone operation during build workflow execution. |
|
Expand |
---|
title | CVS SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
ModuleNamesScript | Module Names or Module subdirectories to be selected from repository. Module subdirectories should traverse starting at the Module Name. Multiple Modules may be selected by separating the names/paths with commas. | BranchNameScript | Path for the branches within selected repository. Use StreamName variable to identify branch name used at runtime. | TagScript | Tag script to be used when creating tags for the project in the repository. Use ProjectVersion variable to specify identifier of current build. | CheckoutFolderScript | Optional sub-folder to use for clone operation during build workflow execution. |
|
Expand |
---|
title | TFVC SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
MainScript | Main Path to a project in the selected repository. | BranchScript | Path for the branches within selected repository. Use StreamName variable to identify branch name used at runtime. | LabelNameScript | Label script to be used when creating labels for the project in the repository. Use ProjectVersion variable to specify identifier of current build. | GetFolderScript | Optional sub-folder to use for clone operation during build workflow execution. |
|
Expand |
---|
title | PVCS SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
ProjectPathScript | Project Path Script to be used to get files from. This will be a path present in the Project Database configured on the instance. Use "/" to get all files in the Project Database. | PromotionGroupScript | Promotion Group name to be used. Use StreamName variable to identify Promotion Group name at runtime. | UsingPGScript | Whether the Promotion Group script should be used to identify the stream. If false, then the branch script will be used. | BranchScript | Branch name to be used within selected repository. Use StreamName variable to identify branch name used at runtime. | LabelScript | Label script to be used when creating labels for the project in the repository. Use ProjectVersion variable to specify identifier of current build. | CheckoutFolderScript | Optional sub-folder to use for clone operation during build workflow execution. |
|
Expand |
---|
title | PERF SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
MainScript | Main Path to a project in the selected repository. | BranchScript | Branch name to be used within selected repository. Use StreamName variable to identify branch name used at runtime. | LabelNameScript | Label script to be used when creating labels for the project in the repository. Use ProjectVersion variable to specify identifier of current build. | CheckoutFolderScript | Optional sub-folder to use for clone operation during build workflow execution. |
|
Expand |
---|
title | CCUCM SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
ProjectVobScript | Project versioned object base script. | VobPathsScript | Script for versioned object base path. | LabelNameScript | Label script to be used when creating labels for the project in the repository. Use ProjectVersion variable to specify identifier of current build. | CheckoutFolderScript | Optional sub-folder to use for clone operation during build workflow execution. | StreamScript | Script for stream. |
|
...
Expand |
---|
title | FILE SCM Configuration Names |
---|
|
Attribute Name | Description |
---|
MainFolderScript | Main Path to a project in the selected repository. | BranchFolderScript | Branch name to be used within selected repository. Use StreamName variable to identify branch name used at runtime. | CheckoutFolderScript | Optional sub-folder to use for clone operation during build workflow execution. |
|
Include Page |
---|
| REST V1 Project Response |
---|
| REST V1 Project Response |
---|
|
...