environmentMigrationDelete
Deletes an environment migration.
Input Parameters:
environmentId: ID of the environment migration to delete.
Response:
- Returns the EnvironmentMigration object with deleted migration details.
Example Request:
mutation environmentMigrationDelete($environmentId: String!) {
environmentMigrationDelete(environmentId: $environmentId) {
environment {
id,
name,
gateway {
id,
name,
deleted,
environments {
id,
name,
gateway {
id,
name,
deleted
},
settings {
restPath,
soapPath,
soap12Path,
odataPath
},
publishedName
},
defaultApiExecutionSettings {
concurrency,
retries,
retryCases,
connectTimeout,
executionTimeout
},
forwardProxy {
id,
enabled,
hostAddress,
portNumber,
proxyType,
username,
password
}
},
settings {
restPath,
soapPath,
soap12Path,
odataPath
},
publishedName
},
toGateway {
id,
name,
deleted,
environments {
id,
name,
publishedName
},
defaultApiExecutionSettings {
concurrency,
retries,
retryCases,
connectTimeout,
executionTimeout
},
forwardProxy {
id,
enabled,
hostAddress,
portNumber,
proxyType,
username,
password
}
},
fromGateway {
id,
name,
deleted,
environments {
id,
name,
publishedName
},
defaultApiExecutionSettings {
concurrency,
retries,
retryCases,
connectTimeout,
executionTimeout
},
forwardProxy {
id,
enabled,
hostAddress,
portNumber,
proxyType,
username,
password
}
},
environmentConfigurationCompleted,
containerConfigurationCompleted,
apiConfigurationCompleted,
gatewayConfigurationCompleted,
environmentSettings {
restPath,
soapPath,
soap12Path,
odataPath
},
warnings {
environmentWarnings {
entityIds,
errorCode,
message,
severity
},
containerWarnings {
entityIds,
errorCode,
message,
severity
},
apiWarnings {
entityIds,
errorCode,
message,
severity
}
}
}
}
**Variables:**
```json
{
"environmentId": "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>"
}
environmentMigrationDelete(
environmentId: String!
): EnvironmentMigration
Arguments
environmentMigrationDelete.environmentId ● String! non-null scalar miscellaneous
Type
EnvironmentMigration object platform
Represents the migration process of an environment from one gateway to another with configuration status tracking.
Was this topic helpful?