Skip to content

Commit 498038f

Browse files
committed
1936 - Rename ProjectInstance to ProjectDeployment
1 parent e8bbe26 commit 498038f

File tree

154 files changed

+3095
-2920
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+3095
-2920
lines changed

docs_legacy/docs/how-to/common-operation-workflow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ This is valid array example:
9191
````
9292
Assuming practitioner understands `logger/v1/info` task setup and outcome we consider content of get-content.yaml is ready for execution.
9393
## 3.2 Run Workflow
94-
Take hello-world.yaml and paste it to [BYTE_CHEF_WORKFLOW_DEPLOY_FOLDER]. From browser position to `http://localhost:9555/api/automation/project-instances/2/workflows/669d6b7c-4d48-4184-8279-9e6923b36bae/jobs` and provide this payload:
94+
Take hello-world.yaml and paste it to [BYTE_CHEF_WORKFLOW_DEPLOY_FOLDER]. From browser position to `http://localhost:9555/api/automation/project-deployments/2/workflows/669d6b7c-4d48-4184-8279-9e6923b36bae/jobs` and provide this payload:
9595

9696
````
9797
{

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-api/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/domain/ApiCollection.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ public class ApiCollection {
6565
@Column
6666
private String name;
6767

68-
@Column("project_instance_id")
69-
private AggregateReference<Project, Long> projectInstanceId;
68+
@Column("project_deployment_id")
69+
private AggregateReference<Project, Long> projectDeploymentId;
7070

7171
@Version
7272
private int version;
@@ -121,8 +121,8 @@ public String getName() {
121121
return name;
122122
}
123123

124-
public Long getProjectInstanceId() {
125-
return projectInstanceId == null ? null : projectInstanceId.getId();
124+
public Long getProjectDeploymentId() {
125+
return projectDeploymentId == null ? null : projectDeploymentId.getId();
126126
}
127127

128128
public List<Long> getTagIds() {
@@ -152,8 +152,8 @@ public void setName(String name) {
152152
this.name = name;
153153
}
154154

155-
public void setProjectInstanceId(Long projectInstanceId) {
156-
this.projectInstanceId = projectInstanceId == null ? null : AggregateReference.to(projectInstanceId);
155+
public void setProjectDeploymentId(Long projectDeploymentId) {
156+
this.projectDeploymentId = projectDeploymentId == null ? null : AggregateReference.to(projectDeploymentId);
157157
}
158158

159159
public void setTagIds(List<Long> tagIds) {
@@ -182,7 +182,7 @@ public String toString() {
182182
"id=" + id +
183183
", name='" + name + '\'' +
184184
", collectionVersion=" + collectionVersion +
185-
", projectInstanceId=" + projectInstanceId +
185+
", projectDeploymentId=" + projectDeploymentId +
186186
", apiCollectionTags=" + apiCollectionTags +
187187
", createdBy='" + createdBy + '\'' +
188188
", createdDate=" + createdDate +

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-api/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/domain/ApiCollectionEndpoint.java

+8-11
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
package com.bytechef.ee.automation.apiplatform.configuration.domain;
99

10-
import com.bytechef.automation.configuration.domain.ProjectInstanceWorkflow;
10+
import com.bytechef.automation.configuration.domain.ProjectDeploymentWorkflow;
1111
import java.time.Instant;
1212
import java.util.Objects;
1313
import org.springframework.data.annotation.CreatedBy;
@@ -63,8 +63,8 @@ public enum HttpMethod {
6363
@Column
6464
private String path;
6565

66-
@Column("project_instance_workflow_id")
67-
private AggregateReference<ProjectInstanceWorkflow, Long> projectInstanceWorkflowId;
66+
@Column("project_deployment_workflow_id")
67+
private AggregateReference<ProjectDeploymentWorkflow, Long> projectDeploymentWorkflowId;
6868

6969
@Column("workflow_reference_code")
7070
private String workflowReferenceCode;
@@ -126,8 +126,8 @@ public String getPath() {
126126
return path;
127127
}
128128

129-
public Long getProjectInstanceWorkflowId() {
130-
return projectInstanceWorkflowId.getId();
129+
public Long getProjectDeploymentWorkflowId() {
130+
return projectDeploymentWorkflowId.getId();
131131
}
132132

133133
public int getVersion() {
@@ -158,12 +158,8 @@ public void setPath(String path) {
158158
this.path = path;
159159
}
160160

161-
// public void setProjectInstanceWorkflow(ProjectInstanceWorkflow projectInstanceWorkflow) {
162-
// this.projectInstanceWorkflowId = AggregateReference.to(projectInstanceWorkflow.getId());
163-
// }
164-
165-
public void setProjectInstanceWorkflowId(Long projectInstanceWorkflowId) {
166-
this.projectInstanceWorkflowId = AggregateReference.to(projectInstanceWorkflowId);
161+
public void setProjectDeploymentWorkflowId(Long projectDeploymentWorkflowId) {
162+
this.projectDeploymentWorkflowId = AggregateReference.to(projectDeploymentWorkflowId);
167163
}
168164

169165
public void setVersion(int version) {
@@ -182,6 +178,7 @@ public String toString() {
182178
", path='" + path + '\'' +
183179
", httpMethod='" + httpMethod + '\'' +
184180
", workflowReferenceCode='" + workflowReferenceCode + '\'' +
181+
", projectDeploymentWorkflowId=" + projectDeploymentWorkflowId +
185182
", createdBy='" + createdBy + '\'' +
186183
", createdDate=" + createdDate +
187184
", lastModifiedBy='" + lastModifiedBy + '\'' +

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-api/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/dto/ApiCollectionDTO.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
package com.bytechef.ee.automation.apiplatform.configuration.dto;
99

1010
import com.bytechef.automation.configuration.domain.Project;
11-
import com.bytechef.automation.configuration.domain.ProjectInstance;
11+
import com.bytechef.automation.configuration.domain.ProjectDeployment;
1212
import com.bytechef.ee.automation.apiplatform.configuration.domain.ApiCollection;
1313
import com.bytechef.platform.tag.domain.Tag;
1414
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
@@ -24,19 +24,19 @@
2424
public record ApiCollectionDTO(
2525
int collectionVersion, String createdBy, Instant createdDate, String description, boolean enabled,
2626
List<ApiCollectionEndpointDTO> endpoints, Long id, String lastModifiedBy, Instant lastModifiedDate,
27-
String name, Project project, long projectId, ProjectInstance projectInstance, long projectInstanceId,
27+
String name, Project project, long projectId, ProjectDeployment projectDeployment, long projectDeploymentId,
2828
int projectVersion, List<Tag> tags, int version) {
2929

3030
public ApiCollectionDTO(
3131
ApiCollection apiCollection, List<ApiCollectionEndpointDTO> endpoints, Project project,
32-
ProjectInstance projectInstance, List<Tag> tags) {
32+
ProjectDeployment projectDeployment, List<Tag> tags) {
3333

3434
this(
3535
apiCollection.getCollectionVersion(), apiCollection.getCreatedBy(), apiCollection.getCreatedDate(),
36-
apiCollection.getDescription(), projectInstance.isEnabled(), endpoints, apiCollection.getId(),
36+
apiCollection.getDescription(), projectDeployment.isEnabled(), endpoints, apiCollection.getId(),
3737
apiCollection.getLastModifiedBy(), apiCollection.getLastModifiedDate(), apiCollection.getName(), project,
38-
projectInstance.getProjectId(), projectInstance, apiCollection.getProjectInstanceId(),
39-
projectInstance.getProjectVersion(), tags, apiCollection.getVersion());
38+
projectDeployment.getProjectId(), projectDeployment, apiCollection.getProjectDeploymentId(),
39+
projectDeployment.getProjectVersion(), tags, apiCollection.getVersion());
4040
}
4141

4242
public ApiCollection toApiCollection() {
@@ -46,7 +46,7 @@ public ApiCollection toApiCollection() {
4646
apiCollection.setDescription(description);
4747
apiCollection.setId(id);
4848
apiCollection.setName(name);
49-
apiCollection.setProjectInstanceId(projectInstanceId);
49+
apiCollection.setProjectDeploymentId(projectDeploymentId);
5050
apiCollection.setTags(tags);
5151
apiCollection.setVersion(version);
5252

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-api/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/dto/ApiCollectionEndpointDTO.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,27 @@
1616

1717
package com.bytechef.ee.automation.apiplatform.configuration.dto;
1818

19-
import com.bytechef.automation.configuration.domain.ProjectInstanceWorkflow;
19+
import com.bytechef.automation.configuration.domain.ProjectDeploymentWorkflow;
2020
import com.bytechef.ee.automation.apiplatform.configuration.domain.ApiCollectionEndpoint;
2121
import com.bytechef.ee.automation.apiplatform.configuration.domain.ApiCollectionEndpoint.HttpMethod;
2222
import java.time.Instant;
2323

2424
public record ApiCollectionEndpointDTO(
2525
long apiCollectionId,
2626
String createdBy, Instant createdDate, boolean enabled, HttpMethod httpMethod, Long id, String lastModifiedBy,
27-
Instant lastModifiedDate, String name, String path, long projectInstanceWorkflowId, int version,
27+
Instant lastModifiedDate, String name, String path, long projectDeploymentWorkflowId, int version,
2828
String workflowReferenceCode) {
2929

3030
public ApiCollectionEndpointDTO(
31-
ApiCollectionEndpoint apiCollectionEndpoint, ProjectInstanceWorkflow projectInstanceWorkflow) {
31+
ApiCollectionEndpoint apiCollectionEndpoint, ProjectDeploymentWorkflow projectDeploymentWorkflow) {
3232

3333
this(
3434
apiCollectionEndpoint.getApiCollectionId(), apiCollectionEndpoint.getCreatedBy(),
35-
apiCollectionEndpoint.getCreatedDate(), projectInstanceWorkflow.isEnabled(),
35+
apiCollectionEndpoint.getCreatedDate(), projectDeploymentWorkflow.isEnabled(),
3636
apiCollectionEndpoint.getHttpMethod(), apiCollectionEndpoint.getId(),
3737
apiCollectionEndpoint.getLastModifiedBy(), apiCollectionEndpoint.getLastModifiedDate(),
3838
apiCollectionEndpoint.getName(), apiCollectionEndpoint.getPath(),
39-
apiCollectionEndpoint.getProjectInstanceWorkflowId(), apiCollectionEndpoint.getVersion(),
39+
apiCollectionEndpoint.getProjectDeploymentWorkflowId(), apiCollectionEndpoint.getVersion(),
4040
apiCollectionEndpoint.getWorkflowReferenceCode());
4141
}
4242

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ val generateOpenAPISpring by tasks.registering(org.openapitools.generator.gradle
2121
"Environment" to "com.bytechef.automation.configuration.web.rest.model.EnvironmentModel",
2222
"Page" to "org.springframework.data.domain.Page",
2323
"ProjectBasic" to "com.bytechef.automation.configuration.web.rest.model.ProjectBasicModel",
24-
"ProjectInstanceBasic" to "com.bytechef.automation.configuration.web.rest.model.ProjectInstanceBasicModel",
24+
"ProjectDeploymentBasic" to "com.bytechef.automation.configuration.web.rest.model.ProjectDeploymentBasicModel",
2525
"ProjectStatus" to "com.bytechef.automation.configuration.web.rest.model.ProjectStatusModel",
2626
"Tag" to "TagModel",
2727
"UpdateTagsRequest" to "com.bytechef.platform.tag.web.rest.model.UpdateTagsRequestModel",

0 commit comments

Comments
 (0)