Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Restrict scenario label changes from the outside #3881

Merged
merged 16 commits into from
May 21, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mutation {
{ type: FORMATION_LIFECYCLE, url: "http://localhost:6439/", mode: SYNC }
]
labels: {
someTestKey: "someTestValue"
e2eTestFormationTemplateLabelKey: "e2eTestFormationTemplateLabelValue"
}
}
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mutation {
result: deleteFormationTemplateLabel(
formationTemplateID: "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
key: "someTestKey"
key: "e2eTestFormationTemplateLabelKey"
) {
key
value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,23 @@ query {
value
configuration
error
assignmentOperations {
data {
id
operationType
formationAssignmentID
formationID
triggeredBy
startedAtTimestamp
finishedAtTimestamp
}
pageInfo {
startCursor
endCursor
hasNextPage
}
totalCount
}
}
pageInfo {
startCursor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ mutation {
in: {
name: "create-application-with-documents"
providerName: "compass"
labels: {
applicationType: "SAP Cloud for Customer"
scenarios: ["test-scenario"]
}
labels: { applicationType: "SAP Cloud for Customer" }
bundles: [
{
name: "foo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ mutation {
labels: {
applicationType: "SAP Cloud for Customer"
group: ["production", "experimental"]
scenarios: ["test-scenario"]
}
healthCheckURL: "http://mywordpress.com/health"
statusCondition: CONNECTED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ mutation {
in: {
name: "wordpress"
providerName: "compass"
labels: {
applicationType: "SAP Cloud for Customer"
scenarios: ["test-scenario"]
}
labels: { applicationType: "SAP Cloud for Customer" }
webhooks: [
{
type: CONFIGURATION_CHANGED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ mutation {
labels: {
applicationType: "SAP Cloud for Customer"
group: ["production", "experimental"]
scenarios: ["test-scenario"]
}
healthCheckURL: "http://mywordpress.com/health"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ mutation {
result: setFormationTemplateLabel(
formationTemplateID: "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
in: {
key: "someTestKey"
value: "someTestValue"
key: "e2eTestFormationTemplateLabelKey"
value: e2eTestFormationTemplateLabelValue
}
) {
key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,23 @@ mutation {
value
configuration
error
assignmentOperations {
data {
id
operationType
formationAssignmentID
formationID
triggeredBy
startedAtTimestamp
finishedAtTimestamp
}
pageInfo {
startCursor
endCursor
hasNextPage
}
totalCount
}
}
pageInfo {
startCursor
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading