Lines Matching full:environment

20 use Google\Service\CloudComposer\Environment;  alias
35 * Create a new environment. (environments.create)
39 * @param Environment $postBody
43 public function create($parent, Environment $postBody, $optParams = [])
50 * Delete an environment. (environments.delete)
52 * @param string $name The environment to delete, in the form:
64 * Get an existing environment. (environments.get)
66 * @param string $name The resource name of the environment to get, in the form:
69 * @return Environment
75 return $this->call('get', [$params], Environment::class);
96 * Update an environment. (environments.patch)
98 * @param string $name The relative resource name of the environment to update,
101 * @param Environment $postBody
105 * relative to `Environment`, of fields to update. For example, to set the
106 * version of scikit-learn to install in the environment to 0.19.0 and to remove
110 * environment would specify the scikit-learn version as follows: { "config":{
119 * "labels.label2", and "labels.label3" and populate the patch environment as
125 * environment. For example, to delete all pre-existing user-specified PyPI
128 * environment would be the following: { "config":{ "softwareConfig":{
132 * `environment`, all custom PyPI packages are cleared. It is an error to
137 * `environment.config.softwareConfig.pypiPackages`. It is an error to provide
139 * `labels` * Replace all environment labels. If a replacement labels map is not
140 * included in `environment`, all labels are cleared. It is an error to provide
144 * in `environment.labels`. It is an error to provide both a mask of this form
146 * of nodes in the environment. An integer greater than or equal to 3 must be
149 * `config.webServerNetworkAccessControl` * Replace the environment's current
153 * `environment`, all config overrides are cleared. It is an error to provide
159 * `environment.config.softwareConfig.airflowConfigOverrides`. It is an error to
162 * `config.softwareConfig.envVariables` * Replace all environment variables. If
163 * a replacement environment variable map is not included in `environment`, all
164 * custom environment variables are cleared. It is an error to provide both this
165 * mask and a mask specifying one or more individual environment variables. *
181 public function patch($name, Environment $postBody, $optParams = [])