Set default Deployment Domain Name

PUT /platform/configuration/networking/deployment_domain_name

Saves the default Deployment Domain Name configuration value.

Query parameters

  • version string

    If specified, then checks for conflicts against the version stored in the persistent store (returned in 'x-cloud-resource-version' of the GET request). If not specified, will unconditionally upsert.

  • Whether or not to skip cascading operations, such as re-provisioning the Security Deployment.

    Default value is false.

Body Required

Data containing the Deployment Domain Name to set

  • value string Required

    The domain name for all deployments. The hostname of an application in a deployment is constructed from the application ID and the domain name (for example, 1234567890.example.com).

Responses

  • The Deployment Domain Name was successfully saved.

    Hide headers attributes Show headers attributes
    Hide response attribute Show response attribute object
    • value string Required

      The domain name for all deployments. The hostname of an application in a deployment is constructed from the application ID and the domain name (for example, 1234567890.example.com).

  • The optimistic locking version format was wrong. (code: networking.cname.bad_version_format)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is networking.cname.bad_version_format.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

  • There is no configured Deployment Domain Name but optimistic locking was sent. (code: networking.cname.not_found)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is networking.cname.not_found.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

  • There was an optimistic locking version conflict. (code: networking.cname.version_conflict)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is networking.cname.version_conflict.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

  • skip_cascading_operations was false but the Security Deployment already had a pending plan. (code: security_deployment.cluster_pending_plan_exists)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is security_deployment.cluster_pending_plan_exists.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

PUT /platform/configuration/networking/deployment_domain_name
curl \
 -X PUT https://{{hostname}}/api/v1/platform/configuration/networking/deployment_domain_name \
 -d '{"value":"string"}'
Request examples
{
  "value": "string"
}
Response examples (200)
# Headers
x-cloud-resource-version: string
x-cloud-resource-created: string
x-cloud-resource-last-modified: string

# Payload
{
  "value": "string"
}
Response examples (400)
# Headers
x-cloud-error-codes: networking.cname.bad_version_format

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}
Response examples (404)
# Headers
x-cloud-error-codes: networking.cname.not_found

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}
Response examples (409)
# Headers
x-cloud-error-codes: networking.cname.version_conflict

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}
Response examples (412)
# Headers
x-cloud-error-codes: security_deployment.cluster_pending_plan_exists

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}