Omnistrate Registration API (2022-09-01-00)

Download OpenAPI specification:

REST API for Omnistrate Service Registration

global-api

Common API for all Omnistrate API endpoints

registrationServiceHealth global-api

Registration service health check endpoint

Responses

Response samples

Content type
application/json
{
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED"
}

consumptionServiceHealth global-api

Consumption service health check endpoint

Responses

Response samples

Content type
application/json
{
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED"
}

consumptionServiceVersion global-api

Consumption service version endpoint

Responses

Response samples

Content type
application/json
{
  • "apiVersion": "1.0",
  • "buildCommitSHA": "1234567890abcdef1234567890abcdef12345678",
  • "buildTimestamp": "2020-01-01T00:00:00Z"
}

registrationServiceVersion global-api

Registration service version endpoint

Responses

Response samples

Content type
application/json
{
  • "apiVersion": "1.0",
  • "buildCommitSHA": "1234567890abcdef1234567890abcdef12345678",
  • "buildTimestamp": "2020-01-01T00:00:00Z"
}

service-api

ListService service-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token",
  • "services": [
    ]
}

CreateService service-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
description
required
string

A brief description of the service

name
required
string

Name of the Service

serviceLogoURL
string <uri>

The logo for the service

Responses

Request samples

Content type
application/json
{
  • "description": "A MySQL SaaS specializing in multi-writer clusters for high availability",
  • "name": "MySQL multi-writer service",
  • "serviceLogoURL": "http://mohr.net/noe.aufderhar"
}

Response samples

Content type
application/json
"s-123456"

DeleteService service-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: s-12345678

The service ID to operate on

Responses

DescribeService service-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: s-12345678

The service ID to operate on

Responses

Response samples

Content type
application/json
{
  • "createdAt": "2019-01-01T00:00:00Z",
  • "description": "A MySQL SaaS specializing in multi-writer clusters for high availability",
  • "id": "s-123456",
  • "key": "mysql",
  • "name": "MySQL multi-writer service",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator",
  • "serviceEnvironments": [
    ],
  • "serviceLogoURL": "Accusantium ut saepe ipsum mollitia asperiores.",
  • "serviceProviderID": "Perspiciatis vel qui distinctio excepturi.",
  • "serviceProviderName": "Omnistrate, Inc."
}

UpdateService service-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: s-12345678

The service ID to operate on

Request Body schema: application/json
required
description
string

A brief description of the service

name
string

Name of the Service

serviceLogoURL
string

The logo for the service

Responses

Request samples

Content type
application/json
{
  • "description": "A MySQL SaaS specializing in multi-writer clusters for high availability",
  • "name": "MySQL multi-writer service",
  • "serviceLogoURL": "Earum sed aliquam ut eos."
}

ServiceHealth service-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: s-12345678

The ID of the service

Responses

Response samples

Content type
application/json
{
  • "health": "UP|DOWN|UNKNOWN",
  • "id": "s-123456",
  • "report": {
    }
}

CreateServiceFromComposeSpec service-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
description
required
string

A brief description of the service

fileContent
required
string

Base64 encoded Compose Spec YAML in docker compose format

fileFormat
required
string

MIME type of file format

fileName
required
string

Name of compose spec YAML file that is uploaded

name
required
string

Name of the Service

serviceLogoURL
string <uri>

The logo for the service

Responses

Request samples

Content type
application/json
{
  • "description": "A MySQL SaaS specializing in multi-writer clusters for high availability",
  • "fileContent": "Beatae placeat in et ea ut non.",
  • "fileFormat": "text/plain",
  • "fileName": "mysql.yaml",
  • "name": "MySQL multi-writer service",
  • "serviceLogoURL": "http://mueller.com/cristopher"
}

Response samples

Content type
application/json
"s-123456"

BuildServiceFromComposeSpec service-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
object

Configs for the service. Key is the compose spec name of the config and value is base64 encoded config content

description
string

A brief description of the service

dryrun
boolean

If set to true, performs a dry run of the build operation without making any changes

environment
string

The environment to build the service in

environmentType
string

The type of the environment

fileContent
required
string

Base64 encoded Compose Spec YAML in docker compose format

forceCreateNewServicePlanVersion
boolean

Force create a new service plan version when the service is released

name
required
string

Name of the Service

release
boolean

Release the service after building

releaseAsPreferred
boolean

Release the service as preferred

releaseVersionName
string

Release version name

object

Secrets for the service. Key is the compose spec name of the secret and value is base64 encoded secret content

serviceLogoURL
string <uri>

The logo for the service

Responses

Request samples

Content type
application/json
{
  • "configs": {
    },
  • "description": "A MySQL SaaS specializing in multi-writer clusters for high availability",
  • "dryrun": true,
  • "environment": "dev",
  • "environmentType": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "fileContent": "Qui eligendi odit.",
  • "forceCreateNewServicePlanVersion": true,
  • "name": "MySQL multi-writer service",
  • "release": true,
  • "releaseAsPreferred": true,
  • "releaseVersionName": "mysql",
  • "secrets": {
    },
  • "serviceLogoURL": "http://durgan.info/zachery"
}

Response samples

Content type
application/json
{
  • "isNewServicePlanVersionCreated": true,
  • "productTierID": "Consequatur facilis.",
  • "serviceEnvironmentID": "se-123456",
  • "serviceID": "s-123456",
  • "undefinedResources": {
    }
}

BuildServiceFromServicePlanSpec service-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
description
string

A brief description of the service

dryrun
boolean

If set to true, performs a dry run of the build operation without making any changes

environment
string

The environment to build the service in

environmentType
string

The type of the environment

fileContent
required
string

Base64 encoded Compose Spec YAML in service plan configuration format

forceCreateNewServicePlanVersion
boolean

Force create a new service plan version when the service is released

name
required
string

Name of the Service

release
boolean

Release the service after building

releaseAsPreferred
boolean

Release the service as preferred

releaseVersionName
string

Release version name

serviceLogoURL
string <uri>

The logo for the service

Responses

Request samples

Content type
application/json
{
  • "description": "A MySQL SaaS specializing in multi-writer clusters for high availability",
  • "dryrun": true,
  • "environment": "dev",
  • "environmentType": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "fileContent": "Sit explicabo non laboriosam.",
  • "forceCreateNewServicePlanVersion": true,
  • "name": "MySQL multi-writer service",
  • "release": true,
  • "releaseAsPreferred": true,
  • "releaseVersionName": "mysql",
}

Response samples

Content type
application/json
{
  • "isNewServicePlanVersionCreated": true,
  • "productTierID": "Quisquam eum fuga temporibus similique.",
  • "serviceEnvironmentID": "se-123456",
  • "serviceID": "s-123456",
  • "undefinedResources": {
    }
}

service-environment-api

ListServiceEnvironment service-environment-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service this environment belongs to

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateServiceEnvironment service-environment-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service this environment belongs to

Request Body schema: application/json
required
autoApproveSubscription
boolean

Auto approve subscription or not

deploymentConfigId
required
string

The deployment configuration ID

description
required
string

A brief description of the service environment

name
required
string

Name of the Service Environment

serviceAuthPublicKey
string

PEM-encoded Public key part of the key used to sign the JWT tokens for the service control plane APIs

sourceEnvironmentId
string

The ID of the service environment to use for promoting changes to this environment

type
string
visibility
string

This parameter is used to configure the visibility of the service control-plane APIs

Responses

Request samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "deploymentConfigId": "Pariatur et laboriosam eligendi.",
  • "description": "The production environment for the MySQL multi-writer service",
  • "name": "Production",
  • "serviceAuthPublicKey": "-----BEGIN PUBLIC KEY-----\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExXBS01nPRugGbKCN8m9sSSTkGvPT\n7a1Jn74No2dTkp+tQ+ZyBa7ClKbEXFaR2mzy06q0ivJAxPi1pixofIXE0Q==\n-----END PUBLIC KEY-----\n",
  • "sourceEnvironmentId": "se-123456",
  • "type": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "visibility": "PUBLIC"
}

Response samples

Content type
application/json
"se-123456"

DeleteServiceEnvironment service-environment-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service this environment belongs to

id
required
string
Example: se-12345678

The ID of the service environment

Responses

DescribeServiceEnvironment service-environment-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service this environment belongs to

id
required
string
Example: se-12345678

The ID of the service environment

Responses

Response samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "deploymentConfigId": "Velit soluta esse.",
  • "description": "The production environment for the MySQL multi-writer service",
  • "id": "se-123456",
  • "key": "production",
  • "name": "Production",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator",
  • "saasPortalStatus": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED",
  • "serviceAuthPublicKey": "-----BEGIN PUBLIC KEY-----\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExXBS01nPRugGbKCN8m9sSSTkGvPT\n7a1Jn74No2dTkp+tQ+ZyBa7ClKbEXFaR2mzy06q0ivJAxPi1pixofIXE0Q==\n-----END PUBLIC KEY-----\n",
  • "serviceId": "s-123456",
  • "sourceEnvironmentId": "se-123456",
  • "type": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "visibility": "PUBLIC"
}

UpdateServiceEnvironment service-environment-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service this environment belongs to

id
required
string
Example: se-12345678

The ID of the service environment

Request Body schema: application/json
required
autoApproveSubscription
boolean

Auto approve subscription or not

deploymentConfigId
string

The deployment configuration ID

description
string

A brief description of the service environment

name
string

Name of the Service Environment

serviceAuthPublicKey
string

PEM-encoded Public key part of the key used to sign the JWT tokens for the service control plane APIs

sourceEnvironmentId
string

The ID of the service environment to use for promoting changes to this environment

visibility
string

This parameter is used to configure the visibility of the service control-plane APIs

Responses

Request samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "deploymentConfigId": "Enim eos corrupti.",
  • "description": "The production environment for the MySQL multi-writer service",
  • "name": "Production",
  • "serviceAuthPublicKey": "-----BEGIN PUBLIC KEY-----\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExXBS01nPRugGbKCN8m9sSSTkGvPT\n7a1Jn74No2dTkp+tQ+ZyBa7ClKbEXFaR2mzy06q0ivJAxPi1pixofIXE0Q==\n-----END PUBLIC KEY-----\n",
  • "sourceEnvironmentId": "se-12345678",
  • "visibility": "PUBLIC"
}

PromoteServiceEnvironmentStatus service-environment-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service this environment belongs to

id
required
string
Example: se-12345678

The ID of the service environment

Responses

Response samples

Content type
application/json
[
  • {
    },
  • {
    },
  • {
    }
]

PromoteServiceEnvironment service-environment-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service this environment belongs to

id
required
string
Example: se-12345678

The ID of the service environment

Request Body schema: application/json
required
productTierId
string

The ID of the product tier to use for the promotion

Responses

Request samples

Content type
application/json
{
  • "productTierId": "Asperiores est rerum commodi."
}

service-model-api

CreateServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service this model is for

Request Body schema: application/json
required
accountConfigIds
Array of strings

The infrastructure account configuration ID list

description
required
string

A brief description of the service model

Array of objects (ServiceModelFeatureDetail)

Enabled service model features

modelType
required
string

The model type encapsulating this service

name
required
string

Name of the Service Model

serviceApiId
required
string

The service API this model is for

Responses

Request samples

Content type
application/json
{
  • "accountConfigIds": [
    ],
  • "description": "A MySQL Hosted SaaS specializing in multi-writer clusters for high availability",
  • "features": [
    ],
  • "modelType": "OMNISTRATE_HOSTED|CUSTOMER_HOSTED|BYOA",
  • "name": "MySQL multi-writer service hosted model",
  • "serviceApiId": "Dolorem nam accusamus earum consequatur qui fugiat."
}

Response samples

Content type
application/json
"Omnis nobis sint impedit quia eligendi enim."

DeleteServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Responses

DescribeServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Responses

Response samples

Content type
application/json
{
  • "accountConfigIds": [
    ],
  • "activeAccountConfigIds": {
    },
  • "description": "A MySQL Hosted SaaS specializing in multi-writer clusters for high availability",
  • "features": [
    ],
  • "id": "Doloribus fuga eum impedit et eos cupiditate.",
  • "key": "mysql-multi-writer-service-hosted-model",
  • "modelType": "OMNISTRATE_HOSTED|CUSTOMER_HOSTED|BYOA",
  • "name": "MySQL multi-writer service hosted model",
  • "productTiers": [
    ],
  • "serviceApiId": "Eum perspiciatis qui quia.",
  • "serviceId": "s-123456"
}

UpdateServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Request Body schema: application/json
required
description
string

A brief description of the service model

name
string

Name of the Service Model

Responses

Request samples

Content type
application/json
{
  • "description": "A MySQL Hosted SaaS specializing in multi-writer clusters for high availability",
  • "name": "MySQL multi-writer service hosted model"
}

RemoveAccountConfigFromServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Request Body schema: application/json
required
accountConfigId
required
string

The infrastructure account configuration ID

Responses

Request samples

Content type
application/json
{
  • "accountConfigId": "Et sit qui in et."
}

AddAccountConfigToServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Request Body schema: application/json
required
accountConfigId
required
string

The infrastructure account configuration ID

Responses

Request samples

Content type
application/json
{
  • "accountConfigId": "Quisquam molestias nam."
}

SetActiveAccountConfig service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

accountConfigId
required
string
Example: ac-12345678

The infrastructure account configuration ID

Responses

DisableServiceModelFeature service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Request Body schema: application/json
required
feature
required
string

Responses

Request samples

Content type
application/json
{
  • "feature": "CUSTOM_NETWORKS|CUSTOM_TERRAFORM_POLICY"
}

EnableServiceModelFeature service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Request Body schema: application/json
required
required
object
feature
required
string

Responses

Request samples

Content type
application/json
{
  • "configuration": {
    },
  • "feature": "CUSTOM_NETWORKS|CUSTOM_TERRAFORM_POLICY"
}

ReleaseServiceModelStatus service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

id
required
string
Example: sm-12345678

The service model ID

Responses

Response samples

Content type
application/json
{
  • "status": "DEPLOYING|READY|PENDING|FAILED|NOT_CONFIGURED"
}

CopyServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID this model belongs to

sourceId
required
string
Example: sm-12345678

The source service model ID

Request Body schema: application/json
required
accountConfigIds
Array of strings

The infrastructure account configuration ID list

description
required
string

A brief description of the service model

Array of objects (ServiceModelFeatureDetail)

Enabled service model features

name
required
string

Name of the Service Model

targetServiceModelType
required
string

The model type encapsulating this service

targetTierType
string

Target product tier type

Responses

Request samples

Content type
application/json
{
  • "accountConfigIds": [
    ],
  • "description": "A MySQL Hosted SaaS specializing in multi-writer clusters for high availability",
  • "features": [
    ],
  • "name": "MySQL multi-writer service hosted model",
  • "targetServiceModelType": "OMNISTRATE_HOSTED|CUSTOMER_HOSTED|BYOA",
  • "targetTierType": "OMNISTRATE_DEDICATED_TENANCY|OMNISTRATE_MULTI_TENANCY|CUSTOM_TENANCY"
}

Response samples

Content type
application/json
"Vero facilis officia odit magnam voluptatem."

ListServiceModel service-model-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

serviceApiId
required
string
Example: sa-12345678

The service API ID

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

product-tier-api

ListProductTier product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

serviceModelId
required
string
Example: sm-12345678

Service model ID

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateProductTier product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

Request Body schema: application/json
required
allowCreatesWhenPaymentNotConfigured
boolean

Allow creates when payment not configured

autoApproveSubscription
boolean

Auto approve subscription or not

awsRegions
Array of strings

The AWS regions that this product tier is available on

azureRegions
Array of strings

The Azure regions that this product tier is available on

billingProductID
string

Optional billing product ID for tax purposes

billingProviders
Array of strings

List of billing providers to be used for the product tier

defaultBillingProvider
string

The default billing provider to be used for the product tier

object (ProductTierDeploymentConfiguration)
description
required
string

A brief description of the product tier

documentation
string

Documentation

exportUsageMetering
boolean

Export usage metering data

object

Export usage metering data configuration

gcpRegions
Array of strings

The GCP regions that this product tier is available on

isDisabled
boolean

Create the product tier in a disabled state. Enabling the product tier will let end-customers subscribe and use the service plan.

maxNumberOfInstances
integer <int64>

Maximum number of instances

name
required
string

Name of the product tier

ociRegions
Array of strings

The OCI regions that this product tier is available on

onPremPlatforms
Array of strings

The on prem platforms that this product tier is available on

planDescription
required
string

A brief description for the end user of the product tier

object

Price per unit.

pricing
any

Pricing

privateRegions
Array of strings

The private regions that this product tier is available on

serviceModelId
required
string

Service model ID

support
string

Support

tierType
required
string

Tier type

Responses

Request samples

Content type
application/json
{
  • "allowCreatesWhenPaymentNotConfigured": true,
  • "autoApproveSubscription": false,
  • "awsRegions": [
    ],
  • "azureRegions": [
    ],
  • "billingProductID": "abc123",
  • "billingProviders": [
    ],
  • "defaultBillingProvider": "STRIPE|BRING_YOUR_OWN",
  • "deploymentConfiguration": {
    },
  • "description": "A premium product tier",
  • "documentation": "Any documentation",
  • "exportUsageMetering": true,
  • "exportUsageMeteringConfig": {
    },
  • "gcpRegions": [
    ],
  • "isDisabled": false,
  • "maxNumberOfInstances": 5,
  • "name": "Premium",
  • "ociRegions": [
    ],
  • "onPremPlatforms": [
    ],
  • "planDescription": "A premium plan",
  • "pricePerUnit": {
    },
  • "pricing": {
    },
  • "privateRegions": [
    ],
  • "serviceModelId": "Qui minus magnam sunt consequatur.",
  • "support": "Any support",
  • "tierType": "OMNISTRATE_DEDICATED_TENANCY|OMNISTRATE_MULTI_TENANCY|CUSTOM_TENANCY"
}

Response samples

Content type
application/json
"Molestiae ducimus rerum consequatur."

DeleteProductTier product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

id
required
string
Example: pt-12345678

Product tier ID

Responses

DescribeProductTier product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

id
required
string
Example: pt-12345678

Product tier ID

query Parameters
version
string
Example: version=3.0

The version number for the specific version set

Responses

Response samples

Content type
application/json
{
  • "allowCreatesWhenPaymentNotConfigured": true,
  • "apiGroups": {
    },
  • "autoApproveSubscription": false,
  • "awsRegions": [
    ],
  • "azureRegions": [
    ],
  • "billingProductID": "abc123",
  • "billingProviders": [
    ],
  • "cloudProvidersConfigReadiness": {
    },
  • "defaultBillingProvider": "STRIPE|BRING_YOUR_OWN",
  • "deploymentConfiguration": {
    },
  • "description": "A premium product tier",
  • "documentation": "Any documentation",
  • "enabledFeatures": [
    ],
  • "exportUsageMetering": true,
  • "exportUsageMeteringConfig": {
    },
  • "features": {
    },
  • "gcpRegions": [
    ],
  • "id": "Sint vel ducimus.",
  • "isDisabled": false,
  • "key": "premium",
  • "maxNumberOfInstances": 5,
  • "name": "Premium",
  • "ociRegions": [
    ],
  • "onPremPlatforms": [
    ],
  • "planDescription": "A premium plan",
  • "pricePerUnit": {
    },
  • "pricing": {
    },
  • "privateRegions": [
    ],
  • "serviceId": "s-123456",
  • "serviceModelId": "Quasi a atque quae eius dolores.",
  • "support": "Any support",
  • "tierType": "OMNISTRATE_DEDICATED_TENANCY|OMNISTRATE_MULTI_TENANCY|CUSTOM_TENANCY"
}

UpdateProductTier product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

id
required
string
Example: pt-12345678

Product tier ID

Request Body schema: application/json
required
allowCreatesWhenPaymentNotConfigured
boolean

Allow creates when payment not configured

autoApproveSubscription
boolean

Auto approve subscription or not

awsRegions
Array of strings

The AWS regions that this product tier is available on

azureRegions
Array of strings

The Azure regions that this product tier is available on

billingProductID
string

Optional billing product ID for tax purposes

billingProviders
Array of strings

List of billing providers to be used for the product tier

defaultBillingProvider
string

The default billing provider to be used for the product tier

object (ProductTierDeploymentConfiguration)
description
string

A brief description of the product tier

documentation
string

Documentation

exportUsageMetering
boolean

Export usage metering data

object

Export usage metering data configuration

gcpRegions
Array of strings

The GCP regions that this product tier is available on

isDisabled
boolean

Update the product tier's state as enabled/disabled. Enabling the product tier will let end-customers subscribe and use the service plan.

maxNumberOfInstances
integer <int64>

Maximum number of instances. Set to -1 for unlimited.

name
string

Name of the product tier

ociRegions
Array of strings

The OCI regions that this product tier is available on

onPremPlatforms
Array of strings

The on prem platforms that this product tier is available on

planDescription
string

A brief description for the end user of the product tier

object

Price per unit.

pricing
any

Pricing

privateRegions
Array of strings

The private regions that this product tier is available on

support
string

Support

tierType
string

Tier type

Responses

Request samples

Content type
application/json
{
  • "allowCreatesWhenPaymentNotConfigured": true,
  • "autoApproveSubscription": false,
  • "awsRegions": [
    ],
  • "azureRegions": [
    ],
  • "billingProductID": "abc123",
  • "billingProviders": [
    ],
  • "defaultBillingProvider": "STRIPE|BRING_YOUR_OWN",
  • "deploymentConfiguration": {
    },
  • "description": "A premium product tier",
  • "documentation": "Any documentation",
  • "exportUsageMetering": true,
  • "exportUsageMeteringConfig": {
    },
  • "gcpRegions": [
    ],
  • "isDisabled": false,
  • "maxNumberOfInstances": 5,
  • "name": "Premium",
  • "ociRegions": [
    ],
  • "onPremPlatforms": [
    ],
  • "planDescription": "A premium plan",
  • "pricePerUnit": {
    },
  • "pricing": {
    },
  • "privateRegions": [
    ],
  • "support": "Any support",
  • "tierType": "OMNISTRATE_DEDICATED_TENANCY|OMNISTRATE_MULTI_TENANCY|CUSTOM_TENANCY"
}

DisableProductTierFeature product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

id
required
string
Example: pt-12345678

Product tier ID

Request Body schema: application/json
required
feature
required
string

Feature to disable

scope
string

Feature scope

Responses

Request samples

Content type
application/json
{
  • "feature": "LOGS|METRICS|CLOUD_INSURANCE|MARKETPLACE|OPERATIONAL_STATUS|COMPLIANCE|APPLICATION_SECURITY",
  • "scope": "INTERNAL|CUSTOMER"
}

EnableProductTierFeature product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

id
required
string
Example: pt-12345678

Product tier ID

Request Body schema: application/json
required
object

The configuration parameters of the product tier feature

feature
required
string

Feature to enable

scope
string

Feature scope

Responses

Request samples

Content type
application/json
{
  • "configuration": {
    },
  • "feature": "LOGS|METRICS|CLOUD_INSURANCE|MARKETPLACE|OPERATIONAL_STATUS|COMPLIANCE|APPLICATION_SECURITY",
  • "scope": "INTERNAL|CUSTOMER"
}

CopyProductTier product-tier-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

sourceId
required
string
Example: pt-12345678

The source product tier ID

Request Body schema: application/json
required
allowCreatesWhenPaymentNotConfigured
boolean

Allow creates when payment not configured

autoApproveSubscription
boolean

Auto approve subscription or not

awsRegions
Array of strings

The AWS regions that this product tier is available on

azureRegions
Array of strings

The Azure regions that this product tier is available on

billingProductID
string

Optional billing product ID for tax purposes

description
required
string

A brief description of the product tier

documentation
string

Documentation

exportUsageMetering
boolean

Export usage metering data

object

Export usage metering data configuration

gcpRegions
Array of strings

The GCP regions that this product tier is available on

maxNumberOfInstances
integer <int64>

Maximum number of instances

name
required
string

Name of the product tier

ociRegions
Array of strings

The OCI regions that this product tier is available on

onPremPlatforms
Array of strings

The on prem platforms that this product tier is available on

planDescription
string

A brief description for the end user of the product tier

object

Price per unit.

pricing
any

Pricing

privateRegions
Array of strings

The Private cloud regions that this product tier is available on

serviceModelId
required
string

Service model ID

support
string

Support

targetTierType
string

Tier type

Responses

Request samples

Content type
application/json
{
  • "allowCreatesWhenPaymentNotConfigured": true,
  • "autoApproveSubscription": false,
  • "awsRegions": [
    ],
  • "azureRegions": [
    ],
  • "billingProductID": "abc123",
  • "description": "A premium product tier",
  • "documentation": "Any documentation",
  • "exportUsageMetering": true,
  • "exportUsageMeteringConfig": {
    },
  • "gcpRegions": [
    ],
  • "maxNumberOfInstances": 5,
  • "name": "Premium",
  • "ociRegions": [
    ],
  • "onPremPlatforms": [
    ],
  • "planDescription": "A premium plan",
  • "pricePerUnit": {
    },
  • "pricing": {
    },
  • "privateRegions": [
    ],
  • "serviceModelId": "Libero dolorum cumque id ipsam autem officia.",
  • "support": "Any support",
  • "targetTierType": "OMNISTRATE_DEDICATED_TENANCY|OMNISTRATE_MULTI_TENANCY|CUSTOM_TENANCY"
}

Response samples

Content type
application/json
"Ipsa consequuntur consequatur voluptate modi."

service-api-api

CreateServiceAPI service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

Request Body schema: application/json
required
description
required
string

A brief description of the service API bundle

serviceEnvironmentId
required
string

The service environment ID

Responses

Request samples

Content type
application/json
{
  • "description": "A MySQL SaaS API specializing in multi-writer multi-tenant clusters for high availability",
  • "serviceEnvironmentId": "se-123456"
}

Response samples

Content type
application/json
"Sunt omnis vero ratione molestiae eos earum."

DeleteServiceAPI service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: sa-12345678

The service API ID

Responses

DescribeServiceAPI service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: sa-12345678

The service API ID

Responses

Response samples

Content type
application/json
{
  • "apiVersion": "v1",
  • "deploymentConfigId": "Aut assumenda a et minima.",
  • "description": "A MySQL SaaS API specializing in multi-writer multi-tenant clusters for high availability",
  • "id": "Ut dolore incidunt accusantium sed.",
  • "serviceEnvironmentId": "se-123456",
  • "serviceId": "s-123456",
  • "serviceName": "mysql"
}

UpdateServiceAPI service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: sa-12345678

The service API ID

Request Body schema: application/json
required
description
string

A brief description of the service API bundle

Responses

Request samples

Content type
application/json
{
  • "description": "A MySQL SaaS API specializing in multi-writer multi-tenant clusters for high availability"
}

DiscardPendingChanges service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: sa-12345678

The service API ID

query Parameters
productTierId
string
Example: productTierId=pt-12345678

ProductTierID of the resource to describe pending changes forNeeds to specified in combination with the product tier version

Responses

DescribePendingChanges service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: sa-12345678

The service API ID

query Parameters
productTierId
string
Example: productTierId=pt-12345678

ProductTierID of the resource to describe pending changes forNeeds to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "id": "In ut consequatur debitis repellat voluptatum.",
  • "resourceChangeSets": {
    },
  • "serviceId": "s-123456"
}

DeprecateServiceAPI service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: sa-12345678

The service API ID

Responses

ReleaseServiceAPI service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: sa-12345678

The service API ID

Request Body schema: application/json
required
copySpecFromPreviousVersion
boolean
Default: false

When true, copies the specification from the previous version during the release operation.

dryRun
boolean
Default: false

When true, performs a dry run of the release operation without making any actual changes to the current pending changes and the service API.

isPreferred
boolean
Default: false

Indicates whether this version set is preferred.

productTierId
string

The product tier ID

versionSetName
string

The name of the version set to release

versionSetType
string

The version-set type of the product-tier.

Responses

Request samples

Content type
application/json
{
  • "copySpecFromPreviousVersion": false,
  • "dryRun": false,
  • "isPreferred": true,
  • "productTierId": "Alias in vel ut doloremque quasi.",
  • "versionSetName": "v1",
  • "versionSetType": "Major|Incremental|UserDefined"
}

ListServiceAPI service-api-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

serviceEnvironmentId
required
string
Example: se-12345678

The service environment ID

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

service-plan-api

ListServicePlans service-plan-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

serviceEnvironmentId
required
string
Example: se-12345678

Service environment ID

query Parameters
nextPageToken
string
Example: nextPageToken=token

The next token to use for pagination

pageSize
integer <int64>
Example: pageSize=10

The number of resources to return per page

skipHasPendingChangesCheck
boolean
Example: skipHasPendingChangesCheck=false

Skip the check for pending changes in the service plans

Responses

Response samples

Content type
application/json
{
  • "nextPageToken": "next-token",
  • "servicePlans": [
    ]
}

GetServicePlan service-plan-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID

productTierId
required
string
Example: pt-12345678

Product tier ID

Responses

Response samples

Content type
application/json
{
  • "AutoApproveSubscription": false,
  • "accountConfigIds": [
    ],
  • "activeAccountConfigIds": {
    },
  • "apiVersion": "v1",
  • "awsRegions": [
    ],
  • "azureRegions": [
    ],
  • "deploymentConfigId": "Quia suscipit sunt sed repudiandae.",
  • "gcpRegions": [
    ],
  • "hasPendingChanges": true,
  • "isProductTierDisabled": true,
  • "latestMajorVersion": "3.0",
  • "modelType": "OMNISTRATE_HOSTED|CUSTOMER_HOSTED|BYOA",
  • "ociRegions": [
    ],
  • "onPremPlatforms": [
    ],
  • "privateRegions": [
    ],
  • "productTierDescription": "A premium product tier",
  • "productTierDocumentation": "Any documentation",
  • "productTierFeatures": {
    },
  • "productTierId": "Dolores nostrum.",
  • "productTierKey": "premium",
  • "productTierName": "Premium",
  • "productTierPlanDescription": "A premium plan",
  • "productTierPricing": {
    },
  • "productTierSupport": "Any support",
  • "serviceApiDescription": "A MySQL SaaS API specializing in multi-writer multi-tenant clusters for high availability",
  • "serviceApiId": "Velit voluptatem aut ratione voluptas ad.",
  • "serviceEnvironmentId": "se-123456",
  • "serviceModelDescription": "A MySQL Hosted SaaS specializing in multi-writer clusters for high availability",
  • "serviceModelFeatures": [
    ],
  • "serviceModelId": "Dolorem dolores saepe autem.",
  • "serviceModelName": "MySQL multi-writer service hosted model",
  • "tierType": "OMNISTRATE_DEDICATED_TENANCY|OMNISTRATE_MULTI_TENANCY|CUSTOM_TENANCY",
  • "versionSetStatus": "Preferred|Active|Deprecated|Pending"
}

resource-api

ListResources resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: si-12345678

The ID of the service to list resources for

productTierId
required
string
Example: pt-12345678

The product tier ID

query Parameters
managed
boolean
Example: managed=false

Is resource managed by omnistrate

ProductTierVersion
string
Example: ProductTierVersion=Possimus mollitia cumque natus.

Product tier version of the instance to describe. If not specified, the latest version is described.

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token",
  • "resources": [
    ]
}

CreateResource resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

Request Body schema: application/json
required
object (AdditionalSecurityContext)
object (AgentConfiguration)
object (BackupConfiguration)
object (BlobStorageConfiguration)
object (ContainerImagesRegistryCopyConfiguration)
object

Custom labels for the resource

object

Custom sysctl settings for the resource

Array of objects (CustomULimits)

Custom ulimits for the resource

description
required
string

A brief description of the resource

disable
string

Allows resource to be disabled. Expression returning true/false can be used as value. Resource is enabled by default, if this property is not set.

Array of objects (EnvironmentVariable)

The environment variables that this resource requires

object (FileSystemConfiguration)
object (HelmChartConfiguration)
imageConfigId
string

The ID of the image configuration that this resource refers to

infraConfigId
string

The ID of the infrastructure configuration that this resource refers to

internal
boolean
Default: false

Whether this resource is internal or not

isProxy
boolean
Default: false

Whether this resource is a proxy or not

object (JobConfig)
key
string

The key of the resource

object (KustomizeConfiguration)
object (L4LoadBalancerConfiguration)
object (L7LoadBalancerConfiguration)
name
required
string

Name of the resource

object

The Terraform configurations for various OnPrem platforms

object (OperatorCRDConfiguration)
productTierId
required
string

The product tier ID

proxyType
string
Default: "PortsBasedProxy"

A proxy type of resource

Array of objects (ResourceDependency)
resourceType
string

The type of the resource

object

The Terraform configurations for various cloud providers

Responses

Request samples

Content type
application/json
{
  • "additionalSecurityContext": {
    },
  • "agentConfiguration": {
    },
  • "backupConfiguration": {
    },
  • "blobStorageConfiguration": {
    },
  • "containerImagesRegistryCopyConfiguration": {
    },
  • "customLabels": {
    },
  • "customSysCTLs": {
    },
  • "customULimits": [
    ],
  • "description": "A resource to manage a hosted public SaaS offering of a multi-writer MySQL service",
  • "disable": "{{ $var.disableExtraComponents }}",
  • "environmentVariables": [
    ],
  • "fileSystemConfiguration": {
    },
  • "helmChartConfiguration": {
    },
  • "imageConfigId": "Similique non quod vitae vel cupiditate.",
  • "infraConfigId": "Earum non.",
  • "internal": true,
  • "isProxy": true,
  • "jobConfig": {
    },
  • "key": "galera",
  • "kustomizeConfiguration": {
    },
  • "l4LoadBalancerConfiguration": {
    },
  • "l7LoadBalancerConfiguration": {
    },
  • "name": "Galera",
  • "onPremTerraformConfigurations": {
    },
  • "operatorCRDConfiguration": {
    },
  • "productTierId": "Corporis maxime nihil eaque et repudiandae et.",
  • "proxyType": "PortsBasedProxy",
  • "resourceDependencies": [
    ],
  • "resourceType": "|Generic|PortsBasedProxy|L4LoadBalancer|L7LoadBalancer|FileSystem|OperatorCRD|HelmChart|Kustomize",
  • "terraformConfigurations": {
    }
}

Response samples

Content type
application/json
"Facilis rerum necessitatibus voluptas."

DeleteResource resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Responses

DescribeResource resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Alias quia accusantium ut.

Product tier version of the resource to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the resource to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "actionHooks": [
    ],
  • "additionalSecurityContext": {
    },
  • "agentConfiguration": {
    },
  • "backupConfiguration": {
    },
  • "blobStorageConfiguration": {
    },
  • "capabilities": [
    ],
  • "containerImagesRegistryCopyConfiguration": {
    },
  • "customLabels": {
    },
  • "customSysCTLs": {
    },
  • "customULimits": [
    ],
  • "dependencies": [
    ],
  • "description": "An resource to manage a hosted public SaaS offering of a multi-writer MySQL service",
  • "disable": "{{ $var.disableExtraComponents }}",
  • "environmentVariables": [
    ],
  • "fileSystemConfiguration": {
    },
  • "helmChartConfiguration": {
    },
  • "id": "Ullam voluptatum voluptate nobis eveniet.",
  • "imageConfigId": "Velit nostrum est et blanditiis quis laboriosam.",
  • "infraConfigId": "Illum voluptas voluptas et iste laboriosam asperiores.",
  • "internal": true,
  • "isDeprecated": false,
  • "jobConfig": {
    },
  • "key": "galera",
  • "kustomizeConfiguration": {
    },
  • "l4LoadBalancerConfiguration": {
    },
  • "l7LoadBalancerConfiguration": {
    },
  • "name": "Galera",
  • "onPremTerraformConfigurations": {
    },
  • "operatorCRDConfiguration": {
    },
  • "productTierId": "Laborum aspernatur.",
  • "proxyType": "PortsBasedProxy",
  • "resourceType": "|Generic|PortsBasedProxy|L4LoadBalancer|L7LoadBalancer|FileSystem|OperatorCRD|HelmChart|Kustomize",
  • "serviceId": "s-123456",
  • "terraformConfigurations": {
    }
}

UpdateResource resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Request Body schema: application/json
required
object (AdditionalSecurityContext)
object (AgentConfiguration)
object (BackupConfiguration)
object (ContainerImagesRegistryCopyConfiguration)
object

Custom labels for the resource

object

Custom sysctl settings for the resource

Array of objects (CustomULimits)

Custom ulimits for the resource

Array of objects (ResourceDependency)
description
string

A brief description of the resource

disable
string

Allows resource to be disabled. Expression returning true/false can be used as value. Resource is enabled by default, if this property is not set.

Array of objects (EnvironmentVariable)

The environment variables that this resource requires

object (FileSystemConfiguration)
object (HelmChartConfiguration)
imageConfigId
string

The ID of the image configuration that this resource refers to

infraConfigId
string

The ID of the infrastructure configuration that this resource refers to

object (JobConfig)
object (KustomizeConfiguration)
object (L4LoadBalancerConfiguration)
object (L7LoadBalancerConfiguration)
name
string

Name of the resource

object

The Terraform configurations for various OnPrem platforms

object (OperatorCRDConfiguration)
object

The Terraform configurations for various cloud providers

Responses

Request samples

Content type
application/json
{
  • "additionalSecurityContext": {
    },
  • "agentConfiguration": {
    },
  • "backupConfiguration": {
    },
  • "containerImagesRegistryCopyConfiguration": {
    },
  • "customLabels": {
    },
  • "customSysCTLs": {
    },
  • "customULimits": [
    ],
  • "dependencies": [
    ],
  • "description": "A resource to manage a hosted public SaaS offering of a multi-writer MySQL service",
  • "disable": "{{ $var.disableExtraComponents }}",
  • "environmentVariables": [
    ],
  • "fileSystemConfiguration": {
    },
  • "helmChartConfiguration": {
    },
  • "imageConfigId": "Assumenda esse sit sint sed debitis natus.",
  • "infraConfigId": "Est deleniti et iure et sit iste.",
  • "jobConfig": {
    },
  • "kustomizeConfiguration": {
    },
  • "l4LoadBalancerConfiguration": {
    },
  • "l7LoadBalancerConfiguration": {
    },
  • "name": "Galera",
  • "onPremTerraformConfigurations": {
    },
  • "operatorCRDConfiguration": {
    },
  • "terraformConfigurations": {
    }
}

