Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PrimaryInstanceSettings

import type { PrimaryInstanceSettings } from "https://googleapis.deno.dev/v1/datamigration:v1.ts";

Settings for the cluster's primary instance

interface PrimaryInstanceSettings {
databaseFlags?: {
[key: string]: string;
}
;
id?: string;
instanceNetworkConfig?: InstanceNetworkConfig;
labels?: {
[key: string]: string;
}
;
machineConfig?: MachineConfig;
readonly outboundPublicIpAddresses?: string[];
readonly privateIp?: string;
}

§Properties

§
databaseFlags?: {
[key: string]: string;
}
[src]

Database flags to pass to AlloyDB when DMS is creating the AlloyDB cluster and instances. See the AlloyDB documentation for how these can be used.

§
id?: string
[src]

Required. The ID of the AlloyDB primary instance. The ID must satisfy the regex expression "[a-z0-9-]+".

§
instanceNetworkConfig?: InstanceNetworkConfig
[src]

Optional. Metadata related to instance level network configuration.

§
labels?: {
[key: string]: string;
}
[src]

Labels for the AlloyDB primary instance created by DMS. An object containing a list of 'key', 'value' pairs.

§
machineConfig?: MachineConfig
[src]

Configuration for the machines that host the underlying database engine.

§
readonly outboundPublicIpAddresses?: string[]
[src]

Output only. All outbound public IP addresses configured for the instance.

§
readonly privateIp?: string
[src]

Output only. The private IP address for the Instance. This is the connection endpoint for an end-user application.