diff options
Diffstat (limited to 'docs/gl_objects')
-rw-r--r-- | docs/gl_objects/environments.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/gl_objects/environments.rst b/docs/gl_objects/environments.rst index a05a6fc..6edde12 100644 --- a/docs/gl_objects/environments.rst +++ b/docs/gl_objects/environments.rst @@ -24,6 +24,10 @@ Create an environment for a project:: environment = project.environments.create({'name': 'production'}) +Retrieve a specific environment for a project:: + + environment = project.environments.get(112) + Update an environment for a project:: environment.external_url = 'http://foo.bar.com' |