DeregisterActionHook resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service to which the hook belongs

id
required
string
Example: r-12345678

The ID of the resource to which the hook belongs

Request Body schema: application/json
required
scope
required
string

The scope of the hook

type
required
string

The type of hook to execute

Responses

Request samples

Content type
application/json
{
  • "scope": "CLUSTER|NODE",
  • "type": "INIT|ADD|REMOVE|PROMOTE|DEMOTE|HEALTH_CHECK|READINESS_CHECK|STARTUP_CHECK|PRE_START|POST_START|PRE_UPGRADE|POST_UPGRADE|PRE_STOP|POST_STOP"
}

ListActionHooks resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service to which the hook belongs

id
required
string
Example: r-12345678

The ID of the resource to which the hook belongs

Responses

Response samples

Content type
application/json
{
  • "hooks": [
    ]
}

RegisterActionHook resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service to which the hook belongs

id
required
string
Example: r-12345678

The ID of the resource to which the hook belongs

Request Body schema: application/json
required
commandTemplate
required
string

The Base64 encoded command template to execute

customCommand
Array of strings

The custom command to execute the hook with

customImage
string

The custom image to execute the hook

scope
required
string

The scope of the hook

type
required
string

The type of hook to execute

Responses

Request samples

Content type
application/json
{
  • "commandTemplate": "ZWNobyAiaGVsbG8gd29ybGQi",
  • "customCommand": [
    ],
  • "customImage": "my-custom-image:latest",
  • "scope": "CLUSTER|NODE",
  • "type": "INIT|ADD|REMOVE|PROMOTE|DEMOTE|HEALTH_CHECK|READINESS_CHECK|STARTUP_CHECK|PRE_START|POST_START|PRE_UPGRADE|POST_UPGRADE|PRE_STOP|POST_STOP"
}

DisableResourceCapability resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Request Body schema: application/json
required
capability
required
string

The capability to disable

Responses

Request samples

Content type
application/json
{
  • "capability": "SERVERLESS|SERVICE_ACCOUNT_POLICIES|PROCESS_CORE_DUMP|CUSTOM_DNS|SIDECARS"
}

ListResourceCapabilities resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Veritatis non voluptas officia molestiae.

Product tier version of the instance to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

Product tier id of the instance to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "capabilities": [
    ]
}

EnableResourceCapability resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Request Body schema: application/json
required
capability
required
string

The type of capability of a resource

object

The configuration parameters of a capability of a resource

Responses

Request samples

Content type
application/json
{
  • "capability": "SERVERLESS|SERVICE_ACCOUNT_POLICIES|PROCESS_CORE_DUMP|CUSTOM_DNS|SIDECARS",
  • "configuration": {
    }
}

ListDependentResource resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Responses

Response samples

Content type
application/json
{
  • "id": "Sunt doloribus animi et alias perferendis dolor.",
  • "ids": [
    ],
  • "nextPageToken": "next-token",
  • "serviceId": "s-123456"
}

DeprecateResource resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Responses

UnsetEnvironmentVariables resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Request Body schema: application/json
required
Array of objects (EnvironmentVariable)

The environment variables that this resource is no longer dependent on

Responses

Request samples

Content type
application/json
{
  • "environmentVariables": [
    ]
}

SetEnvironmentVariables resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Request Body schema: application/json
required
Array of objects (EnvironmentVariable)

The environment variables that this resource requires

Responses

Request samples

Content type
application/json
{
  • "environmentVariables": [
    ]
}

ListFiles resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

query Parameters
productTierId
string
Example: productTierId=pt-12345678

ProductTierId of the config file to describe

productTierVersion
string
Example: productTierVersion=1.0

Product tier version of the config file to describe. If missing, last version is described

Responses

Response samples

Content type
application/json
{
  • "files": [
    ]
}

AddFile resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

header Parameters
Content-Type
stringmultipart/[^;]+; boundary=.+
Default: multipart/form-data; boundary=boundary
Example: multipart/form-data; boundary=boundary

Content-Type header, must define value for multipart boundary.

Name
required
string
Example: file.txt

The name of the file

Description
required
string
Example: A file to store the configuration for the resource

The description of the file

FileType
required
string
Example: Config

The type of the file

MountPath
required
string
Example: /etc/config

The mount path of the file

Responses

Response samples

Content type
application/json
"Sed qui qui."

RemoveFile resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

fileId
required
string
Example: file-12345678

The ID of the file

Responses

GetFile resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

fileId
required
string
Example: f-12345678

The ID of the file

query Parameters
productTierId
string
Example: productTierId=pt-12345678

Product Tier ID of the config files to list

productTierVersion
string
Example: productTierVersion=1.0

Product Tier version of the config files to list. If missing, last version is used

Responses

Response samples

Content type
application/json
"string"

UpdateFileContent resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

fileId
required
string
Example: f-12345678

The ID of the file

header Parameters
Content-Type
stringmultipart/[^;]+; boundary=.+
Default: multipart/form-data; boundary=boundary
Example: multipart/form-data; boundary=boundary

Content-Type header, must define value for multipart boundary.

Responses

UpdateFileMetadata resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

fileId
required
string
Example: f-12345678

The ID of the file

Request Body schema: application/json
required
description
string

The description of the file

mountPath
string

The mount path of the file

name
string

The name of the file

Responses

Request samples

Content type
application/json
{
  • "description": "A file to store the configuration for the resource",
  • "mountPath": "/etc/config",
  • "name": "file.txt"
}

DeregisterResourceMetricsConfig resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Responses

DescribeResourceMetricsConfig resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Nostrum possimus non nesciunt illo ut.

Product tier version of the resource to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the resource to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{}

RegisterResourceMetricsConfig resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Request Body schema: application/json
required
metricEndpoint
required
string

The local host endpoint to supply prometheus metric

Responses

Request samples

Content type
application/json
{}

RemoveResourceDependency resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

resourceDependencyId
required
string
Example: r-12345678

The ID of the resource dependency to remove

Responses

AddResourceDependency resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

resourceDependencyId
required
string
Example: r-12345678

The ID of the resource to be added as a dependency

Request Body schema: application/json
required
object

A map of the source parameter to the dependency resource parameter

Responses

Request samples

Content type
application/json
{
  • "parameterMap": {
    }
}

UndeprecateResource resource-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID that this API bundle belongs to

id
required
string
Example: r-12345678

The ID of the resource

Responses

tier-version-set-api

CustomerListTierVersionSets tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

query Parameters
nextPageToken
string
Example: nextPageToken=token

The next token to use for pagination

pageSize
integer <int64>
Example: pageSize=10

The number of resources to return per page

Responses

Response samples

Content type
application/json
{
  • "nextPageToken": "next-token",
  • "tierVersionSets": [
    ]
}

ListTierVersionSets tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

query Parameters
latestMajorVersionOnly
boolean
Example: latestMajorVersionOnly=true

If true, the latest major version is returned. The parameter needs to be specified in isolation.

latestIncrementalVersionForMajorVersion
string
Example: latestIncrementalVersionForMajorVersion=3.0

Returns the latest incremental version for the given major version. The paramenter needs to be specified in isolation.

nextPageToken
string
Example: nextPageToken=token

The next token to use for pagination

pageSize
integer <int64>
Example: pageSize=10

The number of resources to return per page

Responses

Response samples

Content type
application/json
{
  • "nextPageToken": "next-token",
  • "tierVersionSets": [
    ]
}

CreateTierVersionSet tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

Request Body schema: application/json
required
description
string

A brief description of the product-tier version set.

name
string

The name of the product-tier version set.

parentVersion
string

The parent version of this version set.

type
required
string

The version-set type of the product-tier.

Responses

Request samples

Content type
application/json
{
  • "description": "Vero consequatur.",
  • "name": "Major version set",
  • "parentVersion": "2.0",
  • "type": "Major|Incremental|UserDefined"
}

Response samples

Content type
application/json
{
  • "version": "3.0"
}

DescribeTierVersionSet tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the specific version set.

Responses

Response samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "baseVersion": "3.0",
  • "createdAt": "2020-01-01T00:00:00Z",
  • "createdBy": "John Doe",
  • "description": "Atque dolorem fuga aut saepe in.",
  • "enabledFeatures": [
    ],
  • "features": {
    },
  • "instanceCount": 12,
  • "latestUpgradePathId": "Illo dolorem nobis ad similique qui.",
  • "name": "Regular version set",
  • "parentVersion": "2.0",
  • "productTierId": "Et et id tenetur tempora ut.",
  • "releasedAt": "2020-01-01T00:00:00Z",
  • "releasedBy": "John Doe",
  • "resources": [
    ],
  • "serviceId": "s-123456",
  • "serviceModelId": "Culpa doloribus ullam architecto occaecati ea.",
  • "status": "Preferred|Active|Deprecated|Pending",
  • "type": "Major|Incremental|UserDefined",
  • "updatedAt": "2020-01-01T00:00:00Z",
  • "version": "3.0"
}

UpdateTierVersionSet tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the specific version set.

Request Body schema: application/json
required
name
required
string

The name of the product-tier version set.

Responses

Request samples

Content type
application/json
{
  • "name": "Updated version set name"
}

Response samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "baseVersion": "3.0",
  • "createdAt": "2020-01-01T00:00:00Z",
  • "createdBy": "John Doe",
  • "description": "Omnis quasi in nihil assumenda sed.",
  • "enabledFeatures": [
    ],
  • "features": {
    },
  • "instanceCount": 12,
  • "latestUpgradePathId": "Aperiam quasi sit tempore aliquid incidunt voluptas.",
  • "name": "Regular version set",
  • "parentVersion": "2.0",
  • "productTierId": "Assumenda ex quidem possimus possimus velit.",
  • "releasedAt": "2020-01-01T00:00:00Z",
  • "releasedBy": "John Doe",
  • "resources": [
    ],
  • "serviceId": "s-123456",
  • "serviceModelId": "Accusamus voluptatum.",
  • "status": "Preferred|Active|Deprecated|Pending",
  • "type": "Major|Incremental|UserDefined",
  • "updatedAt": "2020-01-01T00:00:00Z",
  • "version": "3.0"
}

DeprecateTierVersionSet tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the specific version set.

Responses

Response samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "baseVersion": "3.0",
  • "createdAt": "2020-01-01T00:00:00Z",
  • "createdBy": "John Doe",
  • "description": "Corporis et.",
  • "enabledFeatures": [
    ],
  • "features": {
    },
  • "instanceCount": 12,
  • "latestUpgradePathId": "Modi qui laborum.",
  • "name": "Regular version set",
  • "parentVersion": "2.0",
  • "productTierId": "Aut quia architecto qui est.",
  • "releasedAt": "2020-01-01T00:00:00Z",
  • "releasedBy": "John Doe",
  • "resources": [
    ],
  • "serviceId": "s-123456",
  • "serviceModelId": "Et sunt ducimus voluptas quis quisquam.",
  • "status": "Preferred|Active|Deprecated|Pending",
  • "type": "Major|Incremental|UserDefined",
  • "updatedAt": "2020-01-01T00:00:00Z",
  • "version": "3.0"
}

DiffTierVersionSets tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the version set.

anotherVersion
required
string
Example: 3.1

The target version to compare against.

Responses

Response samples

Content type
application/json
{
  • "anotherVersion": "3.1",
  • "productTierId": "Quo aliquid qui repellat.",
  • "resourceChangeSets": {
    },
  • "serviceId": "s-123456",
  • "version": "3.0"
}

DescribeTierVersionSetMetadata tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the specific version set.

Responses

Response samples

Content type
application/json
{
  • "productTierId": "Aspernatur possimus quae et iure quos odit.",
  • "releaseNotes": "Non tenetur omnis.",
  • "serviceId": "s-123456",
  • "version": "Quae eaque voluptatibus."
}

UpdateTierVersionSetMetadata tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the specific version set.

Request Body schema: application/json
required
releaseNotes
string

Release notes for the version set.

Responses

Request samples

Content type
application/json
{
  • "releaseNotes": "Deleniti placeat vero temporibus voluptatem."
}

Response samples

Content type
application/json
{
  • "productTierId": "Architecto quasi pariatur sint blanditiis.",
  • "releaseNotes": "Enim quia ut voluptates.",
  • "serviceId": "s-123456",
  • "version": "Exercitationem adipisci."
}

PromoteTierVersionSet tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the specific version set.

Responses

Response samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "baseVersion": "3.0",
  • "createdAt": "2020-01-01T00:00:00Z",
  • "createdBy": "John Doe",
  • "description": "Iusto vero quidem tempore sint.",
  • "enabledFeatures": [
    ],
  • "features": {
    },
  • "instanceCount": 12,
  • "latestUpgradePathId": "Modi libero ut ut odio quae placeat.",
  • "name": "Regular version set",
  • "parentVersion": "2.0",
  • "productTierId": "Perspiciatis qui aut.",
  • "releasedAt": "2020-01-01T00:00:00Z",
  • "releasedBy": "John Doe",
  • "resources": [
    ],
  • "serviceId": "s-123456",
  • "serviceModelId": "Error excepturi sed incidunt est consectetur.",
  • "status": "Preferred|Active|Deprecated|Pending",
  • "type": "Major|Incremental|UserDefined",
  • "updatedAt": "2020-01-01T00:00:00Z",
  • "version": "3.0"
}

ReleaseTierVersionSet tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

version
required
string
Example: 3.0

The version number for the specific version set.

Request Body schema: application/json
required
isPreferred
boolean

Indicates whether this version set is preferred.

name
string

The name of the product-tier version set.

Responses

Request samples

Content type
application/json
{
  • "isPreferred": true,
  • "name": "Major version set"
}

Response samples

Content type
application/json
{
  • "autoApproveSubscription": false,
  • "baseVersion": "3.0",
  • "createdAt": "2020-01-01T00:00:00Z",
  • "createdBy": "John Doe",
  • "description": "Animi sit.",
  • "enabledFeatures": [
    ],
  • "features": {
    },
  • "instanceCount": 12,
  • "latestUpgradePathId": "Doloribus et molestias ut iure cupiditate autem.",
  • "name": "Regular version set",
  • "parentVersion": "2.0",
  • "productTierId": "Quos omnis veniam libero assumenda quo ex.",
  • "releasedAt": "2020-01-01T00:00:00Z",
  • "releasedBy": "John Doe",
  • "resources": [
    ],
  • "serviceId": "s-123456",
  • "serviceModelId": "Est sit nulla quos.",
  • "status": "Preferred|Active|Deprecated|Pending",
  • "type": "Major|Incremental|UserDefined",
  • "updatedAt": "2020-01-01T00:00:00Z",
  • "version": "3.0"
}

GetTierVersionSetSpec tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

query Parameters
version
string
Example: version=3.0

The version number for the specific version set. If not specified, returns the latest preferred or active version.

Responses

Response samples

Content type
application/json
{
  • "createdAt": "1978-06-20T01:57:24Z",
  • "productTierId": "Reprehenderit magni id blanditiis corrupti ea.",
  • "serviceId": "s-123456",
  • "specContent": "{\"RawYAML\":\"bmFtZTogbXktc2VydmljZQpkZXBsb3ltZW50OgogIGhvc3RlZDoKICAgIGFjY291bnQ6IC4uLg==\",\"Configs\":{\"database_url\":\"cG9zdGdyZXM6Ly9sb2NhbGhvc3Q6NTQzMi9teWRi\"},\"Secrets\":{\"api_key\":\"c2VjcmV0X2FwaV9rZXlfdjEyMzQ1\"}}",
  • "updatedAt": "2004-09-26T18:29:40Z",
  • "version": "1.0"
}

ListTierVersionSetSpecs tier-version-set-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

ID of the Service

productTierId
required
string
Example: Beatae beatae.

The product tier ID that this version set belongs to.

Responses

Response samples

Content type
application/json
{
  • "specs": [
    ]
}

input-parameter-api

CreateInputParameter input-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

Request Body schema: application/json
required
defaultValue
string

Default value to use for an optional input parameter represented as a string

dependentResourceId
string

The ID of the resource whose instance this input parameter depends on

description
required
string

A brief description of the input parameter

hasOptions
boolean
Default: false

Marks the input parameter to be selectable from a list of values

isList
boolean
Default: false

Marks the input parameter as a list of values

key
required
string non-empty ^[a-zA-Z][a-zA-Z0-9_]*$

Key of the input parameter

object

A map for labeled options. The key is the label and the value is the option. When the option is selected, the label will be displayed to the end customer. Specify either options or labeledOptions when defining the input parameter.

object (Limits)

Limit of a parameter

modifiable
required
boolean

Marks the input parameter as immutable

name
required
string non-empty

External name for the input parameter

options
Array of strings

A list of options to restrict the value of the input parameter to (represented as a string)

regex
string

Regular expression pattern for validating the input parameter value

required
required
boolean

Enforces the input parameter as a required parameter

resourceId
required
string

The ID of the resource that this input parameter belongs to

object (InputParameterScope)

Scope of the input parameter

tabIndex
integer <int64>
Default: 0

Index for parameter ordering in the SaaS portal

type
required
string

Responses

Request samples

Content type
application/json
{
  • "defaultValue": "default value",
  • "dependentResourceId": "Voluptas repellendus quia quia aut.",
  • "description": "Sint nostrum deserunt.",
  • "hasOptions": true,
  • "isList": true,
  • "key": "bg",
  • "labeledOptions": {
    },
  • "limits": {
    },
  • "modifiable": false,
  • "name": "bb",
  • "options": [
    ],
  • "regex": "^[a-zA-Z0-9_-]+$",
  • "required": true,
  • "resourceId": "Cum dolor maiores et recusandae atque.",
  • "scope": {
    },
  • "tabIndex": 1,
  • "type": "Boolean|Float64|String|Resource|Secret|Password"
}

Response samples

Content type
application/json
"Odio non odio fugiat."

DeleteInputParameter input-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

id
required
string
Example: var-12345678

ID of the input parameter

Responses

DescribeInputParameter input-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

id
required
string
Example: var-12345678

ID of the input parameter

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Pariatur sit ut vitae officiis.

Product tier version of the instance to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

Product tier id of the instance to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "defaultValue": "true",
  • "dependentResourceId": "Animi quia asperiores aut consequatur.",
  • "description": "Numquam quasi repudiandae est et sint modi.",
  • "hasOptions": false,
  • "id": "Dolor earum.",
  • "isList": true,
  • "key": "n01",
  • "labeledOptions": {
    },
  • "limits": {
    },
  • "modifiable": false,
  • "name": "g9",
  • "options": [
    ],
  • "regex": "^[a-zA-Z0-9_-]+$",
  • "required": false,
  • "resourceId": "Quo dolorum voluptas.",
  • "scope": {
    },
  • "serviceId": "s-123456",
  • "tabIndex": 1,
  • "type": "Boolean|Float64|String|Resource|Secret|Password"
}

