Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »


Base URL for Environment REST API

http://host:port/flexdeploy/rest/topology/environment




Overview

Environments can be accessed and modified through this API using four services: GET, POST, PUT, and PATCH. These four services allow for the retrieval, creation, complete update, and partial update of environments.

You can find more information about the REST API functions on the Topology REST API page.  


Each function returns a JSON environment object. The environment object has these attributes:

AttributesTypeDescription
descriptionStringThis is a description of the environment
instancesList<Long>This is a list of the Instance Ids associated with the environment
isActiveBooleanThis is a boolean that tracks whether or not the environment is active
environmentCodeStringThis is the unique code of the environment
sortNumberIntegerThis is a number associated with the environment that sets the environments priority in a list of other environments
environmentIdLongThis is the unique Id of the environment
isBuildEnvironmentBooleanThis is a boolean that tracks whether or not the environment is a build environment
environmentNameStringThis is the unique name of the environment

Back to Top



GET

There are two implementations of GET. One will find an environment with the given Id and return the JSON representation of the environment. The other will find a list of environments matching the parameters supplied to it.

GET by ID

This GET service will find an environment with the given Id and return the JSON representation of the object.

API URL

http://host:port/flexdeploy/rest/topology/environment/{Id}

Parameters

Parameter
Required
Type
Description

Id

YesURLThis is a URL parameter for the Id which is used to find and return an environment
 GET by ID Example

Example

If we had an environment in our database with an Id of 11101 and had the following attributes

Environment - 11101
{
   "description": "This is Environment 1" 
   "instances": [15100],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 1,
   "environmentId": 11101,
   "isBuildEnvironment": true,
   "environmentName": "Env 1"
}

When we run a GET request at the following URL

http://host:port/flexdeploy/rest/topology/environment/11101

The GET request would return the following JSON environment object

Environment GET Return JSON
{
   "description": "This is Environment 1",
   "instances": [15100],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 1,
   "environmentId": 11101,
   "isBuildEnvironment": true,
   "environmentName": "Env 1"
}

Back to Top



GET (Using Query Parameters)

This GET service will return a list of environments in the form of JSON objects based on the query parameters code and name. Environments are only returned if they match all of the specified query parameters. If no query parameters are given this request will return the entire list of environments.

API URLs

http://host:port/flexdeploy/rest/topology/environment?

Append the following character sequences to the above URL to specify Query parameters.
Use '&' between successive query parameters: 

code={code}

name={name}

Examples:
To search by code only:

http://host:port/flexdeploy/rest/topology/environment?code={code}

To search by name only:

http://host:port/flexdeploy/rest/topology/environment?name={name}

To search by code and name:

http://host:port/flexdeploy/rest/topology/environment?code={code}&name={name}

The query parameters are not case sensitive. Searching by name=NAME is the same as searching by name=name.

Parameters

Parameter
Required
Type
Description

Code

NoURLThis is a URL query parameter for the code which is used to search the environments.
NameNoURLThis is a URL query parameter for the name which is used to search the environments.
 GET (Using Query Parameters) Example

Example

If we had an environment in our database with an Id of 11101 and had the following attributes

Environment - 11101
{
   "description": "This is Environment 1" 
   "instances": [15100],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 1,
   "environmentId": 11101,
   "isBuildEnvironment": true,
   "environmentName": "Env 1"
}

When we run a GET request at the following URL

http://host:port/flexdeploy/rest/topology/environment/?code=ENV1&name=Env 1

The GET request would return the  following JSON environment object

Environment GET Return JSON
{
   "description": "This is Environment 1",
   "instances": [15100],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 1,
   "environmentId": 11101,
   "isBuildEnvironment": true,
   "environmentName": "Env 1"
}

Back to Top



POST

This POST service will create a new environment with the same attributes as the given JSON object.

API URL

http://host:port/flexdeploy/rest/topology/environment


Sample POST JSON Request
{
   "description": "This is Post 1",
   "instances": [15100,15101],
   "isActive": true,
   "environmentCode": "POST1",
   "sortNumber": 1,
   "environmentId":"",
   "isBuildEnvironment": true,
   "environmentName": "Post 1"
}

Parameters

Parameters
Required
Type
Description
descriptionNoStringThis is the description that the created environment will have.
instancesNoList<Long>This is the list of Instance Ids that are assigned to the created environment.
isActiveYesBooleanThis is the isActive boolean that is true if the created environment is active.
environmentCodeYesStringThis is the Code that the created environment will have.
sortNumberYesIntegerThis is the sort number that the created environment will have.
environmentIdYesLongThis is the Id place holder. This Id will not be given to the created environment.
isBuildEnvironmentYesBooleanThis is the isBuildEnvironment boolean that is true if the created environment is a build environment.
environmentNameYesStringThis is the name of the created environment.
 Post Example

Example

If the POST request receives the following JSON environment object,

POST JSON
{
   "description": "This is Post 1",
   "instances": [15100,15101],
   "isActive": true,
   "environmentCode": "POST1",
   "sortNumber": 1,
   "environmentId":00000,
   "isBuildEnvironment": true,
   "environmentName": "Post 1"
}

The following environment object will then be created as a new row in the database.

