addResourceToEnvironmentTier

On this page
Back to index

Summary

Adds a resource to the specified environment tier.
projectName
Stringrequired
The name for the project that must be unique among all projects.
environmentName
Stringrequired
The name of the environment.
environmentTierName
Stringrequired
Name for the environment tier; must be unique among all tiers for the environment.
resourceName
Stringrequired
Name for the resource; must be unique among all resources.
rollingDeployPhaseName
Stringoptional
Name for the rolling deploy phase to be associated with the resource.

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.addResourceToEnvironmentTier( projectName: "test-projectName", environmentName: "test-environmentName", environmentTierName: "test-environmentTierName", resourceName: "test-resourceName" /* optional arguments */ )