UpdateInputParameter input-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

id
required
string
Example: var-12345678

ID of the input parameter

Request Body schema: application/json
required
defaultValue
string

Default value to use for an optional input parameter represented as a string

description
string

A brief description of the input parameter

hasOptions
boolean

Marks the input parameter to be selectable from a list of values

object

A map for labeled options. The key is the label and the value is the option. When the option is selected, the label will be displayed to the end customer. Specify either options or labeledOptions when defining the input parameter.

object (Limits)

Limit of a parameter

modifiable
boolean

Marks the input parameter as immutable

name
string non-empty

External name for the input parameter

options
Array of strings

A list of options to restrict the value of the input parameter to (represented as a string)

regex
string

Regular expression pattern for validating the input parameter value

required
boolean

Enforces the input parameter as a required parameter

object (InputParameterScope)

Scope of the input parameter

tabIndex
integer <int64>
Default: 0

Index for parameter ordering in the SaaS portal

Responses

Request samples

Content type
application/json
{
  • "defaultValue": "[\"1\", \"2.8\", \"3\"]",
  • "description": "Odio et.",
  • "hasOptions": false,
  • "labeledOptions": {
    },
  • "limits": {
    },
  • "modifiable": true,
  • "name": "f3",
  • "options": [
    ],
  • "regex": "^[0-9]+$",
  • "required": true,
  • "scope": {
    },
  • "tabIndex": 1
}

ListInputParameter input-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

resourceId
required
string
Example: r-12345678

The ID of the resource that this input parameter belongs to

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Doloremque dolorem consectetur doloremque iusto officia minima.

Product tier version of the instance to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

Product tier id of the instance to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "inputParameters": [
    ],
  • "nextPageToken": "next-token"
}

output-parameter-api

CreateOutputParameter output-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

Request Body schema: application/json
required
description
required
string non-empty

Description of the output variable being exported

object (GenericCommandValueProviderConfig)

Configuration for generic command-based value provider

key
required
string non-empty ^[a-zA-Z][a-zA-Z0-9_]*$

Key of the output variable being exported

object (KubectlValueProviderConfig)

Configuration for kubectl-based value provider

name
required
string non-empty

External name of the output variable being exported

resourceId
required
string

The ID of the resource that this output parameter belongs to

value
string

Value of the output variable being exported

valueRef
string

Reference to another variable that will be used to set the value of the output variable being exported

valueType
string

Responses

Request samples

Content type
application/json
{
  • "description": "Username of the user created in the target system",
  • "genericCommandValueProvider": {
    },
  • "key": "username",
  • "kubectlValueProvider": {
    },
  • "name": "Username",
  • "resourceId": "Odit blanditiis perferendis.",
  • "value": "johndoe",
  • "valueRef": "$var.username",
  • "valueType": "Boolean|Float64|String|Secret|Password"
}

Response samples

Content type
application/json
"Sint quod voluptas."

DeleteOutputParameter output-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

id
required
string
Example: op-12345678

The ID of the output parameter

Responses

DescribeOutputParameter output-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

id
required
string
Example: op-12345678

The ID of the output parameter

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Aut a ut eum sapiente facere.

Product tier version of the resource to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the resource to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "description": "Username of the user created in the target system",
  • "genericCommandValueProvider": {
    },
  • "id": "Id dolores in enim.",
  • "key": "username",
  • "kubectlValueProvider": {
    },
  • "name": "Username",
  • "resourceId": "Autem ut reiciendis recusandae velit.",
  • "serviceId": "s-123456",
  • "value": "johndoe",
  • "valueRef": "$var.username",
  • "valueType": "Boolean|Float64|String|Secret|Password"
}

UpdateOutputParameter output-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

id
required
string
Example: op-12345678

The ID of the output parameter

Request Body schema: application/json
required
description
string non-empty

Description of the output variable being exported

object (GenericCommandValueProviderConfig)

Configuration for generic command-based value provider

object (KubectlValueProviderConfig)

Configuration for kubectl-based value provider

name
string non-empty

External name of the output variable being exported

value
string non-empty

Value of the output variable being exported

valueRef
string

Reference to an input variable that will be used to set the value of the output variable being exported

valueType
string

Responses

Request samples

Content type
application/json
{
  • "description": "Username of the user created in the target system",
  • "genericCommandValueProvider": {
    },
  • "kubectlValueProvider": {
    },
  • "name": "Username",
  • "value": "johndoe",
  • "valueRef": "$var.username",
  • "valueType": "Boolean|Float64|String|Secret|Password"
}

ListOutputParameter output-parameter-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service that this output parameter belongs to

resourceId
required
string
Example: r-12345678

The ID of the resource that this output parameter belongs to

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Voluptatem debitis.

Product tier version of the resource to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the resource to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token",
  • "outputParameters": [
    ]
}

vunit-api

The external facing VUnit API

ListVUnits vunit-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID for the VUnit

serviceModelId
required
string
Example: sm-12345678

Service Model ID for the VUnit

Request Body schema: application/json
required
cloudProvider
required
string

The infra / cloud provider name

region
required
string

Region code specific to the cloud-provider

Responses

Request samples

Content type
application/json
{
  • "cloudProvider": "aws|azure|gcp|all",
  • "region": "us-west-2"
}

Response samples

Content type
application/json
{
  • "ids": {
    },
  • "nextPageToken": "next-token"
}

DescribeNetwork vunit-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID context

id
required
string
Example: n-12345678

Network to operate on

Responses

Response samples

Content type
application/json
{
  • "cidr": "10.0.0.0/16",
  • "id": "Ut impedit earum voluptatem.",
  • "networkConfigId": "Aliquam qui qui dolorem.",
  • "serviceId": "s-123456",
  • "type": "PUBLIC",
  • "vunitId": "Laboriosam recusandae qui est at nulla eum."
}

DescribeVUnit vunit-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

Service ID for the VUnit

id
required
string
Example: vu-12345678

VUnit to operate on

Responses

Response samples

Content type
application/json
{
  • "cloudProvider": "aws|azure|gcp|all",
  • "id": "Perferendis dolores quis dolor magni.",
  • "networkIds": [
    ],
  • "region": "us-west-2",
  • "serviceId": "s-123456",
  • "serviceModelId": "Omnis accusamus."
}

infra-config-api

The infra config API manages the infra for Omnistrate resources

CreateInfraConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

Request Body schema: application/json
required
computeConfigId
string

The compute config ID

object (CustomTag)

Custom tag

description
required
string

The description for the infra config

name
required
string

The name of the infra config

networkConfigId
string

The network config ID

serviceEnvironmentId
required
string

The service environment ID

storageConfigId
string

The storage config ID

Responses

Request samples

Content type
application/json
{
  • "computeConfigId": "Sit illo quia sit.",
  • "customTag": {
    },
  • "description": "Infra config used for the base tier MySQL service",
  • "name": "MySQL Writer Infra Config",
  • "networkConfigId": "Enim animi deleniti voluptatem quae repudiandae temporibus.",
  • "serviceEnvironmentId": "se-123456",
  • "storageConfigId": "Quas rem sed dolore eos porro."
}

Response samples

Content type
application/json
"Officia exercitationem asperiores nulla."

DeleteInfraConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Responses

DescribeInfraConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Ut a.

Product tier version of the infra config to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the infra config to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "computeConfigId": "Corrupti eligendi quia laborum tenetur.",
  • "customTag": {
    },
  • "description": "Infra config used for the base tier MySQL service",
  • "id": "Fugit quaerat earum vel animi quia quidem.",
  • "name": "MySQL Writer Infra Config",
  • "networkConfigId": "Temporibus enim totam.",
  • "serviceEnvironmentId": "se-123456",
  • "serviceId": "s-123456",
  • "storageConfigId": "Sit asperiores."
}

UpdateInfraConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Request Body schema: application/json
required
computeConfigId
string

The compute config ID

object (CustomTag)

Custom tag

description
string

The description for the infra config

name
string

The name of the infra config

networkConfigId
string

The network config ID

storageConfigId
string

The storage config ID per compute node

Responses

Request samples

Content type
application/json
{
  • "computeConfigId": "Et laudantium aut in odio inventore.",
  • "customTag": {
    },
  • "description": "Infra config used for the base tier MySQL service",
  • "name": "MySQL Writer Infra Config",
  • "networkConfigId": "Laudantium quidem impedit quis voluptatum velit.",
  • "storageConfigId": "Et nulla sed."
}

ListAssociatedResources infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Responses

Response samples

Content type
application/json
{
  • "id": "Quod vel sunt quia ut perspiciatis.",
  • "resourceIds": [
    ],
  • "serviceId": "s-123456"
}

DetachComputeConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Responses

DetachNetworkConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Responses

ReleaseInfraConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Request Body schema: application/json
required
productTierId
string

The product tier ID

Responses

Request samples

Content type
application/json
{
  • "productTierId": "Aut nihil aut atque."
}

RolloutFleetInfra infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Responses

RolloutFleetInfraStatus infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Responses

Response samples

Content type
application/json
{
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING"
}

DetachStorageConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: ic-12345678

Infra Config ID to operate on

Responses

ListInfraConfig infra-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

serviceEnvironmentId
required
string
Example: se-12345678

The service environment ID

query Parameters
managed
boolean
Example: managed=false

Is infra config managed by omnistrate

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

image-config-api

The image config API manages the image config for Omnistrate entities

CreateImageConfig image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID to use for the infra

Request Body schema: application/json
required
object (CustomImageCommandsAndArgs)

Commands and arguments to run in the container

description
required
string

A brief description of the image configuration

imageName
required
string non-empty

Name of the container image

imageRegistryId
string

The image registry ID to use for the infra

imageSignaturePublicKeyPEM
string

PEM-encoded Public key part of the key used to sign the container image

imageTag
string
Default: "latest"

Tag representing the specific software image version

serviceEnvironmentId
required
string

The service environment ID

Responses

Request samples

Content type
application/json
{
  • "customImageCommandsAndArgs": {
    },
  • "description": "A image configuration for my new entity",
  • "imageName": "mysql",
  • "imageRegistryId": "Ut deserunt at adipisci nemo dolorum.",
  • "imageSignaturePublicKeyPEM": "-----BEGIN PUBLIC KEY-----\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExXBS01nPRugGbKCN8m9sSSTkGvPT\n7a1Jn74No2dTkp+tQ+ZyBa7ClKbEXFaR2mzy06q0ivJAxPi1pixofIXE0Q==\n-----END PUBLIC KEY-----\n",
  • "imageTag": "latest",
  • "serviceEnvironmentId": "se-123456"
}

Response samples

Content type
application/json
"Et debitis autem voluptatem vel."

DeleteImageConfig image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: imgc-12345678

The image configuration ID

Responses

DescribeImageConfig image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: imgc-12345678

The image configuration ID

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Aut iste doloremque minima fuga assumenda numquam.

Product tier version of the image config to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the image config to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "customImageCommandsAndArgs": {
    },
  • "description": "An image configuration for my new entity",
  • "id": "Enim inventore voluptate.",
  • "imageName": "mysql",
  • "imageRegistryId": "Porro perferendis dignissimos.",
  • "imageSignaturePublicKeyPEM": "-----BEGIN PUBLIC KEY-----\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExXBS01nPRugGbKCN8m9sSSTkGvPT\n7a1Jn74No2dTkp+tQ+ZyBa7ClKbEXFaR2mzy06q0ivJAxPi1pixofIXE0Q==\n-----END PUBLIC KEY-----\n",
  • "imageTag": "v1",
  • "serviceEnvironmentId": "se-123456",
  • "serviceId": "s-123456"
}

UpdateImageConfig image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: imgc-12345678

The image configuration ID

Request Body schema: application/json
required
object (CustomImageCommandsAndArgs)

Commands and arguments to run in the container

description
string

A brief description of the image configuration

imageName
string non-empty

Name of the container image

imageRegistryId
string

The image registry ID to use for the infra

imageSignaturePublicKeyPEM
string

PEM-encoded Public key part of the key used to sign the container image

imageTag
string

Tag representing the software image version that is currently preferred

Responses

Request samples

Content type
application/json
{
  • "customImageCommandsAndArgs": {
    },
  • "description": "An image configuration for my new entity",
  • "imageName": "mysql",
  • "imageRegistryId": "Vel repellat est nihil consequuntur.",
  • "imageSignaturePublicKeyPEM": "-----BEGIN PUBLIC KEY-----\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExXBS01nPRugGbKCN8m9sSSTkGvPT\n7a1Jn74No2dTkp+tQ+ZyBa7ClKbEXFaR2mzy06q0ivJAxPi1pixofIXE0Q==\n-----END PUBLIC KEY-----\n",
  • "imageTag": "v1"
}

ReleaseImageConfig image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: imgc-12345678

The image configuration ID

Request Body schema: application/json
required
productTierId
string

The product tier ID

Responses

Request samples

Content type
application/json
{
  • "productTierId": "Delectus et possimus aliquid voluptatem maiores voluptatem."
}

RolloutFleetImageStatus image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: imgc-12345678

The image configuration ID

Responses

Response samples

Content type
application/json
{
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING"
}

RolloutFleetImageConfig image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: imgc-12345678

The image configuration ID

Responses

ListImageConfigs image-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID to use for the infra

serviceEnvironmentId
required
string
Example: se-12345678

The service environment ID

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

deployment-config-api

The deployment config API manages the deployment config for Omnistrate entities

ListDeploymentConfigs deployment-config-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateDeploymentConfig deployment-config-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
description
required
string

A brief description of the deployment config

object (InfraRollConfiguration)

The rollout configuration to use for making changes to the resources backed by this infra

name
required
string

Name of the deployment config

rolloutPriorityList
Array of strings

Responses

Request samples

Content type
application/json
{
  • "description": "A production deployment config",
  • "infraRollConfiguration": {
    },
  • "name": "Production",
  • "rolloutPriorityList": [
    ]
}

Response samples

Content type
application/json
"Cum aut provident."

DeleteDeploymentConfig deployment-config-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: dc-12345678

The deployment configuration ID

Responses

DescribeDeploymentConfig deployment-config-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Examples:
  • default - default

The deployment configuration ID

Responses

Response samples

Content type
application/json
{
  • "description": "A production deployment config",
  • "id": "Reiciendis mollitia explicabo non deserunt voluptas.",
  • "infraRollConfiguration": {
    },
  • "name": "Production",
  • "rolloutPriorityList": [
    ]
}

UpdateDeploymentConfig deployment-config-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: dc-12345678

The deployment configuration ID

Request Body schema: application/json
required
description
string

A brief description of the deployment config

object (InfraRollConfiguration)

The rollout configuration to use for making changes to the resources backed by this infra

name
string

Name of the deployment config

rolloutPriorityList
Array of strings

Responses

Request samples

Content type
application/json
{
  • "description": "A production deployment config",
  • "infraRollConfiguration": {
    },
  • "name": "Production",
  • "rolloutPriorityList": [
    ]
}

compute-config-api

The compute config API manages the compute config for Omnistrate entities

ListComputeConfig compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

query Parameters
managed
boolean
Example: managed=false

Is compute config managed by omnistrate

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateComputeConfig compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

Request Body schema: application/json
required
object (AutoscalingPolicy)

Autoscaling policy for compute nodes

cpuArchitecture
string

Processor architecture

description
required
string non-empty

Description of the compute config

name
required
string non-empty

Name of the compute config

replicaCount
string

Number of replicas to provision for this logical pool of nodes per instance of the resource

object (ResourceSpec)

Resource requirements

rootVolumeSizeGi
integer <int64>

Size of the root volume in Gi

object (WarmPoolConfiguration)

Warm pool configuration for compute nodes

Responses

Request samples

Content type
application/json
{
  • "autoscalingPolicy": {
    },
  • "cpuArchitecture": "X86_64|ARM64",
  • "description": "my compute config description",
  • "name": "my compute config",
  • "replicaCount": "3",
  • "resources": {
    },
  • "rootVolumeSizeGi": 10,
  • "warmPoolConfiguration": {
    }
}

Response samples

Content type
application/json
"Omnis expedita temporibus unde dolorem."

DeleteComputeConfig compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: cc-12345678

ID of the compute config

Responses

DescribeComputeConfig compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: cc-12345678

ID of the compute config

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Aut autem commodi dicta aliquam ad aut.

Product tier version of the compute config to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the compute config to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "autoscalingPolicy": {
    },
  • "computeInstanceTypeConfigOverrides": {
    },
  • "cpuArchitecture": "X86_64|ARM64",
  • "description": "my compute config description",
  • "id": "Eaque recusandae provident officiis et quia.",
  • "infraConfigIDs": [
    ],
  • "instanceTypes": {
    },
  • "name": "my compute config",
  • "replicaCount": "3",
  • "resources": {
    },
  • "rootVolumeSizeGi": 10,
  • "serviceId": "s-123456",
  • "warmPoolConfiguration": {
    }
}

UpdateComputeConfig compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: cc-12345678

ID of the compute config

Request Body schema: application/json
required
object (AutoscalingPolicy)

Autoscaling policy for compute nodes

cpuArchitecture
string

Processor architecture

description
string non-empty

Description of the compute config

name
string non-empty

Name of the compute config

replicaCount
string

Number of replicas to provision for this logical pool of nodes per instance of the resource

object (ResourceSpec)

Resource requirements

rootVolumeSizeGi
integer <int64>

Size of the root volume in Gi

object (WarmPoolConfiguration)

Warm pool configuration for compute nodes

Responses

Request samples

Content type
application/json
{
  • "autoscalingPolicy": {
    },
  • "cpuArchitecture": "X86_64|ARM64",
  • "description": "my compute config description",
  • "name": "my compute config",
  • "replicaCount": "3",
  • "resources": {
    },
  • "rootVolumeSizeGi": 10,
  • "warmPoolConfiguration": {
    }
}

RemoveComputeInstanceType compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: cc-12345678

ID of the compute config

Request Body schema: application/json
required
cloudProviderName
required
string

The cloud provider for this compute instance type config

instanceType
required
string

The instance type for this compute instance type config

Responses

Request samples

Content type
application/json
{
  • "cloudProviderName": "aws|azure|gcp|all",
  • "instanceType": "t3.micro"
}

AddComputeInstanceType compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: cc-12345678

ID of the compute config

Request Body schema: application/json
required
cloudProviderName
required
string

The cloud provider for this compute instance type config

object (ComputeInstanceTypeConfigOverride)
instanceType
required
string

The instance type for this compute instance type config

Responses

Request samples

Content type
application/json
{
  • "cloudProviderName": "aws|azure|gcp|all",
  • "configOverride": {
    },
  • "instanceType": "t3.micro"
}

ListComputeInstanceTypes compute-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

cloudProviderName
required
string
Example: aws

The cloud provider for this compute instance type config

Responses

Response samples

Content type
application/json
{
  • "nextPageToken": "next-token",
  • "types": [
    ]
}

