@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
25 lines • 710 B
TypeScript
import { IpBlock } from '../../IpBlock';
/** Share network */
export interface ShareNetwork {
/** Availability zone */
availabilityZone?: string;
/** Subnet CIDR */
cidr?: IpBlock;
/** The date and timestamp when the resource was created */
createdAt: string;
/** Share network description */
description?: string;
/** Share network ID */
id: string;
/** Share network name */
name?: string;
/** Private network ID */
networkId: string;
/** Region */
region: string;
/** Subnet ID */
subnetId: string;
/** The date and timestamp when the resource was last updated */
updatedAt: string;
}
//# sourceMappingURL=ShareNetwork.d.ts.map