Environment Post Return JSON
{
   "description": "This is Environment 1",
   "instances": [15100],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 1,
   "environmentId": 11101,
   "isBuildEnvironment": true,
   "environmentName": "Env 1"
}


PUT

This PUT service will update all attributes of an environment with the given Id based on the attributes of a JSON object parameters.

API URL

http://host:port/flexdeploy/rest/topology/environment/{Id}

Sample PUT JSON Request
{
   "description": "This is Put 1",
   "instances": [15100],
   "isActive": false,
   "environmentCode": "PUT1",
   "sortNumber": 6,
   "environmentId": 00000,
   "isBuildEnvironment": true,
   "environmentName": "Put 1"
}

Parameters

Parameters
Required
Type
Description
IdYesURLThis is a URL parameter for the Id which is used to find and return an environment with.
descriptionNoStringThis is the description that the environment's description will be updated to.
instancesNoList<Long>This is the list of Instance Ids that will be assigned to the environment that is being updated.
isActiveYesBooleanThis is the isActive boolean that the environment's isActive boolean will be updated to.
environmentCodeYesStringThis is the Code that the environment's Code will be updated to.
sortNumberYesIntegerThis is the sort number that the environment's sort number will be updated to.
environmentIdYesLongThis is the Id place holder. This Id will not be updated in the environment.
isBuildEnvironmentYesBooleanThis is the isBuildEnvironment boolean that the environment's isBuildEnvironment boolean will be updated to.
environmentNameYesStringThis is the name that the environment's name will be updated to.


 PUT Example

Example

If we had an environment in our database with an Id of 11101 and had the following attributes

Environment PUT JSON
{
   "description": "This is Environment 1" 
   "instances": [15100],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 1,
   "environmentId": 11101,
   "isBuildEnvironment": true,
   "environmentName": "Env 1"
}

When we run a PUT request at the following URL

http://host:port/flexdeploy/rest/topology/environment/11101

And the PUT request receives the following JSON environment object,

Environment PUT Receive JSON
{
   "description": "This is the updated Environment 1",
   "instances": [15101],
   "isActive": true,
   "environmentCode": "PUT2",
   "sortNumber": 2,
   "environmentId": 11101,
   "isBuildEnvironment": false,
   "environmentName": "PUT 2"
}

The PUT request would then update the environment with Id 11101 and return the  following JSON environment object

Environment PUT Return JSON
{
   "description": "This is the updated Environment 1",
   "instances": [15101],
   "isActive": true,
   "environmentCode": "PUT2",
   "sortNumber": 2,
   "environmentId": 11101,
   "isBuildEnvironment": false,
   "environmentName": "PUT 2"
}


PATCH

This PATCH service will update an existing environment with the information passed through a JSON object. If an attribute of the JSON is null it will not be updated in the environment.


API URL

http://host:port/flexdeploy/rest/topology/environment/{Id}

Sample JSON Request
{
   "description": "This is Patch with some null attributes",
   "instances": [15102,15103],
   "isActive": null,
   "environmentCode": null,
   "sortNumber": 7,
   "environmentId": null,
   "isBuildEnvironment": false,
   "environmentName": "Patch with some null"
}

Parameters

Parameters
Required
Type
Description
IdYesURLThis is a URL parameter for the Id which is used to find and return an environment with.
descriptionNoStringThis is the description that the environment's description will be updated to.
instancesNoList<Long>This is the list of instance Ids that will be assigned to the environment that is being updated.
isActiveNoBooleanThis is the isActive boolean that the environment's isActive boolean will be updated to.
environmentCodeNoStringThis is the code that the environment's code will be update to.
sortNumberNoIntegerThis is the sort number that the environment's sort number will be updated to.
environmentIdNoLongThis is the Id place holder. It will not change the environment's Id that is being updated. 
isBuildEnvironmentNoBooleanThis is the isActive boolean that the environment's isActive boolean will be updated to.
environmentNameNoStringThis is the name that the environment's name will be updated to.
 PATCH Example

Example

If we had an environment in our database with an Id of 11101 and had the following attributes

Environment PATCH JSON
{
   "description": "This is Environment 1",
   "instances": [15101],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 1,
   "environmentId": 11101,
   "isBuildEnvironment": false,
   "environmentName": "Env 1"
}

When we run a PATCH request at the following URL

http://host:port/flexdeploy/rest/topology/environment/11101

And the PATCH request receives the following JSON environment object,

Environment PATCH Receive JSON
{
   "description": "This is Patch with some null attributes",
   "instances": [15102,15103],
   "isActive": null,
   "environmentCode": null,
   "sortNumber": 7,
   "environmentId": null,
   "isBuildEnvironment": false,
   "environmentName": "Patch with some null"
}

The PATCH request would then update the environment with Id 11101 and return the  following JSON environment object

Environment PATCH Return JSON
{
   "description": "This is Patch with some null attributes",
   "instances": [15102,15103],
   "isActive": true,
   "environmentCode": "ENV1",
   "sortNumber": 7,
   "environmentId": 11101,
   "isBuildEnvironment": false,
   "environmentName": "Patch with some null"
}


Back to Top





  • No labels