Informatica · Schema

ConnectionUpdateRequest

Request body for updating an existing connection.

Address VerificationB2B GatewayCloud ServicesData GovernanceData IntegrationData ProfilingData QualityEnterprise SoftwareETLIDMCIICSMaster Data ManagementReference Data Management

Properties

Name Type Description
@type string The resource type identifier. Must be set to "connection".
name string The updated name for the connection.
description string An updated description of the connection.
host string The updated hostname or IP address.
port integer The updated port number.
database string The updated database name.
schema string The updated database schema.
username string The updated username.
password string The updated password.
authenticationType string The updated authentication method.
serviceUrl string The updated service endpoint URL.
codepage string The updated character encoding.
connParams object Updated connection-type-specific parameters.
View JSON Schema on GitHub

JSON Schema

informatica-platform-rest-connection-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ConnectionUpdateRequest",
  "type": "object",
  "description": "Request body for updating an existing connection.",
  "properties": {
    "@type": {
      "type": "string",
      "description": "The resource type identifier. Must be set to \"connection\"."
    },
    "name": {
      "type": "string",
      "description": "The updated name for the connection."
    },
    "description": {
      "type": "string",
      "description": "An updated description of the connection."
    },
    "host": {
      "type": "string",
      "description": "The updated hostname or IP address."
    },
    "port": {
      "type": "integer",
      "description": "The updated port number."
    },
    "database": {
      "type": "string",
      "description": "The updated database name."
    },
    "schema": {
      "type": "string",
      "description": "The updated database schema."
    },
    "username": {
      "type": "string",
      "description": "The updated username."
    },
    "password": {
      "type": "string",
      "description": "The updated password."
    },
    "authenticationType": {
      "type": "string",
      "description": "The updated authentication method."
    },
    "serviceUrl": {
      "type": "string",
      "description": "The updated service endpoint URL."
    },
    "codepage": {
      "type": "string",
      "description": "The updated character encoding."
    },
    "connParams": {
      "type": "object",
      "description": "Updated connection-type-specific parameters."
    }
  }
}