storage-config-api

The storage config API manages the storage config for Omnistrate entities

ListStorageConfig storage-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service id to filter by

query Parameters
managed
boolean
Example: managed=false

Is storage config managed by omnistrate

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateStorageConfig storage-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service to which this storage config belongs

Request Body schema: application/json
required
description
required
string non-empty

Description of the storage config

name
required
string non-empty

Name of the storage config

Responses

Request samples

Content type
application/json
{
  • "description": "my-storage-config-description",
  • "name": "my-storage-config"
}

Response samples

Content type
application/json
"Accusantium tempora dolores."

DeleteStorageConfig storage-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: sc-12345678

The storage config ID

Responses

DescribeStorageConfig storage-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: sc-12345678

The storage config ID

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=In ratione ea voluptates quia ut officia.

Product tier version of the storage config to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the storage config to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "description": "my-storage-config-description",
  • "id": "Id quia.",
  • "infraConfigIDs": [
    ],
  • "name": "my-storage-config",
  • "serviceId": "s-123456",
  • "volumes": {
    }
}

UpdateStorageConfig storage-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: sc-12345678

The storage config ID

Request Body schema: application/json
required
description
string non-empty

Description of the storage config

name
string non-empty

Name of the storage config

Responses

Request samples

Content type
application/json
{
  • "description": "my-storage-config-description",
  • "name": "my-storage-config"
}

RemoveStorageVolumeConfig storage-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: sc-12345678

The storage config ID

storageVolumeConfigId
required
string
Example: svc-12345678

The storage volume config ID

Request Body schema: application/json
required
mountPath
string

The specific mount path to remove. If not specified, all mount paths for the storage volume config will be removed

Responses

Request samples

Content type
application/json
{
  • "mountPath": "/data"
}

AddStorageVolumeConfig storage-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: sc-12345678

The storage config ID

storageVolumeConfigId
required
string
Example: svc-12345678

The storage volume config ID

Request Body schema: application/json
required
mountPath
string

The path where the storage volume will be mounted

Responses

Request samples

Content type
application/json
{
  • "mountPath": "/data"
}

storage-volume-config-api

The storage volume config API manages the storage volume config for Omnistrate entities

ListStorageVolumeConfig storage-volume-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service to list storage volume configs for

query Parameters
managed
boolean
Example: managed=false

Is storage volume config managed by omnistrate

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateStorageVolumeConfig storage-volume-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

Request Body schema: application/json
required
clusterStorageType
string

The type of the fixed storage for the cluster

description
required
string

A brief description of the context for the storage volume pool

disableBackup
boolean

Disable backup for the storage volume

instanceStorageIops
string

The IOPS provisioned for the configured instance storage type

instanceStorageSizeGi
string

The storage size (in Gi) provisioned for the configured instance storage type

instanceStorageThroughputMiBps
string

The throughput (in MiBps) provisioned for the configured instance storage type

instanceStorageType
string

The type of the storage for a compute instance

name
required
string

Name of the storage volume pool

storageResourceID
string

The storage resource ID

Responses

Request samples

Content type
application/json
{
  • "clusterStorageType": "S3|$var.storageType|AWS::EFS",
  • "description": "A storage volume set to store the MySQL data directory",
  • "disableBackup": false,
  • "instanceStorageIops": "$var.storageIops",
  • "instanceStorageSizeGi": "$var.storage_size",
  • "instanceStorageThroughputMiBps": "128",
  • "instanceStorageType": "$var.storageType",
  • "name": "MySQL Data Volume",
  • "storageResourceID": "r-12345678"
}

Response samples

Content type
application/json
"Ut itaque tenetur natus dolor."

DeleteStorageVolumeConfig storage-volume-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: svc-12345678

The storage volume config ID

Responses

DescribeStorageVolumeConfig storage-volume-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: svc-12345678

The storage volume config ID

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Natus quam harum doloremque nobis et aliquam.

Product tier version of the network config to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the network config to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "cloudProviderName": "aws|azure|gcp|all",
  • "clusterStorageType": "S3|$var.storageType|AWS::EFS",
  • "description": "A storage volume set to store the MySQL data directory",
  • "disableBackup": false,
  • "id": "Deleniti dolorum incidunt cumque dicta ab.",
  • "instanceStorageIops": "7500",
  • "instanceStorageSizeGi": "128",
  • "instanceStorageThroughputMiBps": "128",
  • "instanceStorageType": "$var.storageType",
  • "name": "MySQL Data Volume",
  • "serviceId": "s-123456",
  • "storageResourceID": "r-12345678"
}

UpdateStorageVolumeConfig storage-volume-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: svc-12345678

The storage volume config ID

Request Body schema: application/json
required
description
string

A brief description of the context for the storage volume pool

disableBackup
boolean

Disable backup for the storage volume

name
string

Name of the storage volume pool

Responses

Request samples

Content type
application/json
{
  • "description": "A storage volume set to store the MySQL data directory",
  • "disableBackup": false,
  • "name": "MySQL Data Volume"
}

UpdateInstanceStorageVolumeConfig storage-volume-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: svc-12345678

The storage volume config ID

Request Body schema: application/json
required
instanceStorageIops
string

The IOPS provisioned for the configured instance storage type

instanceStorageThroughputMiBps
string

The throughput (in MiBps) provisioned for the configured instance storage type

instanceStorageType
string

The type of the storage for a compute instance

Responses

Request samples

Content type
application/json
{
  • "instanceStorageIops": "7500",
  • "instanceStorageThroughputMiBps": "128",
  • "instanceStorageType": "AWS::EBS_GP2"
}

UpdateStorageVolumeSizeConfig storage-volume-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

id
required
string
Example: svc-12345678

The storage volume config ID

Request Body schema: application/json
required
instanceStorageSizeGi
required
string

The storage size (in Gi) provisioned for the configured instance storage type

Responses

Request samples

Content type
application/json
{
  • "instanceStorageSizeGi": "$var.storage_size"
}

network-config-api

The network config API manages the network config for Omnistrate entities

ListNetworkConfig network-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID to list network configs for

query Parameters
managed
boolean
Example: managed=false

Is network config managed by omnistrate

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "token"
}

CreateNetworkConfig network-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service

Request Body schema: application/json
required
description
required
string

A brief description of the network config

endpointPerReplica
required
boolean

Generates a DNS endpoint per-replica for this network config

internal
boolean
Default: false

Restrict access to this network config to the internal network

name
required
string

Name of the network config

openPorts
Array of integers <int64> [ items <int64 > ]

Ports to map to the generated DNS endpoint

object (PrivateNetworkingConfiguration)

The private networking configuration for the network config

object (PublicNetworkingConfiguration)

The public networking configuration for the network config

stableEgressIP
boolean

Enable stable egress IP

tlsTerminationPort
integer <int64>

The port that hosts the reverse proxy for TLS termination

zoneConfiguration
string

The preferred type of zonal availability for this resource and the specific zone(s) to deploy in

Responses

Request samples

Content type
application/json
{
  • "description": "A multi-zone HA network config",
  • "endpointPerReplica": true,
  • "internal": true,
  • "name": "Multi-zone",
  • "openPorts": [
    ],
  • "privateNetworkingConfiguration": {
    },
  • "publicNetworkingConfiguration": {
    },
  • "stableEgressIP": true,
  • "tlsTerminationPort": 443,
  • "zoneConfiguration": "SINGLE_ZONE_OMNISTRATE_RECOMMENDED|SINGLE_ZONE_CUSTOMER_PROVIDED|MULTI_ZONE"
}

Response samples

Content type
application/json
"Eaque odio vitae."

DeleteNetworkConfig network-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service

id
required
string
Example: nc-12345678

The ID of the network config

Responses

DescribeNetworkConfig network-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service

id
required
string
Example: nc-12345678

The ID of the network config

query Parameters
ProductTierVersion
string
Example: ProductTierVersion=Assumenda placeat.

Product tier version of the network config to describe. If not specified, the latest version is described.

ProductTierId
string
Example: ProductTierId=Beatae beatae.

ProductTierId of the network config to describe. Needs to specified in combination with the product tier version

Responses

Response samples

Content type
application/json
{
  • "description": "A multi-zone HA network config",
  • "endpointPerReplica": true,
  • "id": "Et excepturi aspernatur ab.",
  • "infraConfigIDs": [
    ],
  • "internal": true,
  • "name": "Multi-zone",
  • "openPorts": [
    ],
  • "privateNetworkingConfiguration": {
    },
  • "publicNetworkingConfiguration": {
    },
  • "serviceId": "s-123456",
  • "stableEgressIP": true,
  • "tlsTerminationPort": 443,
  • "zoneConfiguration": "SINGLE_ZONE_OMNISTRATE_RECOMMENDED|SINGLE_ZONE_CUSTOMER_PROVIDED|MULTI_ZONE"
}

UpdateNetworkConfig network-config-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The ID of the service

id
required
string
Example: nc-12345678

The ID of the network config

Request Body schema: application/json
required
description
string

A brief description of the network config

endpointPerReplica
boolean

Generates a DNS endpoint per-replica for this network config

internal
boolean

Restrict access to this network config to the internal network

name
string

Name of the network config

openPorts
Array of integers <int64> [ items <int64 > ]

Ports to map to the generated DNS endpoint

object (PrivateNetworkingConfiguration)

The private networking configuration for the network config

object (PublicNetworkingConfiguration)

The public networking configuration for the network config

stableEgressIP
boolean

Create an external node load balancer per node rather than expose the node ip directly

tlsTerminationPort
integer <int64>

The port that hosts the reverse proxy for TLS termination

zoneConfiguration
string

The preferred type of zonal availability for this resource and the specific zone(s) to deploy in

Responses

Request samples

Content type
application/json
{
  • "description": "A multi-zone HA network config",
  • "endpointPerReplica": true,
  • "internal": true,
  • "name": "Multi-zone",
  • "openPorts": [
    ],
  • "privateNetworkingConfiguration": {
    },
  • "publicNetworkingConfiguration": {
    },
  • "stableEgressIP": true,
  • "tlsTerminationPort": 443,
  • "zoneConfiguration": "SINGLE_ZONE_OMNISTRATE_RECOMMENDED|SINGLE_ZONE_CUSTOMER_PROVIDED|MULTI_ZONE"
}

availability-zone-api

The Availability Zone API provides read-only access to availability zones

DescribeAvailabilityZone availability-zone-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: az-12345678

ID of an AZ

Responses

Response samples

Content type
application/json
{
  • "cloudProviderName": "aws|azure|gcp|all",
  • "code": "us-east-1a",
  • "description": "US East (N. Virginia) Availability Zone A",
  • "id": "Aut consequuntur ducimus ea optio eos.",
  • "regionCode": "us-east-1"
}

ListAvailabilityZone availability-zone-api

Authorizations:
api_key_header_Authorization
path Parameters
cloudProviderName
required
string
Example: aws

The cloud provider for this compute instance type config

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

GetAvailabilityZoneByCode availability-zone-api

Authorizations:
api_key_header_Authorization
path Parameters
code
required
string
Example: us-east-1a

Cloud-provider native availability zone code

cloudProviderName
required
string
Example: aws

The cloud provider for this compute instance type config

Responses

Response samples

Content type
application/json
"Numquam et et et."

ListAvailabilityZonesByRegionCode availability-zone-api

Authorizations:
api_key_header_Authorization
path Parameters
regionCode
required
string
Example: us-east-1
cloudProviderName
required
string
Example: aws

The cloud provider for this compute instance type config

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

region-api

The Region API provides read-only access to regions

DescribeRegion region-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: region-12345678

ID of the Region

Responses

Response samples

Content type
application/json
{
  • "cloudProviderId": "Quidem sint voluptate quae.",
  • "cloudProviderName": "aws|azure|gcp|all",
  • "code": "us-east-1",
  • "description": "US East (N. Virginia)",
  • "id": "Iusto ipsam aliquid non laudantium voluptates voluptatum."
}

ListRegion region-api

Authorizations:
api_key_header_Authorization
path Parameters
cloudProviderName
required
string
Example: aws

The cloud provider for this compute instance type config

query Parameters
serviceId
string
Example: serviceId=s-12345678

Service ID. If specified together with serviceModelId,list the regions of the service model. Otherwise list all regions.

serviceModelId
string
Example: serviceModelId=sm-12345678

Service model ID. If specified together with serviceId,list the regions of the service model. Otherwise list all regions.

productTierId
string
Example: productTierId=pt-12345678

Product tier ID. If specified together with serviceId,list the regions of the product tier. Otherwise list all regions.

modelType
string
Example: modelType=CUSTOMER_HOSTED

Model type. If specified, list regions for the specified model type.

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

GetRegionByCode region-api

Authorizations:
api_key_header_Authorization
path Parameters
code
required
string non-empty
Example: us-east-1

Cloud-provider native region code

cloudProviderName
required
string
Example: aws

The cloud provider for this compute instance type config

Responses

Response samples

Content type
application/json
"Aut et."

cloud-provider-api

The Cloud Provider API provides read-only access to cloud provider metadata

ListCloudProvider cloud-provider-api

Authorizations:
api_key_header_Authorization
query Parameters
serviceId
string
Example: serviceId=s-12345678

Service ID. If specified together with serviceModelId,list the cloud provider of the service model. Otherwise list all cloud provider.

serviceModelId
string
Example: serviceModelId=sm-12345678

Service model ID. If specified together with serviceId,list the cloud provider of the service model. Otherwise list all cloud provider.

productTierId
string
Example: productTierId=pt-12345678

Product tier ID. If specified together with serviceId,list the cloud provider of the product tier. Otherwise list all cloud provider.

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

DescribeCloudProvider cloud-provider-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: infra-12345678

ID of the CloudProvider

Responses

Response samples

Content type
application/json
{
  • "description": "Amazon Web Services",
  • "id": "Culpa architecto eveniet doloremque vel laudantium ipsam.",
  • "name": "aws"
}

GetCloudProviderByName cloud-provider-api

Authorizations:
api_key_header_Authorization
path Parameters
name
required
string non-empty
Example: aws

Name of the CloudProvider

Responses

Response samples

Content type
application/json
"Et et voluptas."

demo-api

The Demo API provides a demo of the system

Demo demo-api

Request Body schema: application/json
required
company
required
string non-empty
email
required
string <email> non-empty
name
required
string non-empty
phone
string

Responses

Request samples

Content type
application/json
{
  • "company": "ABC",
  • "email": "abc@gmail.com",
  • "name": "John Doe",
  • "phone": "+1-234567890"
}

contactus-api

The Contactus API for customers to reach out to us

Contactus contactus-api

Request Body schema: application/json
required
company
required
string non-empty
email
required
string <email> non-empty
message
required
string non-empty
name
required
string non-empty

Responses

Request samples

Content type
application/json
{
  • "company": "ABC",
  • "email": "abc@gmail.com",
  • "message": "this is a test",
  • "name": "John Doe"
}

signin-api

The signin API for customers to authenticate with us

LoginWithIdentityProvider signin-api

Request Body schema: application/json
required
object

Additional attributes for the user

authorizationCode
string

The authorization code from the Identity Provider

companyDescription
string non-empty
companyUrl
string non-empty
deviceCode
string

The device code from the Identity Provider

identityProviderName
required
string

The name of the identity provider

invitedEmail
string <email>

Email address that the user was invited with

legalCompanyName
string non-empty
redirectUri
string

The redirect URI used to get the authorization code

Responses

Request samples

Content type
application/json
{
  • "attributes": {
    },
  • "authorizationCode": "4/P7q7W91a-oMsCeLvIaQm6bTrgtp7&",
  • "companyDescription": "We sell xyz database software",
  • "companyUrl": "https://www.mywebsite.com",
  • "deviceCode": "4/P7q7W91a-oMsCeLvIaQm6bTrgtp7&",
  • "identityProviderName": "Google|GitHub|Microsoft Entra|Amazon Cognito|Okta|Auth0|Keycloak|OIDC",
  • "invitedEmail": "abc@gmail.com",
  • "legalCompanyName": "mywebsite",
}

Response samples

Content type
application/json
{
  • "jwtToken": ""
}

Signin signin-api

Request Body schema: application/json
required
email
required
string <email> non-empty
hashedPassword
string non-empty
password
string non-empty

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "hashedPassword": "deprecated",
  • "password": "password"
}

Response samples

Content type
application/json
{
  • "jwtToken": ""
}

sp-organization-api

The Organization API for managing service provider organizations

DescribeServiceProviderOrganization sp-organization-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "DefaultDeploymentCellConfigurations": {
    },
  • "DeploymentCellConfigurationsPerEnv": {
    },
  • "id": "Unde sequi praesentium.",
  • "isPerEnvClusterEnabled": true
}

ModifyServiceProviderOrganization sp-organization-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
object

The default deployment cell configurations for the organization per environment.

Responses

Request samples

Content type
application/json
{
  • "DeploymentCellConfigurations": {
    }
}

signup-api

The Signup API for customers to signup with us

ChangePassword signup-api

Request Body schema: application/json
required
email
required
string <email> non-empty
password
required
string non-empty
token
required
string non-empty

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "password": "password",
  • "token": "fc7b8dea-a50b-4c9a-8864-fc3d845a2be6"
}

ResetPassword signup-api

Request Body schema: application/json
required
email
required
string <email> non-empty

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com"
}

Signup signup-api

Request Body schema: application/json
required
object

Additional attributes for the user signup

companyDescription
string non-empty
companyUrl
string non-empty
email
required
string <email> non-empty
legalCompanyName
string
Default: ""
name
required
string non-empty
password
required
string non-empty

Responses

Request samples

Content type
application/json
{
  • "attributes": {
    },
  • "companyDescription": "We sell xyz database software",
  • "companyUrl": "https://www.mywebsite.com",
  • "email": "abc@gmail.com",
  • "legalCompanyName": "mywebsite",
  • "name": "John Doe",
  • "password": "password"
}

RegenerateToken signup-api

path Parameters
id
required
string non-empty
Example: user-abcd1234

Responses

ValidateToken signup-api

Request Body schema: application/json
required
email
required
string <email> non-empty
token
required
string non-empty

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "token": "fc7b8dea-a50b-4c9a-8864-fc3d845a2be6"
}

plan-api

The Plan API is for payment info. It's explicitly empty for free plans.

DescribePlan plan-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "modifiedAt": "2023-01-01T00:00:00Z",
  • "paymentConfigured": true,
  • "planCoreHourCost": 0.05,
  • "planDescription": "The starter plan is priced at 'X' units",
  • "planFrequency": "MONTHLY",
  • "planMonthlyCost": 49,
  • "planName": "STARTER_NO_COMMIT|STARTER|GROWTH|ENTERPRISE",
  • "startDate": "2023-01-01"
}

ChangePlan plan-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
planName
required
string

The name of the plan this user is changing to

Responses

Request samples

Content type
application/json
{
  • "planName": "STARTER_NO_COMMIT|STARTER|GROWTH|ENTERPRISE"
}

usage-api

The Usage API is for getting the last calendar month usage.

