environmentMigrationContainersUpdate
Updates the container configuration for an environment migration.
Input Parameters:
environmentId: ID of the environment migration to update.configurationComplete: Boolean indicating whether container configuration is completed.
Response:
- Returns the EnvironmentMigration object with updated container configuration status.
Example Request:
mutation environmentMigrationContainersUpdate($environmentId: String!, $configurationComplete: Boolean) {
environmentMigrationContainersUpdate(environmentId: $environmentId, configurationComplete: $configurationComplete) {
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>",
"configurationComplete": true
}
environmentMigrationContainersUpdate(
environmentId: String!
configurationComplete: Boolean
): EnvironmentMigration!
Arguments
environmentMigrationContainersUpdate.environmentId ● String! non-null scalar miscellaneous
environmentMigrationContainersUpdate.configurationComplete ● Boolean 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?