Skip to content

Commit

Permalink
feat: [IAC-2855]: Remove workspaceId as requirement and add moduleId
Browse files Browse the repository at this point in the history
  • Loading branch information
nassergonzalez committed Jan 2, 2025
1 parent a14921f commit f9ed549
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 16 deletions.
8 changes: 5 additions & 3 deletions v0/pipeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@
"IACMStageConfigImpl" : {
"title" : "IACMStageConfigImpl",
"type" : "object",
"required" : [ "workspace", "execution" ],
"required" : [ "execution" ],
"properties" : {
"cloneCodebase" : {
"oneOf" : [ {
Expand Down Expand Up @@ -832,8 +832,10 @@
} ]
},
"workspace" : {
"type" : "string",
"minLength" : 1
"type" : "string"
},
"moduleId" : {
"type" : "integer"
},
"description" : {
"desc" : "This is the description for IACMStageConfigImpl"
Expand Down
4 changes: 2 additions & 2 deletions v0/pipeline/stages/iacm/iacmstage-config-impl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
title: IACMStageConfigImpl
type: object
required:
- workspace
- execution
properties:
cloneCodebase:
Expand Down Expand Up @@ -45,7 +44,8 @@ properties:
- type: string
workspace:
type: string
minLength: 1
moduleId:
type: integer
description:
desc: This is the description for IACMStageConfigImpl
$schema: http://json-schema.org/draft-07/schema#
8 changes: 5 additions & 3 deletions v0/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -84464,7 +84464,7 @@
"IACMStageConfigImpl" : {
"title" : "IACMStageConfigImpl",
"type" : "object",
"required" : [ "workspace", "execution" ],
"required" : [ "execution" ],
"properties" : {
"cloneCodebase" : {
"oneOf" : [ {
Expand Down Expand Up @@ -84530,8 +84530,10 @@
} ]
},
"workspace" : {
"type" : "string",
"minLength" : 1
"type" : "string"
},
"moduleId" : {
"type" : "integer"
},
"description" : {
"desc" : "This is the description for IACMStageConfigImpl"
Expand Down
8 changes: 5 additions & 3 deletions v1/pipeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
"IACMStageConfigImpl" : {
"title" : "IACMStageConfigImpl",
"type" : "object",
"required" : [ "workspace", "execution" ],
"required" : [ "execution" ],
"properties" : {
"cloneCodebase" : {
"oneOf" : [ {
Expand Down Expand Up @@ -325,8 +325,10 @@
} ]
},
"workspace" : {
"type" : "string",
"minLength" : 1
"type" : "string"
},
"moduleId" : {
"type" : "integer"
},
"description" : {
"desc" : "This is the description for IACMStageConfigImpl"
Expand Down
4 changes: 2 additions & 2 deletions v1/pipeline/stages/iacm/iacmstage-config-impl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
title: IACMStageConfigImpl
type: object
required:
- workspace
- execution
properties:
cloneCodebase:
Expand Down Expand Up @@ -45,7 +44,8 @@ properties:
- type: string
workspace:
type: string
minLength: 1
moduleId:
type: integer
description:
desc: This is the description for IACMStageConfigImpl
$schema: http://json-schema.org/draft-07/schema#
8 changes: 5 additions & 3 deletions v1/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -70719,7 +70719,7 @@
"IACMStageConfigImpl" : {
"title" : "IACMStageConfigImpl",
"type" : "object",
"required" : [ "workspace", "execution" ],
"required" : [ "execution" ],
"properties" : {
"cloneCodebase" : {
"oneOf" : [ {
Expand Down Expand Up @@ -70785,8 +70785,10 @@
} ]
},
"workspace" : {
"type" : "string",
"minLength" : 1
"type" : "string"
},
"moduleId" : {
"type" : "integer"
},
"description" : {
"desc" : "This is the description for IACMStageConfigImpl"
Expand Down

0 comments on commit f9ed549

Please sign in to comment.