GetCurrentUsage usage-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "endTime": "2021-01-01T00:00:00.000Z",
  • "planName": "STARTER_NO_COMMIT|STARTER|GROWTH|ENTERPRISE",
  • "startTime": "2021-01-01T00:00:00.000Z",
  • "usage": [
    ]
}

GetUsagePerDay usage-api

Authorizations:
api_key_header_Authorization
query Parameters
startDate
string <date-time>
Example: startDate=2023-01-01T10:00:00Z

Start date of the usage report

endDate
string <date-time>
Example: endDate=2024-01-01T10:00:00Z

End date of the usage report

Responses

Response samples

Content type
application/json
{
  • "endTime": "2021-01-01T00:00:00.000Z",
  • "planName": "STARTER_NO_COMMIT|STARTER|GROWTH|ENTERPRISE",
  • "startTime": "2021-01-01T00:00:00.000Z",
  • "usage": [
    ]
}

invoice-api

The Invoices API gets the list of invoices for the organization

ListInvoices invoice-api

Authorizations:
api_key_header_Authorization
query Parameters
billingProvider
string
Example: billingProvider=STRIPE

Billing provider. If specified, list invoices for the specified billing provider.

Responses

Response samples

Content type
application/json
{}

users-api

The user management API to manage user metadata

CustomerDeleteUser users-api

Authorizations:
api_key_header_Authorization

Responses

CustomerInviteUser users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
email
required
string <email> non-empty

Responses

Request samples

Content type
application/json
{
  • "email": "abc@example.com"
}

CustomerLoginWithIdentityProvider users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
object

Additional attributes for the user

authorizationCode
required
string

The authorization code from the Identity Provider

companyDescription
string non-empty
companyUrl
string non-empty
environmentType
string

The environment type of the portal that the customer is signing in to

identityProviderName
string

The name or type of the Identity Provider

invitedEmail
string <email>

Email address that the user was invited with

legalCompanyName
string non-empty
redirectUri
string

The redirect URI used to get the authorization code

state
string

The state parameter used to prevent CSRF attacks

Responses

Request samples

Content type
application/json
{
  • "attributes": {
    },
  • "authorizationCode": "4/P7q7W91a-oMsCeLvIaQm6bTrgtp7&",
  • "companyDescription": "We sell xyz database software",
  • "companyUrl": "https://www.mywebsite.com",
  • "environmentType": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "identityProviderName": "Google|GitHub|Microsoft Entra|Amazon Cognito|Okta|Auth0|Keycloak|OIDC",
  • "invitedEmail": "abc@gmail.com",
  • "legalCompanyName": "mywebsite",
  • "state": "state"
}

Response samples

Content type
application/json
{
  • "jwtToken": ""
}

CustomerResetPassword users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
email
required
string <email> non-empty

Responses

Request samples

Content type
application/json
{
  • "email": "abc@example.com"
}

CustomerSignin users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
email
required
string <email> non-empty
environmentType
string

The environment type of the portal that the customer is signing in to

hashedPassword
string non-empty
password
string non-empty

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "environmentType": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "hashedPassword": "deprecated",
  • "password": "password"
}

Response samples

Content type
application/json
{
  • "jwtToken": ""
}

CustomerSignup users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
object

Additional attributes for the user signup

companyDescription
string non-empty
companyUrl
string non-empty
email
required
string <email> non-empty

Email address of the end-user

legalCompanyName
string
Default: ""
name
required
string non-empty

Name of the end-user

password
required
string non-empty

Responses

Request samples

Content type
application/json
{
  • "attributes": {
    },
  • "companyDescription": "We sell xyz database software",
  • "companyUrl": "https://www.mywebsite.com",
  • "email": "abc@gmail.com",
  • "legalCompanyName": "mywebsite",
  • "name": "John Doe",
  • "password": "password"
}

InviteUser users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
email
required
string <email> non-empty
roleType
required
string

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator"
}

Logout users-api

Authorizations:
api_key_header_Authorization

Responses

DescribeUsersByOrg users-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "Id": "org-aKQ8G13QeR",
  • "orgUsers": [
    ]
}

RevokeUserRole users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
email
required
string <email> non-empty
roleType
required
string

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator"
}

UpdatePassword users-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
currentPassword
string non-empty
currentPasswordHash
string non-empty
password
required
string non-empty

Responses

Request samples

Content type
application/json
{
  • "currentPassword": "currentPassword",
  • "currentPasswordHash": "currentPasswordHash",
  • "password": "password"
}

DeleteUser users-api

Authorizations:
api_key_header_Authorization

Responses

DescribeUser users-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "address": {
    },
  • "attributes": {
    },
  • "createdAt": "2023-01-10T00:00:00Z",
  • "email": "abc@gmail.com",
  • "enabled": true,
  • "id": "user-abcd1234",
  • "lastModifiedAt": "2023-01-20T00:00:00Z",
  • "name": "John Dae",
  • "orgCookiePolicy": "Officia et veniam odio sed et tempora.",
  • "orgDescription": "ACME Inc.",
  • "orgFavIconURL": "Quaerat neque commodi.",
  • "orgId": "org-aKQ8G13QeR",
  • "orgLogoURL": "Consequuntur atque quis ab.",
  • "orgName": "ACME",
  • "orgPrivacyPolicy": "Ratione sit eaque sunt ab error.",
  • "orgSupportEmail": "support@example.com",
  • "orgTermsOfUse": "Quam mollitia repudiandae.",
  • "orgURL": "something.acme",
  • "planName": "STARTER_NO_COMMIT|STARTER|GROWTH|ENTERPRISE",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator",
  • "status": "ACTIVE|NOT_ENABLED"
}

UpdateUser users-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: user-abcd1234

The User ID

Request Body schema: application/json
required
object (Address)
object

Additional attributes of the user.

name
string

The name of the user

orgCookiePolicy
string

The cookie policy for the org that this user owns in an HTML format

orgDescription
string

The description of the org that this user owns

orgFavIconURL
string <uri>

The favicon of the org that this user owns

orgLogoURL
string <uri>

The logo of the org that this user owns

orgName
string

The org name that this user owns

orgPrivacyPolicy
string

The privacy policy for the org that this user owns in an HTML format

orgSupportEmail
string

The support email of the org that this user owns

orgTermsOfUse
string

The terms of use for the org that this user owns in an HTML format

orgURL
string

The url of the org that this user owns

Responses

Request samples

Content type
application/json
{
  • "address": {
    },
  • "attributes": {
    },
  • "name": "John Dae",
  • "orgCookiePolicy": "Rerum totam autem perspiciatis nulla.",
  • "orgDescription": "ACME Inc.",
  • "orgLogoURL": "http://daniel.com/kiley",
  • "orgName": "ACME",
  • "orgPrivacyPolicy": "Animi et.",
  • "orgSupportEmail": "support@example.com",
  • "orgTermsOfUse": "Nemo est animi dolores hic.",
  • "orgURL": "something.acme"
}

consumption-user-api

The Consumption Signin API signs the user into the consumption service

ListAllSubscriptionUsers consumption-user-api

Authorizations:
api_key_header_Authorization
query Parameters
environmentType
string
Example: environmentType=DEV

The environment type to filter by

Responses

Response samples

Content type
application/json
{
  • "subscriptionUsers": [
    ]
}

InviteUser consumption-user-api

Authorizations:
api_key_header_Authorization
path Parameters
subscriptionId
required
string
Example: sub-abcd1234

The subscription ID

Request Body schema: application/json
required
email
required
string <email> non-empty
roleType
required
string

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator"
}

RevokeUserRole consumption-user-api

Authorizations:
api_key_header_Authorization
path Parameters
subscriptionId
required
string
Example: sub-abcd1234

The subscription ID

Request Body schema: application/json
required
email
required
string <email> non-empty
roleType
required
string

Responses

Request samples

Content type
application/json
{
  • "email": "abc@gmail.com",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator"
}

DescribeUsersBySubscription consumption-user-api

Authorizations:
api_key_header_Authorization
path Parameters
subscriptionId
required
string
Example: sub-abcd1234

The subscription ID

Responses

Response samples

Content type
application/json
{
  • "Id": "sub-abcd1234",
  • "subscriptionUsers": [
    ]
}

DescribeUserBillingDetails consumption-user-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: user-abcd1234

ID of a User

Responses

Response samples

Content type
application/json
{}

Signin consumption-user-api

Authorizations:
basic_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "token": "wnz"
}

services-orchestration-api

The Services Orchestration API manages the orchestration of services

ListServicesOrchestrations services-orchestration-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
[
  • {
    },
  • {
    },
  • {
    }
]

CreateServicesOrchestration services-orchestration-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
orchestrationCreateDSL
required
string

base64 encoded content of service orchestration create DSL

Responses

Request samples

Content type
application/json
{
  • "orchestrationCreateDSL": "Voluptatum aliquam."
}

Response samples

Content type
application/json
{
  • "id": "Voluptatibus aliquam voluptatem aliquid vel voluptatem illum."
}

DeleteServicesOrchestration services-orchestration-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: so-12345678

The ID of the services orchestration

Responses

DescribeServicesOrchestration services-orchestration-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: so-12345678

The ID of the services orchestration

Responses

Response samples

Content type
application/json
{
  • "ServicesTopology": [
    ],
  • "createdAt": "2021-01-01T00:00:00Z",
  • "id": "Sint aut et.",
  • "orchestrationFailedReason": "Invalid DSL",
  • "resultParams": {
    },
  • "status": "PENDING",
  • "updatedAt": "2021-01-01T00:00:00Z"
}

ModifyServicesOrchestration services-orchestration-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: so-12345678

The ID of the services orchestration

Request Body schema: application/json
required
orchestrationModifyDSL
required
string

base64 encoded content of services orchestration modify DSL

Responses

Request samples

Content type
application/json
{
  • "orchestrationModifyDSL": "Ipsam praesentium."
}

resource-instance-api

The Resource Instance API manages the instances of a resource

ListAllResourceInstances resource-instance-api

Authorizations:
api_key_header_Authorization
query Parameters
environmentType
string
Example: environmentType=DEV

The environment type to filter by

Responses

Response samples

Content type
application/json
{
  • "nextPageToken": "next-token",
  • "resourceInstances": [
    ]
}

GenerateTokenForDeploymentCellDashboard resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: instance-abcd1234

The instance ID whose deployment cell dashboard token is to be generated

query Parameters
subscriptionId
required
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "deploymentCellID": "hc-12345678",
  • "expirationTimestamp": "2021-01-01T00:00:00Z",
  • "token": "token"
}

UpgradeResourceInstanceVersion resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
productTierKey
required
string

The product tier name

resourceKey
required
string

The resource key

serviceAPIVersion
required
string

The service API version

serviceEnvironmentKey
required
string

The service environment name

serviceKey
required
string

The service name

serviceModelKey
required
string

The service model name

serviceProviderId
required
string

The service provider ID

targetVersion
string

The version to upgrade to

Responses

Request samples

Content type
application/json
{
  • "productTierKey": "premium",
  • "resourceKey": "mysql",
  • "serviceAPIVersion": "v1",
  • "serviceEnvironmentKey": "dev",
  • "serviceKey": "service-orchestration",
  • "serviceModelKey": "hosted",
  • "serviceProviderId": "Ab dolorum et.",
  • "targetVersion": "2.0"
}

ListResourceInstances resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service key

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
cloud_provider
string

The cloud provider name

custom_network_id
string

Custom network for resource

Array of objects (CustomTag)

The custom tags for the resource instance

externalBillingId
string

This externalBillingId is deprecated and will be removed in the future

network_type
string

The network type

onprem_platform
string

OnPrem platform

productTierVersion
string

The product tier version

region
string

The region code

requestParams
any

The request parameters

Responses

Request samples

Content type
application/json
{
  • "cloud_provider": "aws",
  • "custom_network_id": "n-1234567890",
  • "customTags": [
    ],
  • "externalBillingId": "external-billing-id-1234",
  • "network_type": "PUBLIC|INTERNAL",
  • "onprem_platform": "OpenShift",
  • "productTierVersion": "1.0",
  • "region": "us-east-1",
  • "requestParams": {
    }
}

Response samples

Content type
application/json
{
  • "id": "In aut aliquid aut veniam."
}

DeleteResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

DescribeResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "active": true,
  • "autoscalingEnabled": true,
  • "awsAccountID": "123456789012",
  • "azureSubscriptionID": "0fa05079-dd73-4b88-babc-05537817604a",
  • "backupStatus": {
    },
  • "cloud_provider": "aws",
  • "created_at": "2023-01-10T00:00:00Z",
  • "createdByUserId": "Sunt molestiae.",
  • "createdByUserName": "John Doe",
  • "currentReplicas": "2",
  • "customNetworkDetail": {
    },
  • "customTags": [
    ],
  • "detailedNetworkTopology": {
    },
  • "externalPayerId": "external-payer-id-1234",
  • "gcpProjectID": "my-project",
  • "highAvailability": true,
  • "id": "instance-abcd1234",
  • "instanceLoadStatus": "LOAD_NORMAL|LOAD_IDLE|LOAD_OVERLOADED|STOPPED|UNKNOWN|N/A",
  • "kubernetesDashboardEndpoint": {},
  • "last_modified_at": "2023-01-20T00:00:00Z",
  • "maintenanceTasks": {
    },
  • "maxReplicas": "1",
  • "minReplicas": "1",
  • "network_type": "PUBLIC|INTERNAL",
  • "productTierFeatures": {
    },
  • "region": "us-east-1",
  • "resourceID": "Qui est.",
  • "result_params": {
    },
  • "serverlessEnabled": true,
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED",
  • "subscriptionId": "sub-abcd1234",
  • "subscriptionLicense": {
    },
  • "subscriptionStatus": "ACTIVE|SUSPENDED|TERMINATED|CANCELLED",
  • "tierVersion": "1.0"
}

UpdateResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
Array of objects (CustomTag)

The custom tag for the resource instance

network_type
string

The network type

requestParams
any

The request parameters

Responses

Request samples

Content type
application/json
{
  • "customTags": [
    ],
  • "network_type": "PUBLIC|INTERNAL",
  • "requestParams": {
    }
}

AddCapacityToResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
capacityToBeAdded
required
integer <int64>

Number of replicas to be added

Responses

Request samples

Content type
application/json
{
  • "capacityToBeAdded": 3
}

CopyResourceInstanceSnapshot resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
sourceSnapshotId
string

The source snapshot ID

targetRegion
required
string

The target region to copy the snapshot to

Responses

Request samples

Content type
application/json
{
  • "sourceSnapshotId": "Aut necessitatibus.",
  • "targetRegion": "us-west-2"
}

Response samples

Content type
application/json
{
  • "snapshotId": "Aut animi laboriosam quo voluptatibus."
}

RemoveCustomDNSFromResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: http-service

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

AddCustomDNSToResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: http-service

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
customDNS
required
string

The custom DNS to add

targetPort
integer <int64>

The target port

Responses

Request samples

Content type
application/json
{
  • "customDNS": "my-custom-dns.com",
  • "targetPort": 8080
}

FailoverResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
failedReplicaAction
string

The failed replica action

failedReplicaID
required
string

The failed replica ID

Responses

Request samples

Content type
application/json
{
  • "failedReplicaAction": "FAILOVER_ONLY|FAILOVER_AND_RESTART|FAILOVER_AND_RECREATE",
  • "failedReplicaID": "db-0"
}

RemoveCapacityFromResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
capacityToBeRemoved
required
integer <int64>

Number of replicas to be removed

Responses

Request samples

Content type
application/json
{
  • "capacityToBeRemoved": 3
}

RestartResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

RestoreResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
network_type
string

The network type

targetRestoreTime
required
string

The target restore time

Responses

Request samples

Content type
application/json
{
  • "network_type": "PUBLIC|INTERNAL",
  • "targetRestoreTime": "2021-09-01T00:00:00Z"
}

Response samples

Content type
application/json
{
  • "id": "Ipsa deleniti incidunt beatae."
}

ListResourceInstanceSnapshots resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service key

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "snapshots": [
    ]
}

StartResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

StopResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

id
required
string
Example: instance-abcd1234

The instance ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

RestoreResourceInstanceFromSnapshot resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

resourceKey
required
string
Example: mysql

The resource key

snapshotId
required
string
Example: instance-ss-abcd1234

The snapshot ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Request Body schema: application/json
required
custom_network_id
string

Custom network for resource

network_type
string

The network type

Responses

Request samples

Content type
application/json
{
  • "custom_network_id": "n-1234567890",
  • "network_type": "PUBLIC|INTERNAL"
}

Response samples

Content type
application/json
{
  • "id": "Et qui et perspiciatis et in."
}

ResourceInstanceProvisionerSetupKit resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

UpdateAccountConfigResourceInstance resource-instance-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: instance-abcd1234

The instance ID

Request Body schema: application/json
required
serviceId
required
string

The service ID

setConnection
boolean

set account config instance connection

subscriptionId
required
string

The subscription ID

Responses

Request samples

Content type
application/json
{
  • "serviceId": "service-1234",
  • "setConnection": true,
  • "subscriptionId": "sub-abcd1234"
}

instance-snapshot-api

The Instance Snapshot API manages the snapshots of resource instances

DeleteResourceInstanceSnapshot instance-snapshot-api

Authorizations:
api_key_header_Authorization
path Parameters
snapshotId
required
string
Example: instance-ss-12345678

The instance snapshot ID

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

consumption-usage-api

The Consumption Usage API retrieves the usage data for consumption users

GetCurrentConsumptionUsage consumption-usage-api

Authorizations:
api_key_header_Authorization
query Parameters
subscriptionID
string
Example: subscriptionID=sub-12345678

The subscription ID to get usage for

Responses

Response samples

Content type
application/json
{
  • "endTime": "2021-01-01T00:00:00.000Z",
  • "startTime": "2021-01-01T00:00:00.000Z",
  • "usage": [
    ]
}

GetConsumptionUsagePerDay consumption-usage-api

Authorizations:
api_key_header_Authorization
query Parameters
startDate
string <date-time>
Example: startDate=2023-01-01T10:00:00Z

Start date of the usage report

endDate
string <date-time>
Example: endDate=2024-01-01T10:00:00Z

End date of the usage report

subscriptionID
string
Example: subscriptionID=sub-12345678

The subscription ID to get usage for

Responses

Response samples

Content type
application/json
{
  • "endTime": "2021-01-01T00:00:00.000Z",
  • "startTime": "2021-01-01T00:00:00.000Z",
  • "usage": [
    ]
}

consumption-invoice-api

The Consumption Invoice API retrieves the invoice data for consumption users

ListConsumptionInvoices consumption-invoice-api

Authorizations:
api_key_header_Authorization
query Parameters
billingProvider
string
Example: billingProvider=STRIPE

Billing provider. If specified, list invoices for the specified billing provider.

Responses

Response samples

Content type
application/json
{}

consumption-billing-api

The Consumption Invoice API retrieves the billing information for consumption users

DescribeConsumptionBillingDetails consumption-billing-api

Authorizations:
api_key_header_Authorization
query Parameters
returnUrl
string
Example: returnUrl=https://mysaasportal.com

Return Url used to configure payment methods links

Responses

Response samples

Content type
application/json
{}

