Type Alias AttachPrivateNetworkRequest

AttachPrivateNetworkRequest: {
    dhcpConfig?: PrivateNetworkDHCPConfig;
    ipamConfig?: PrivateNetworkIpamConfig;
    ipamIds?: string[];
    lbId: string;
    privateNetworkId: string;
    region?: Region;
    staticConfig?: PrivateNetworkStaticConfig;
}

Type declaration

  • OptionaldhcpConfig?: PrivateNetworkDHCPConfig

    Defines whether to let DHCP assign IP addresses.

    One-of ('config'): at most one of 'staticConfig', 'dhcpConfig', 'ipamConfig' could be set.

  • OptionalipamConfig?: PrivateNetworkIpamConfig

    For internal use only.

    One-of ('config'): at most one of 'staticConfig', 'dhcpConfig', 'ipamConfig' could be set.

  • OptionalipamIds?: string[]

    IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network. In the future, it will be possible to specify multiple IPs in this field (IPv4 and IPv6), for now only one ID of an IPv4 address is expected. When null, a new private IP address is created for the Load Balancer on this Private Network.

  • lbId: string

    Load Balancer ID.

  • privateNetworkId: string

    Private Network ID.

  • Optionalregion?: Region

    Region to target. If none is passed will use default region from the config.

  • OptionalstaticConfig?: PrivateNetworkStaticConfig

    Object containing an array of a local IP address for the Load Balancer on this Private Network.

    One-of ('config'): at most one of 'staticConfig', 'dhcpConfig', 'ipamConfig' could be set.