Skip to main content

removeRemoteReference

form schema

Remove a remote reference from an instance.

The reference can only be removed if no other provisioned instances depend on the connection it provides. Disconnect any downstream consumers first.

If this is the last remote reference on the instance, the instance status transitions back from EXTERNAL to INITIALIZED.

mutation {
removeRemoteReference(
organizationId: "my-org"
input: { instanceId: "my-app", field: "aws_authentication" }
) {
result { id field }
successful
messages { field message }
}
}
removeRemoteReference(
organizationId: ID!
input: RemoveRemoteReferenceInput!
): RemoteReferencePayload

Form Schema

This mutation supports dynamic form generation using JSON Schema.

Loading schema...

Arguments

removeRemoteReference.organizationId ● ID! non-null scalar {#organization-id}

Your organization's unique identifier.

removeRemoteReference.input ● RemoveRemoteReferenceInput! non-null input {#input}

Remove a remote reference from an instance. The reference can only be removed if no provisioned instances are connected through it.

Type

RemoteReferencePayload object