UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

26 lines 941 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ import type { LoadBalancerSpecIpAllocationMethod } from './loadBalancerSpecIpAllocationMethod'; import type { LoadBalancerSpecType } from './loadBalancerSpecType'; /** * LoadBalancerSpec defines an Azure load balancer. */ export type LoadBalancerSpec = { apiServerLBStaticIP?: string; ipAllocationMethod?: LoadBalancerSpecIpAllocationMethod; privateDNSName?: string; /** PrivateDNSZoneResourceGroup defines the resource group to be used for Azure Private DNS Zone. If not specified, the resource group of the cluster will be used to create the Azure Private DNS Zone. */ privateDNSZoneResourceGroup?: string; /** Load Balancer type */ type?: LoadBalancerSpecType; }; //# sourceMappingURL=loadBalancerSpec.d.ts.map