Update Integration Async

Update Integration Async

Update a single integration asynchronously

Request
URI
PATCH
https://vra-interop-222-139.lvn.broadcom.net/iaas/api/integrations/{id}
COPY
Path Parameters
string
id
Required

The ID of the integration

Query Parameters
string
apiVersion
Required

The version of the API in yyyy-MM-dd format (UTC). For versioning information refer to /iaas/api/about


Request Body

Integration details to be updated

UpdateIntegrationSpecification of type(s) application/json
Required

Show optional properties

{
    "name": "string",
    "integrationProperties": {}
}
{
    "name": "string",
    "description": "string",
    "privateKeyId": "ACDC55DB4MFH6ADG75KK",
    "privateKey": "gfsScK345sGGaVdds222dasdfDDSSasdfdsa34fS",
    "integrationProperties": {
        "providerId": "providerID"
    },
    "associatedCloudAccountIds": [
        "42f3e0d199d134755684cd935435a"
    ],
    "customProperties": {
        "sampleadapterProjectId": "projectId"
    },
    "tags": [
        {
            "key": "env",
            "value": "dev"
        }
    ],
    "certificateInfo": {
        "certificate": "-----BEGIN CERTIFICATE-----\nMIIDHjCCAoegAwIBAgIBATANBgkqhkiG9w0BAQsFADCBpjEUMBIGA1UEChMLVk13\nYXJlIEluYAAc1pw18GT3iAqQRPx0PrjzJhgjIJMla\n/1Kg4byY4FPSacNiRgY/FG2bPCqZk1yRfzmkFYCW/vU+Dg==\n-----END CERTIFICATE-----\n-"
    }
}
string
name
Required

A human-friendly name used as an identifier in APIs that support this option.

string
description
Optional

A human-friendly description.

string
privateKeyId
Optional

Access key id or username to be used to authenticate with the integration

string
privateKey
Optional

Secret access key or password to be used to authenticate with the integration

object
integrationProperties
Required

Integration specific properties supplied in as name value pairs

array of string
associatedCloudAccountIds
Optional

Cloud accounts to associate with this integration

object
customProperties
Optional

Additional custom properties that may be used to extend the Integration.

array of object
tags
Optional

A set of tag keys and optional values to set on the Integration

object
certificateInfo
Optional

Specification for certificate for a cloud account.

Authentication
This operation uses the following authentication methods.
Responses
202

Accepted

Returns RequestTracker of type(s) application/json
"RequestTracker Object"
integer As int32 As int32
progress
Required

Progress of the request as percentage.

string
message
Optional

Status message of the request.

string
status
Required

Status of the request.

Possible values are : FINISHED, INPROGRESS, FAILED,
array of string
resources
Optional

Collection of resources.

string
name
Optional

Name of the operation.

string
id
Required

ID of this request.

string
selfLink
Required

Self link of this request.

string
deploymentId
Optional

ID of the deployment, this request is connected to.


403

Forbidden

Returns ServiceErrorResponse of type(s) application/json
"ServiceErrorResponse Object"
string
message
Optional

message

string
messageId
Optional

messageId

array of string
stackTrace
Optional

stackTrace

integer As int32 As int32
statusCode
Optional

statusCode

integer As int32 As int32
errorCode
Optional

errorCode

array of string
details
Optional

details

string
serverErrorId
Optional

serverErrorId

string
documentKind
Optional

documentKind

integer As int32 As int32
internalErrorCode
Optional

internalErrorCode


404

Not found

Returns ServiceErrorResponse of type(s) application/json
"ServiceErrorResponse Object"
string
message
Optional

message

string
messageId
Optional

messageId

array of string
stackTrace
Optional

stackTrace

integer As int32 As int32
statusCode
Optional

statusCode

integer As int32 As int32
errorCode
Optional

errorCode

array of string
details
Optional

details

string
serverErrorId
Optional

serverErrorId

string
documentKind
Optional

documentKind

integer As int32 As int32
internalErrorCode
Optional

internalErrorCode


Code Samples
COPY
                    curl -X PATCH -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"integrationProperties:"object","name:"string"}'