DescribeConsumptionBillingStatus consumption-billing-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "enabled": true
}

account-config-api

The Account Config API manages the access information for a Service Provider account

CreateAccountConfig account-config-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
awsAccessKey
string

The AWS access key

awsAccountID
string

The AWS account ID

awsBootstrapRoleARN
string

The security role ARN or service account ARN that grants access to operate the infra

awsSecretKey
string

The AWS secret key

azureSubscriptionID
string

The Azure subscription ID

azureTenantID
string

The Azure tenant ID

byoaInstanceID
string

The BYOA instance ID that this account config is tied to

cloudProviderId
required
string

Cloud Provider ID to operate on

description
required
string

The description for the account

gcpProjectID
string

The GCP project ID

gcpProjectNumber
string

The GCP project number

gcpServiceAccountEmail
string

The GCP service account email

gcpServiceAccountKey
string

The GCP service account key

name
required
string

The name of the account

ociDomainID
string

The Domain OCID for Oracle Cloud Infrastructure

ociTenancyID
string

The Tenancy OCID for Oracle Cloud Infrastructure

Responses

Request samples

Content type
application/json
{
  • "awsAccessKey": "Id et dolorem nemo.",
  • "awsAccountID": "123456789012",
  • "awsBootstrapRoleARN": "arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>",
  • "awsSecretKey": "Omnis perspiciatis sequi.",
  • "azureSubscriptionID": "12345678-1234-1234-1234-123456789012",
  • "azureTenantID": "12345678-1234-1234-1234-123456789012",
  • "byoaInstanceID": "instance-12345678",
  • "cloudProviderId": "Nostrum nesciunt id animi.",
  • "description": "An AWS account hosting multiple dev environments",
  • "gcpProjectID": "my-project",
  • "gcpProjectNumber": "123456789012",
  • "gcpServiceAccountEmail": "bootstrap@my-project.iam.gserviceaccount.com",
  • "gcpServiceAccountKey": "Totam quis aut sint.",
  • "name": "Dev AWS account",
  • "ociDomainID": "ocid1.domain.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  • "ociTenancyID": "ocid1.tenancy.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}

Response samples

Content type
application/json
"Vero rerum enim sint repudiandae aut."

DeleteAccountConfig account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: ac-12345678

Account Config ID to operate on

Responses

DescribeAccountConfig account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: ac-12345678

Account Config ID to operate on

Responses

Response samples

Content type
application/json
{
  • "awsAccountID": "123456789012",
  • "awsBootstrapRoleARN": "arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>",
  • "azureBootstrapShellCommand": "bash -c \"$(curl -fsSL https://omnistrate.com/account-setup/azure-bootstrap.sh?account_config_id=ac-MOju2uwKM0)\"",
  • "azureDisconnectShellCommand": "bash -c \"$(curl -fsSL https://omnistrate.com/account-setup/azure-disconnect.sh?account_config_id=ac-MOju2uwKM0)\"",
  • "azureSubscriptionID": "12345678-1234-1234-1234-123456789012",
  • "azureTenantID": "12345678-1234-1234-1234-123456789012",
  • "byoaInstanceIDs": [
    ],
  • "cloudProviderId": "Debitis repudiandae.",
  • "description": "An AWS account hosting multiple dev environments",
  • "gcpBootstrapShellCommand": "bash -c \"$(curl -fsSL https://omnistrate.com/account-setup/gcp-bootstrap.sh?account_config_id=ac-MOju2uwKM0)\"",
  • "gcpDisconnectShellCommand": "bash -c \"$(curl -fsSL https://omnistrate.com/account-setup/gcp-disconnect.sh?account_config_id=ac-MOju2uwKM0)\"",
  • "gcpProjectID": "my-project",
  • "gcpProjectNumber": "123456789012",
  • "gcpServiceAccountEmail": "bootstrap@my-project.iam.gserviceaccount.com",
  • "id": "A perspiciatis ut nihil assumenda repellendus.",
  • "name": "Dev AWS account",
  • "ociBootstrapShellCommand": "bash -c \"$(curl -fsSL https://omnistrate.com/account-setup/oci-bootstrap.sh?account_config_id=ac-MOju2uwKM0)\"",
  • "ociDisconnectShellCommand": "bash -c \"$(curl -fsSL https://omnistrate.com/account-setup/oci-disconnect.sh?account_config_id=ac-MOju2uwKM0)\"",
  • "ociDomainID": "ocid1.domain.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  • "ociTenancyID": "ocid1.tenancy.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  • "status": "PENDING|VERIFYING|READY|FAILED|DELETING|READY_TO_OFFBOARD",
  • "statusMessage": "Account is ready"
}

DescribeAccountConfigByAWSAccountID account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
awsAccountID
required
string
Example: 123456789012

The AWS account ID

Responses

Response samples

Content type
application/json
{}

DescribeAccountConfigByAzureSubscriptionID account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
azureSubscriptionID
required
string
Example: 12345678-1234-1234-1234-123456789012

The Azure subscription ID

Responses

Response samples

Content type
application/json
{
  • "azureSubscriptionID": "12345678-1234-1234-1234-123456789012",
  • "azureTenantID": "12345678-1234-1234-1234-123456789012",
  • "byoaInstanceIDs": [
    ],
  • "cloudProviderId": "Exercitationem quas est.",
  • "description": "An AWS account hosting multiple dev environments",
  • "id": "Ducimus odit.",
  • "name": "Dev AWS account",
  • "status": "PENDING|VERIFYING|READY|FAILED|DELETING|READY_TO_OFFBOARD",
  • "statusMessage": "Account is ready"
}

ListBYOAConfig account-config-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
cloudProviderName
required
string

Cloud Provider name to filter on

Responses

Request samples

Content type
application/json
{
  • "cloudProviderName": "aws|azure|gcp|all"
}

Response samples

Content type
application/json
{
  • "accountConfigs": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

ListAccountConfig account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
cloudProviderName
required
string
Example: aws

Cloud Provider name to filter on

Responses

Response samples

Content type
application/json
{
  • "accountConfigs": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

DescribeAccountConfigByGCPProjectID account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
gcpProjectID
required
string
Example: my-project

The GCP project ID

Responses

Response samples

Content type
application/json
{
  • "byoaInstanceIDs": [
    ],
  • "cloudProviderId": "Quo molestiae delectus reiciendis architecto adipisci soluta.",
  • "description": "An AWS account hosting multiple dev environments",
  • "gcpProjectID": "my-project",
  • "gcpProjectNumber": "123456789012",
  • "gcpServiceAccountEmail": "bootstrap@my-project.iam.gserviceaccount.com",
  • "id": "Quae sunt error asperiores minus animi totam.",
  • "name": "Dev AWS account",
  • "status": "PENDING|VERIFYING|READY|FAILED|DELETING|READY_TO_OFFBOARD",
  • "statusMessage": "Account is ready"
}

AccountConfigIdentityID account-config-api

Returns the identity id of the account config to be used in the trust policy of the account

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "id": "Aut eos non dolorum fugit animi."
}

DescribeAccountConfigByOCITenancyID account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
ociTenancyID
required
string
Example: ocid1.tenancy.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

The Tenancy OCID for Oracle Cloud Infrastructure

Responses

Response samples

Content type
application/json
{
  • "byoaInstanceIDs": [
    ],
  • "cloudProviderId": "Voluptatem repellat in qui dignissimos.",
  • "description": "An OCI account hosting multiple dev environments",
  • "id": "Omnis neque autem sit.",
  • "name": "Dev OCI account",
  • "ociDomainID": "ocid1.domain.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  • "ociTenancyID": "ocid1.tenancy.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  • "status": "PENDING|VERIFYING|READY|FAILED|DELETING|READY_TO_OFFBOARD",
  • "statusMessage": "Account is ready"
}

VerifyAccountConfig account-config-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: ac-12345678

Account Config ID to operate on

Responses

custom-domain-api

The Custom Domain API manages the delegated domain names for the Service Provider

ListCustomDomain custom-domain-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "CustomDomains": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateCustomDomain custom-domain-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
customDomain
required
string

The root domain of the domain to use as suffix

description
required
string

The description for the domain

name
required
string

The name of the custom domain

required
object (Route53Configuration)

Responses

Request samples

Content type
application/json
{
  • "customDomain": "mydomain.dev",
  • "description": "Description of the domain",
  • "name": "Dev domain",
  • "route53Configuration": {
    }
}

Response samples

Content type
application/json
"Molestias totam dolore at."

DeleteCustomDomain custom-domain-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: cd-12345678

custom domain ID to operate on

Responses

DescribeCustomDomain custom-domain-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: cd-12345678

custom domain ID to operate on

Responses

Response samples

Content type
application/json
{
  • "customDomain": "mydomain.dev",
  • "description": "Description of the domain",
  • "id": "Qui assumenda et debitis ducimus voluptatem sunt.",
  • "name": "Dev domain",
  • "route53Configuration": {},
  • "status": "PENDING|VERIFYING|READY|FAILED",
  • "statusMessage": "Account is ready"
}

CustomDomainIdentityID custom-domain-api

Returns the identity id of the Custom Domain to be used in the trust policy of the account

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "id": "Alias rerum eaque ipsa."
}

VerifyCustomDomain custom-domain-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: cd-12345678

custom domain ID to operate on

Responses

limit-api

The limit API manages the limit for Omnistrate entities

ListLimit limit-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
family
required
string

Limit family

Responses

Request samples

Content type
application/json
{
  • "family": "SERVICE"
}

Response samples

Content type
application/json
{
  • "keys": [
    ],
  • "nextPageToken": "next-token"
}

DeleteLimit limit-api

Authorizations:
api_key_header_Authorization
path Parameters
family
required
string
Example: COMPUTE_INFRA

Limit family

key
required
string
Example: MAX_VIRTUAL_CORES_PER_RESOURCE

Unique key to identify the limit

Responses

DescribeLimit limit-api

Authorizations:
api_key_header_Authorization
path Parameters
family
required
string
Example: COMPUTE_INFRA

Limit family

key
required
string
Example: MAX_VIRTUAL_CORES_PER_RESOURCE

Unique key to identify the limit

Responses

Response samples

Content type
application/json
{
  • "description": "A premium limit",
  • "family": "SERVICE",
  • "key": "MAX_VIRTUAL_CORES_PER_RESOURCE",
  • "modifiable": true,
  • "name": "Premium Tier",
  • "value": 4
}

UpdateLimit limit-api

Authorizations:
api_key_header_Authorization
path Parameters
family
required
string
Example: COMPUTE_INFRA

Limit family

key
required
string
Example: MAX_VIRTUAL_CORES_PER_RESOURCE

Unique key to identify the limit

Request Body schema: application/json
required
description
string

A brief description of the limit

name
string

Name of the limit

value
required
integer <int64>

Value of the limit being enforced

Responses

Request samples

Content type
application/json
{
  • "description": "A premium limit",
  • "name": "Premium Tier",
  • "value": 4
}

image-registry-api

The image registry API manages the image registry for Omnistrate resources

ListImageRegistry image-registry-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token"
}

CreateImageRegistry image-registry-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
description
required
string

A brief description of the Image Registry

host
required
string

The Image Registry host

name
required
string

Name of the Image Registry

password
string

The password to use when authenticating to the Image Registry

username
string

The username to use when authenticating to the Image Registry

Responses

Request samples

Content type
application/json
{
  • "description": "DockerHub is a public Docker Image Registry",
  • "host": "docker.io",
  • "name": "DockerHub",
  • "password": "mypassword",
  • "username": "myusername"
}

Response samples

Content type
application/json
"Doloremque recusandae ipsum expedita sit sit."

DeleteImageRegistry image-registry-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: ir-12345678

The ID of the Image Registry

Responses

DescribeImageRegistry image-registry-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: ir-12345678

The ID of the Image Registry

Responses

Response samples

Content type
application/json
{
  • "description": "DockerHub is a public Docker Image Registry",
  • "host": "docker.io",
  • "id": "Illo molestias aspernatur dolorum.",
  • "name": "DockerHub",
  • "password": "mypassword",
  • "username": "myusername"
}

UpdateImageRegistry image-registry-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: ir-12345678

The ID of the Image Registry

Request Body schema: application/json
required
description
string

A brief description of the Image Registry

host
string

The Image Registry host

name
string

Name of the Image Registry

password
string

The password to use when authenticating to the Image Registry

username
string

The username to use when authenticating to the Image Registry

Responses

Request samples

Content type
application/json
{
  • "description": "DockerHub is a public Docker Image Registry",
  • "host": "docker.io",
  • "name": "DockerHub",
  • "password": "mypassword",
  • "username": "myusername"
}

service-offering-api

The service offering API provides a public API to list all public services

ListServiceOffering service-offering-api

Authorizations:
api_key_header_Authorization
query Parameters
orgId
string
Example: orgId=org-12345678

Org Id

visibility
string
Example: visibility=PRIVATE

The visibility of service offering

environmentType
string
Example: environmentType=DEV

The environment type to filter by

Responses

Response samples

Content type
application/json
{}

DescribeServiceOffering service-offering-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

query Parameters
visibility
string
Example: visibility=PRIVATE

The visibility of service offering

environmentType
string
Example: environmentType=DEV

The environment type to filter by

Responses

Response samples

Content type
application/json
{}

DescribeServiceOfferingResource service-offering-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceId
required
string
Example: s-12345678

The service ID

resourceId
required
string
Example: r-12345678

The resource ID

instanceId
required
string
Default: "none"
Example: instance-12345678

The instance ID

query Parameters
productTierId
string
Example: productTierId=pt-12345678

The product tier Id

productTierVersion
string
Example: productTierVersion=1.0.0

The product tier version

Responses

Response samples

Content type
application/json
{
  • "apis": [
    ]
}

audit-events-api

The set of APIs for auditing instance events for consumption side users.

ListAuditEventsForInstance audit-events-api

Authorizations:
api_key_header_Authorization
path Parameters
instanceId
required
string
Example: instance-12345678

The ID of the resource instance

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "events": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "token"
}

DeprecatedListAuditEventsForInstance audit-events-api

Authorizations:
api_key_header_Authorization
path Parameters
instanceId
required
string
Example: instance-12345678

The ID of the resource instance

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "events": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "token"
}

ListAuditEventsForServicePlan audit-events-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "events": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "token"
}

DeprecatedListAuditEventsForServicePlan audit-events-api

Authorizations:
api_key_header_Authorization
path Parameters
serviceProviderId
required
string
Example: omnistrate

The service provider ID

serviceKey
required
string
Example: service-orchestration

The service name

serviceAPIVersion
required
string
Example: v1

The service API version

serviceEnvironmentKey
required
string
Example: dev

The service environment name

serviceModelKey
required
string
Example: hosted

The service model name

productTierKey
required
string
Example: premium

The product tier name

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "events": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "token"
}

ListAllAuditEvents audit-events-api

Authorizations:
api_key_header_Authorization
query Parameters
nextPageToken
string
Example: nextPageToken=token

The next token to use for pagination

pageSize
integer <int64>
Example: pageSize=10

The number of resources to return per page

serviceID
string
Example: serviceID=s-123456

The service ID to list events for

environmentType
string
Example: environmentType=PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL

The type of service environment

eventSourceTypes
Array of strings
Example: eventSourceTypes=Et in nulla.&eventSourceTypes=Voluptas odio aut eligendi.&eventSourceTypes=Quia inventore odit officia optio voluptatum rerum.

The event types to filter by

instanceID
string
Example: instanceID=instance-12345678

The instance ID to list events for

startDate
string <date-time>
Example: startDate=2023-01-01T10:00:00Z

Start date of the events

endDate
string <date-time>
Example: endDate=2024-01-01T10:00:00Z

End date of the events

Responses

Response samples

Content type
application/json
{
  • "events": [
    ],
  • "ids": [
    ],
  • "nextPageToken": "token"
}

DescribeAuditEvent audit-events-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: event-12345678

The ID of the event

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "eventSource": "Customer, Infra or Maintenance",
  • "id": "Quo aut non labore.",
  • "message": "instance-abcd1234 created",
  • "orgId": "Rerum et.",
  • "orgName": "Acme Corporation",
  • "resourceInstanceId": "instance-abcd1234",
  • "resourceName": "Galera",
  • "subscriptionId": "sub-abcd1234",
  • "time": "2023-01-10T00:00:00Z",
  • "userId": "Dignissimos possimus est voluptates omnis sed.",
  • "userName": "John Doe",
  • "workflowFailures": [
    ]
}

DeprecatedDescribeAuditEvent audit-events-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: event-12345678

The ID of the event

query Parameters
subscriptionId
string
Example: subscriptionId=sub-abcd1234

Subscription Id

Responses

Response samples

Content type
application/json
{
  • "eventSource": "Customer, Infra or Maintenance",
  • "id": "Mollitia veritatis quia architecto et.",
  • "message": "instance-abcd1234 created",
  • "orgId": "Consequatur magni soluta delectus dolores.",
  • "orgName": "Acme Corporation",
  • "resourceInstanceId": "instance-abcd1234",
  • "resourceName": "Galera",
  • "subscriptionId": "sub-abcd1234",
  • "time": "2023-01-10T00:00:00Z",
  • "userId": "Exercitationem aliquid fuga reiciendis vel.",
  • "userName": "John Doe",
  • "workflowFailures": [
    ]
}

subscription-api

The subscription management API to manage subscription metadata

ListSubscriptions subscription-api

Authorizations:
api_key_header_Authorization
query Parameters
serviceId
string
Example: serviceId=service-12345678

Service Id

environmentType
string
Example: environmentType=DEV

The environment type to filter by

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token",
  • "subscriptions": [
    ]
}

CreateSubscription subscription-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
productTierId
required
string

The product tier ID

serviceId
required
string

The service ID

Responses

Request samples

Content type
application/json
{
  • "productTierId": "Minus et consequatur commodi ipsum qui illo.",
  • "serviceId": "s-123456"
}

Response samples

Content type
application/json
"Sunt voluptas eaque enim."

DeleteSubscription subscription-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: sub-12345678

The subscription ID

Responses

DescribeSubscription subscription-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: sub-12345678

The subscription ID

Responses

Response samples

Content type
application/json
{
  • "accountConfigIdentityId": "Aspernatur quasi ut delectus vel.",
  • "allowCreatesWhenPaymentNotConfigured": true,
  • "cloudProviderNames": [
    ],
  • "createdAt": "2019-01-01T00:00:00Z",
  • "defaultSubscription": true,
  • "id": "Rem dolores molestias eum omnis ipsa.",
  • "maxNumberOfInstances": 10,
  • "paymentMethodConfigured": true,
  • "productTierId": "Eum occaecati.",
  • "productTierName": "Omnistrate Multi Tenancy",
  • "roleType": "root|editor|reader|service_editor|service_reader|admin|service_operator",
  • "rootUserId": "Accusamus itaque.",
  • "serviceId": "s-123456",
  • "serviceLogoURL": "Et minima dolor ipsa delectus quam laboriosam.",
  • "serviceName": "MySQL multi-writer service",
  • "serviceOrgId": "Ipsam optio error deleniti.",
  • "serviceOrgName": "Omnistrate",
  • "status": "ACTIVE|SUSPENDED|TERMINATED|CANCELLED",
  • "subscriptionOwnerName": "John Doe"
}

