environmentMigrations
Returns all environment migrations.
Input Parameters:
gatewayToId: Optional ID of the target gateway to filter migrations.
Response: Array of EnvironmentMigration objects with migration status and configuration details.
Example Request:
query environmentMigrations($gatewayToId: String) {
environmentMigrations(gatewayToId: $gatewayToId) {
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
}
}
}
}
environmentMigrations(
gatewayToId: String
): [EnvironmentMigration!]!
Arguments
environmentMigrations.gatewayToId ● String 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?