Extend

Extend

To perform replication management operations for remote sites, provide the session with credentials (VMware Cloud Director auth cookie or access token or org user and password) for the specified remote site. The supported authentication methods are the following:

  • with VMware Cloud Director credentials:
    {
        "type": "credentials",
        "site": "site1",
        "vcdUsername": "admin1@org2",
        "vcdPassword": "password"
    }
    


  • with VMware Cloud Director auth cookie:

    {
        "type": "cookie",
        "site": "site1",
        "cookie": "f12977876fef48a6b032ffdb2cdf22d7"
    }
    


  • with VMware Cloud Director access token (jwt):

    {
        "type": "vcdAccessToken",
        "site": "site1",
        "vcdAccessToken": "eyJhbGciOiJSUzI1NiJ9...."
    }
    
Request
URI
POST
https://{api_host}//sessions/extend
COPY
Header Parameters
string
operationID
Optional

Operation ID for correlating logs across multiple services


Request Body

auth

AuthRequest of type(s) application/json
Required
{
    "site": "site2",
    "type": "string"
}
string
site
Required

Identifies the cloud site to which you are logging.

string
type
Required

type

Possible values are : cookie, credentials,
Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns C4SessionDetails of type(s) application/json;charset=UTF-8
{
    "authenticatedSites": [
        {
            "org": "Org1",
            "site": "site1"
        }
    ],
    "roles": [
        "EVERYONE"
    ],
    "user": "admin1@Org1"
}
authenticatedSites
Optional

VMware Cloud Director sites the current session has authenticated with. The site specified in the request should be present here

array of string
roles
Optional

Roles granted to the session

string
user
Optional

The currently authenticated user


400

The returned error codes include (but are not limited to):

  • BadUserInput
  • BadRequest
Returns ApiError of type(s) application/json;charset=UTF-8
{
    "args": [],
    "code": "Forbidden",
    "msg": "Permission denied.",
    "stacktrace": "com.vmware.h4.api.error.exceptions.PermissionDeniedException: Permission denied."
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.


401

The returned error codes include (but are not limited to):

  • NotAuthenticated
  • RemoteAuthenticationFailure
Returns ApiError of type(s) application/json;charset=UTF-8
{
    "args": [],
    "code": "Forbidden",
    "msg": "Permission denied.",
    "stacktrace": "com.vmware.h4.api.error.exceptions.PermissionDeniedException: Permission denied."
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.


404

The returned error codes include (but are not limited to):

  • SiteNotFound
Returns ApiError of type(s) application/json;charset=UTF-8
{
    "args": [],
    "code": "Forbidden",
    "msg": "Permission denied.",
    "stacktrace": "com.vmware.h4.api.error.exceptions.PermissionDeniedException: Permission denied."
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.


500

The returned error codes include (but are not limited to):

  • GeneralServerFailure
Returns ApiError of type(s) application/json;charset=UTF-8
{
    "args": [],
    "code": "Forbidden",
    "msg": "Permission denied.",
    "stacktrace": "com.vmware.h4.api.error.exceptions.PermissionDeniedException: Permission denied."
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.