Back to index
Summary
Adds a resource pool to a specific environment tier. A resource pool is a named group of resources.projectNameStringrequiredThe name for the project that must be unique among all projects. environmentNameStringrequiredThe name of the environment. environmentTierNameStringrequiredName for the environment tier; must be unique among all tiers for the environment. resourcePoolNameStringrequiredName for the resource pool; must be unique among all resource pools. rollingDeployPhaseNameStringoptionalName for the rolling deploy phase to be associated with the resource pool. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.addResourcePoolToEnvironmentTier( projectName: "test-projectName", environmentName: "test-environmentName", environmentTierName: "test-environmentTierName", resourcePoolName: "test-resourcePoolName" /* optional arguments */ )