/** * The RemoteSubnet model module. * @module Ntnx/RemoteSubnet * @version 4.4.1 * @class RemoteSubnet * @extends Subnet */ export default class RemoteSubnet extends Subnet { /** * Returns Name of the VPC associated with the subnet. * @return {string} */ getVpcName(): string; /** * Sets Name of the VPC associated with the subnet. * @param {string} vpcName Name of the VPC associated with the subnet. */ setVpcName(vpcName: string): void; vpcName: string; /** * Returns Name of the project that the remote entities belong to on their host cluster. * @return {string} */ getProjectName(): string; /** * Sets Name of the project that the remote entities belong to on their host cluster. * @param {string} projectName Name of the project that the remote entities belong to on their host cluster. */ setProjectName(projectName: string): void; projectName: string; #private; } import Subnet from "./Subnet";