forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment_variables.go
52 lines (41 loc) · 1.98 KB
/
environment_variables.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package ccv3
import (
"code.cloudfoundry.org/cli/api/cloudcontroller/ccv3/constant"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccv3/internal"
"code.cloudfoundry.org/cli/resources"
)
// EnvironmentVariables represents the environment variables that can be set on
// an application by the user.
// GetEnvironmentVariableGroup gets the values of a particular environment variable group.
func (client *Client) GetEnvironmentVariableGroup(group constant.EnvironmentVariableGroupName) (resources.EnvironmentVariables, Warnings, error) {
var responseBody resources.EnvironmentVariables
_, warnings, err := client.MakeRequest(RequestParams{
RequestName: internal.GetEnvironmentVariableGroupRequest,
URIParams: internal.Params{"group_name": string(group)},
ResponseBody: &responseBody,
})
return responseBody, warnings, err
}
// UpdateApplicationEnvironmentVariables adds/updates the user provided
// environment variables on an application. A restart is required for changes
// to take effect.
func (client *Client) UpdateApplicationEnvironmentVariables(appGUID string, envVars resources.EnvironmentVariables) (resources.EnvironmentVariables, Warnings, error) {
var responseBody resources.EnvironmentVariables
_, warnings, err := client.MakeRequest(RequestParams{
RequestName: internal.PatchApplicationEnvironmentVariablesRequest,
URIParams: internal.Params{"app_guid": appGUID},
RequestBody: envVars,
ResponseBody: &responseBody,
})
return responseBody, warnings, err
}
func (client *Client) UpdateEnvironmentVariableGroup(group constant.EnvironmentVariableGroupName, envVars resources.EnvironmentVariables) (resources.EnvironmentVariables, Warnings, error) {
var responseBody resources.EnvironmentVariables
_, warnings, err := client.MakeRequest(RequestParams{
RequestName: internal.PatchEnvironmentVariableGroupRequest,
URIParams: internal.Params{"group_name": string(group)},
RequestBody: envVars,
ResponseBody: &responseBody,
})
return responseBody, warnings, err
}