import { ModelData, Model } from "@kubernetes-models/base"; /** * AzureAddress is an IP address assigned to an AzureInterface */ export interface IAzureAddress { /** * IP is the ip address of the address */ "ip"?: string; /** * State is the provisioning state of the address */ "state"?: string; /** * Subnet is the subnet the address belongs to */ "subnet"?: string; } /** * AzureAddress is an IP address assigned to an AzureInterface */ export declare class AzureAddress extends Model implements IAzureAddress { "ip"?: string; "state"?: string; "subnet"?: string; constructor(data?: ModelData); } export type { IAzureAddress as IComGithubCiliumCiliumPkgAzureTypesAzureAddress, AzureAddress as ComGithubCiliumCiliumPkgAzureTypesAzureAddress };