subscription-request-api

The subscription request API for end customers to issue subscription requests

ListSubscriptionRequests subscription-request-api

Authorizations:
api_key_header_Authorization
query Parameters
status
string
Example: status=PENDING

The status of the subscription request to filter by

Responses

Response samples

Content type
application/json
{
  • "ids": [
    ],
  • "nextPageToken": "next-token",
  • "subscriptionRequests": [
    ]
}

CreateSubscriptionRequest subscription-request-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
productTierId
required
string

The product tier ID

serviceId
required
string

The service ID

Responses

Request samples

Content type
application/json
{
  • "productTierId": "Id rerum cum et.",
  • "serviceId": "s-123456"
}

Response samples

Content type
application/json
"Assumenda ab quia est hic."

CancelSubscriptionRequest subscription-request-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: subr-12345678

The subscription ID

Responses

DescribeSubscriptionRequest subscription-request-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: subr-12345678

The subscription ID

Responses

Response samples

Content type
application/json
{
  • "createdAt": "2019-01-01T00:00:00Z",
  • "id": "Consequatur occaecati sint perferendis.",
  • "productTierId": "Facere illum fugit.",
  • "productTierName": "Omnistrate Multi Tenancy",
  • "rootUserEmail": "abc@gmail.com",
  • "rootUserId": "Aliquid possimus eveniet.",
  • "rootUserName": "John Doe",
  • "serviceId": "s-123456",
  • "serviceLogoURL": "Amet harum ut numquam at.",
  • "serviceName": "MySQL multi-writer service",
  • "status": "PENDING|APPROVED|DENIED|CANCELLED",
  • "updatedAt": "2019-01-01T00:00:00Z",
  • "updatedByUserId": "Harum molestiae voluptas nesciunt et illo perferendis.",
  • "updatedByUserName": "John Doe"
}

identity-provider-api

ListIdentityProviders identity-provider-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "identityProviders": [
    ]
}

CreateIdentityProvider identity-provider-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
authorizationEndpoint
string

The authorization endpoint of the Identity Provider

clientId
required
string

The Client ID of the Identity Provider

clientSecret
required
string

The Client Secret of the Identity Provider

disabled
boolean

Whether the Identity Provider is disabled

emailIdentifiers
string

The email identifiers to use for the Identity Provider

environmentType
string

The type of environment to filter costs by

identityProviderName
required
string

The type of the Identity Provider

loginButtonIconUrl
string

The URL of the icon to use for the login button

loginButtonText
string

The text to use for the login button

name
string

The name of the Identity Provider

scopes
string

The scopes to request from the Identity Provider

tokenEndpoint
string

The token endpoint of the Identity Provider

userInfoEndpoint
string

The user info endpoint of the Identity Provider

Responses

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
"Reiciendis eveniet."

RenderIdentityProviders identity-provider-api

Authorizations:
api_key_header_Authorization
query Parameters
environmentType
string
Example: environmentType=production

The environment type to render the identity provider for

redirectUrl
string
Example: redirectUrl=https://example.com/redirect

The URL to redirect to after successful authentication

loginHint
string
Example: loginHint=user@domain.com

Login hint to pre-fill the identity provider login form

Responses

Response samples

Content type
application/json
{
  • "identityProviders": [
    ]
}

ListIdentityProviderTypes identity-provider-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "identityProviderTypes": [
    ]
}

DeleteIdentityProvider identity-provider-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: idp-12345678

The Identity Provider ID

Responses

DescribeIdentityProvider identity-provider-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: idp-12345678

The Identity Provider ID

Responses

Response samples

Content type
application/json
{
  • "authorizationEndpoint": "https://accounts.google.com/o/oauth2/auth",
  • "clientId": "205376496935-vtfpdnseqmjhsynlh0bsufl38k0test.apps.googleusercontent.com",
  • "clientSecret": "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",
  • "disabled": false,
  • "emailIdentifiers": "company.com",
  • "environmentType": "production",
  • "id": "Laudantium debitis vel.",
  • "identityProviderName": "Google|GitHub|Microsoft Entra|Amazon Cognito|Okta|Auth0|Keycloak|OIDC",
  • "loginButtonIconUrl": "https://example.com/icon.png",
  • "loginButtonText": "Login with Google",
  • "name": "Google for my company",
  • "scopes": "openid email profile",
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED",
}

UpdateIdentityProvider identity-provider-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: idp-12345678

The Identity Provider ID

Request Body schema: application/json
required
authorizationEndpoint
string

The authorization endpoint of the Identity Provider

clientId
string

The Client ID of the Identity Provider

clientSecret
string

The Client Secret of the Identity Provider

disabled
boolean

Whether the Identity Provider is disabled

emailIdentifiers
string

The email identifiers to use for the Identity Provider

environmentType
string

The type of environment for the Identity Provider

loginButtonIconUrl
string

The URL of the icon to use for the login button

loginButtonText
string

The text to use for the login button

name
string

The name of the Identity Provider

scopes
string

The scopes to request from the Identity Provider

tokenEndpoint
string

The token endpoint of the Identity Provider

userInfoEndpoint
string

The user info endpoint of the Identity Provider

Responses

Request samples

Content type
application/json
{}

VerifyIdentityProvider identity-provider-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: idp-12345678

The Identity Provider ID

Responses

Response samples

Content type
application/json
{
  • "clientId": "205376496935-vtfpdnseqmjhsynlh0bsufl38k0test.apps.googleusercontent.com",
  • "clientSecret": "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",
  • "id": "Nesciunt doloremque et expedita.",
  • "identityProviderName": "Google|GitHub|Microsoft Entra|Amazon Cognito|Okta|Auth0|Keycloak|OIDC",
  • "name": "Google for my company",
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED"
}

saas-portal-api

ListSaaSPortals saas-portal-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "saasPortals": [
    ]
}

ListSaaSPortalCustomDomains saas-portal-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{
  • "customDomains": [
    ]
}

CreateSaaSPortalCustomDomain saas-portal-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
customDomain
required
string

The custom domain

description
required
string

The custom domain description

environmentType
required
string

The environment type for the custom domain

name
required
string

The custom domain name

Responses

Request samples

Content type
application/json
{
  • "customDomain": "mycustomdomain.com",
  • "description": "My custom domain description",
  • "environmentType": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "name": "MyCustomDomain"
}

DeleteSaaSPortalCustomDomain saas-portal-api

Authorizations:
api_key_header_Authorization
path Parameters
environmentType
required
string
Example: DEV

The environment type for the custom domain

Responses

UpdateSaaSPortalCustomDomain saas-portal-api

Authorizations:
api_key_header_Authorization
path Parameters
environmentType
required
string
Example: DEV

The environment type for the saas portal custom domain to update

Request Body schema: application/json
required
customDomain
string

The custom domain

description
string

The custom domain description

name
string

The custom domain name

Responses

Request samples

Content type
application/json
{
  • "customDomain": "mycustomdomain.com",
  • "description": "My custom domain description",
  • "name": "MyCustomDomain"
}

UpdateSaaSPortal saas-portal-api

Authorizations:
api_key_header_Authorization
path Parameters
environmentType
required
string
Example: DEV

The environment type for the saas portal custom domain to update

Request Body schema: application/json
required
customDomain
string

The custom domain for the SaaS portal

disablePasswordLogin
boolean

Whether to disable password login for the SaaS portal

object (SaaSPortalEmailConfig)
googleAnalyticsTagID
string

The Google Analytics tag ID for the SaaS portal

object (SaaSPortalImageConfig)

Responses

Request samples

Content type
application/json
{
  • "customDomain": "mycustomdomain.com",
  • "disablePasswordLogin": false,
  • "emailConfig": {
    },
  • "googleAnalyticsTagID": "G-123456789",
  • "imageConfig": {
    }
}

helm-package-api

ListHelmPackages helm-package-api

Authorizations:
api_key_header_Authorization
query Parameters
chartName
string
Example: chartName=my-chart

The chart name to filter by

Responses

Response samples

Content type
application/json
{
  • "helmPackages": [
    ]
}

SaveHelmPackage helm-package-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
required
object (HelmPackage)

Responses

Request samples

Content type
application/json
{
  • "helmPackage": {
    }
}

DeleteHelmPackage helm-package-api

Authorizations:
api_key_header_Authorization
path Parameters
chartName
required
string
Example: my-chart

The chart name of the Helm package to delete

chartVersion
required
string
Example: 1.0.0

The chart version of the Helm package to delete

Responses

DescribeHelmPackage helm-package-api

Authorizations:
api_key_header_Authorization
path Parameters
chartName
required
string
Example: my-chart

The chart name of the Helm package to describe

chartVersion
required
string
Example: 1.0.0

The chart version of the Helm package to describe

Responses

Response samples

Content type
application/json
{
  • "chartName": "my-chart",
  • "chartRepoName": "my-repo",
  • "chartRepoUrl": "https://my-repo.com",
  • "chartValues": {
    },
  • "chartVersion": "1.0.0",
  • "layeredChartValues": [
    ],
  • "namespace": "default",
  • "password": "my-password",
  • "username": "my-user"
}

compose-gen-api

CheckIfContainerImageAccessible compose-gen-api

Authorizations:
api_key_header_Authorization
query Parameters
imageRegistry
required
string
Example: imageRegistry=docker.io

Registry where the image is stored

username
string
Example: username=username

Username to access the image registry

password
string
Example: password=password

Password to access the image registry

image
required
string
Example: image=library/mysql:5.7

Name of the image along with the tag. Include the repository name if the image is not from the official repository

Responses

Response samples

Content type
application/json
{
  • "errorMsg": "Sunt velit vero omnis ratione culpa.",
  • "imageAccessible": false
}

GenerateComposeSpecFromContainerImage compose-gen-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
Array of objects (EnvironmentVariable)

Runtime environment variables needed to run the image

image
required
string

Name of the image along with the tag. Include the repository name if the image is not from the official repository

imageRegistry
required
string

Registry where the image is stored

password
string

Password to access the image registry

username
string

Username to access the image registry

Responses

Request samples

Content type
application/json
{
  • "environmentVariables": [
    ],
  • "image": "library/mysql:5.7",
  • "imageRegistry": "docker.io",
  • "password": "password",
  • "username": "username"
}

Response samples

Content type
application/json
{
  • "fileContent": "Ullam a ullam enim."
}

custom-network-api

ListCustomNetworks custom-network-api

Authorizations:
api_key_header_Authorization
query Parameters
cloudProviderName
string
Example: cloudProviderName=aws

The name of the cloud provider to filter custom networks by

cloudProviderRegion
string
Example: cloudProviderRegion=us-east-1

The region of the cloud provider to filter custom networks by

customNetworksOnly
boolean
Example: customNetworksOnly=false

Flag indicating whether to return only custom networks, or to include default and imported networks as well

Responses

Response samples

Content type
application/json
{
  • "customNetworks": [
    ]
}

CreateCustomNetwork custom-network-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
cidr
string <cidr>
Default: "10.0.0.0/16"

CIDR block for the network

cloudProviderName
required
string

The name of the cloud provider that the instance is running on.

cloudProviderRegion
required
string

The region of the cloud provider that the instance is running in.

name
string

User friendly network name to help distinguish networks with same CIDRs

object (NetworkFeaturesConfiguration)

Responses

Request samples

Content type
application/json
{
  • "cidr": "10.0.0.0/16",
  • "cloudProviderName": "aws|azure|gcp|all",
  • "cloudProviderRegion": "us-east-1",
  • "name": "Prod us-east-1",
  • "networkFeaturesConfiguration": {
    }
}

Response samples

Content type
application/json
{
  • "cidr": "10.0.0.0/16",
  • "cloudProviderName": "aws|azure|gcp|all",
  • "cloudProviderRegion": "us-east-1",
  • "id": "Sunt deleniti enim qui eos doloribus eius.",
  • "name": "Prod us-east-1",
  • "networkDefinitionType": "Default|Custom|Imported",
  • "networkFeaturesConfiguration": {
    },
  • "networkInstances": [
    ],
  • "owningUserId": "Ducimus enim at.",
  • "owningUserName": "John Doe",
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED"
}

DeleteCustomNetwork custom-network-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: n-12345678

ID of a custom network

Responses

DescribeCustomNetwork custom-network-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: n-12345678

ID of a custom network

Responses

Response samples

Content type
application/json
{
  • "cidr": "10.0.0.0/16",
  • "cloudProviderName": "aws|azure|gcp|all",
  • "cloudProviderRegion": "us-east-1",
  • "id": "Ut itaque repellat eos fuga blanditiis mollitia.",
  • "name": "Prod us-east-1",
  • "networkDefinitionType": "Default|Custom|Imported",
  • "networkFeaturesConfiguration": {
    },
  • "networkInstances": [
    ],
  • "owningUserId": "Quod ab sit ut.",
  • "owningUserName": "John Doe",
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED"
}

UpdateCustomNetwork custom-network-api

Authorizations:
api_key_header_Authorization
path Parameters
id
required
string
Example: n-12345678

ID of a custom network

Request Body schema: application/json
required
name
string

User friendly network name to help distinguish networks with same CIDRs

Responses

Request samples

Content type
application/json
{
  • "name": "Dev us-east-1"
}

Response samples

Content type
application/json
{
  • "cidr": "10.0.0.0/16",
  • "cloudProviderName": "aws|azure|gcp|all",
  • "cloudProviderRegion": "us-east-1",
  • "id": "Aut nihil et quia.",
  • "name": "Prod us-east-1",
  • "networkDefinitionType": "Default|Custom|Imported",
  • "networkFeaturesConfiguration": {
    },
  • "networkInstances": [
    ],
  • "owningUserId": "Quia eius natus voluptas aut exercitationem ad.",
  • "owningUserName": "John Doe",
  • "status": "FAILED|CANCELLED|PENDING_DEPENDENCY|PENDING|RUNNING|DEPLOYING|READY|SUCCESS|COMPLETE|DELETING|DELETED|UNKNOWN|DISCONNECTED|DISCONNECTING|CONNECTING|DEACTIVATED"
}

stripe-connect-api

The API to manage stripe connected accounts

GetStripeAuthorizeUrl stripe-connect-api

Authorizations:
api_key_header_Authorization

Responses

CompleteOAuthConnection stripe-connect-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
code
string

Authorization code from Stripe

state
string

Random string used on the authorize URL

Responses

Request samples

Content type
application/json
{
  • "code": "ac_12345678",
  • "state": "12345678"
}

Response samples

Content type
application/json
{
  • "stripeUserID": "acct_12345678"
}

tenant-billing-api

The API to manage tenant billing

GetTenantBillingStatus tenant-billing-api

Authorizations:
api_key_header_Authorization

Responses

Response samples

Content type
application/json
{}

DisableTenantBilling tenant-billing-api

Authorizations:
api_key_header_Authorization

Responses

DisableBillingProvider tenant-billing-api

Authorizations:
api_key_header_Authorization
path Parameters
billingProviderType
required
string
Example: STRIPE

The type of billing provider to enable

Responses

EnableTenantBilling tenant-billing-api

Authorizations:
api_key_header_Authorization

Responses

EnableBillingProvider tenant-billing-api

Authorizations:
api_key_header_Authorization
path Parameters
billingProviderType
required
string
Example: STRIPE

The type of billing provider to enable

Request Body schema: application/json
required
balanceDueLink
string

The URL to the balance due page

logoURL
string

The URL of the logo for the billing provider. Only present when the billing provider is BRING_YOUR_OWN

name
string

A custom name for the billing provider. Only present when the billing provider is BRING_YOUR_OWN

Responses

Request samples

Content type
application/json
{
  • "balanceDueLink": "https://billing.provider.com/balance-due. Only present when the billing provider is BRING_YOUR_OWN",
  • "name": "Stripe"
}

secrets-api

The set of APIs to manage secrets for service providers.

DeleteSecret secrets-api

Authorizations:
api_key_header_Authorization
path Parameters
environmentType
required
string
Example: DEV

The environment type for the secret

name
required
string
Example: my-secret

Name of the secret

Responses

GetSecret secrets-api

Authorizations:
api_key_header_Authorization
path Parameters
environmentType
required
string
Example: DEV

The environment type for the secret

name
required
string
Example: my-secret

Name of the secret

Responses

Response samples

Content type
application/json
{
  • "environmentType": "PROD|PRIVATE|CANARY|STAGING|QA|DEV|GLOBAL",
  • "name": "my-secret",
  • "value": "super-secret-value"
}

SetSecret secrets-api

Authorizations:
api_key_header_Authorization
path Parameters
environmentType
required
string
Example: DEV

The environment type for the secret

name
required
string
Example: my-secret

Name of the secret

Request Body schema: application/json
required
value
required
string

The value of the secret

Responses

Request samples

Content type
application/json
{
  • "value": "super-secret-value"
}

ListSecrets secrets-api

Authorizations:
api_key_header_Authorization
path Parameters
environmentType
required
string
Example: DEV

The environment type for the secret

Responses

Response samples

Content type
application/json
{
  • "secrets": [
    ]
}

expression-evaluator-api

The API to evaluate expressions.

ExpressionEvaluator expression-evaluator-api

Authorizations:
api_key_header_Authorization
Request Body schema: application/json
required
deploymentCellID
string

Either this or the instanceID must be provided to evaluate the expression(s)

expression
string

Expression containing system and api parameter variable references

object

If provided, the expression field is ignored and all expressions in the map are evaluated. The map keys are preserved in the result.

instanceID
string

Either this or the deploymentCellID must be provided to evaluate the expression(s)

productTierID
string

Mandatory if the instanceID is not provided

resourceKey
required
string

The resource key to use for evaluating resource parameters

serviceID
required
string

The service ID to use for evaluating service parameters

Responses

Request samples

Content type
application/json
{
  • "deploymentCellID": "Vitae placeat sit repellat nam fuga modi.",
  • "expression": "{{ $sys.network.externalClusterEndpoint }}",
  • "expressionMap": {
    },
  • "instanceID": "instance-12345678",
  • "productTierID": "Exercitationem expedita.",
  • "resourceKey": "mysql",
  • "serviceID": "s-123456"
}

Response samples

Content type
application/json
{
  • "error": "failed to evaluate expression: ...",
  • "result": "my-cluster.example.com"
}

schema-api

The API to get the latest JSON schema for various extensions and spec types.

GetJSONSchema schema-api

query Parameters
type
required
string
Example: type=x-omnistrate-service-plan|x-omnistrate-integrations|x-omnistrate-mode-internal|x-omnistrate-proxy-type|x-omnistrate-actionhooks|x-omnistrate-api-params|x-omnistrate-capabilities|x-omnistrate-compute|x-omnistrate-job-config|x-omnistrate-storage|x-omnistrate-image-registry-attributes|x-omnistrate-load-balancer|compose|service-plan|deployment-cell-amenities|system-parameters|services-orchestration-create-dsl|service-orchestration-modify-dsl

The type of the schema to retrieve

Responses

Response samples

Content type
application/json
"Et repellat."