import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Updates a VMware vRealize Automation fabricNetworkVsphere resource. * * ## Example Usage * ### S * * You cannot create a vSphere fabric network resource, however you can import using the command specified in the import section below. * Once a resource is imported, you can update it as shown below: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const simple = new vra.fabric.NetworkVSphere("simple", { * cidr: _var.cidr, * defaultGateway: _var.gateway, * domain: _var.domain, * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * ## Import * * To import the vSphere fabric network resource, use the ID as in the following example * * ```sh * $ pulumi import vra:fabric/networkVSphere:NetworkVSphere new_fabric_network_vsphere 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class NetworkVSphere extends pulumi.CustomResource { /** * Get an existing NetworkVSphere resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NetworkVSphereState, opts?: pulumi.CustomResourceOptions): NetworkVSphere; /** * Returns true if the given object is an instance of NetworkVSphere. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NetworkVSphere; /** * Network CIDR to be used. */ readonly cidr: pulumi.Output; /** * Set of ids of the cloud accounts this entity belongs to. */ readonly cloudAccountIds: pulumi.Output; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: pulumi.Output; readonly customProperties: pulumi.Output<{ [key: string]: any; }>; /** * IPv4 default gateway to be used. */ readonly defaultGateway: pulumi.Output; /** * IPv6 default gateway to be used. */ readonly defaultIpv6Gateway: pulumi.Output; /** * List of dns search domains for the vSphere network. */ readonly dnsSearchDomains: pulumi.Output; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly dnsServerAddresses: pulumi.Output; /** * Domain for the vSphere network. */ readonly domain: pulumi.Output; /** * External entity Id on the provider side. */ readonly externalId: pulumi.Output; /** * The id of the region for which this network is defined. */ readonly externalRegionId: pulumi.Output; /** * Network IPv6 CIDR to be used. */ readonly ipv6Cidr: pulumi.Output; /** * Indicates whether this is the default subnet for the zone. */ readonly isDefault: pulumi.Output; /** * Indicates whether the sub-network supports public IP assignment. */ readonly isPublic: pulumi.Output; /** * HATEOAS of the entity */ readonly links: pulumi.Output; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; readonly orgId: pulumi.Output; /** * ID of organization that entity belongs to. */ readonly organizationId: pulumi.Output; /** * Set of tag keys and values to apply to the resource. * Example:[ { "key" : "vmware", "value": "provider" } ] */ readonly tags: pulumi.Output; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Create a NetworkVSphere resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: NetworkVSphereArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkVSphere resources. */ export interface NetworkVSphereState { /** * Network CIDR to be used. */ cidr?: pulumi.Input; /** * Set of ids of the cloud accounts this entity belongs to. */ cloudAccountIds?: pulumi.Input[]>; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ createdAt?: pulumi.Input; customProperties?: pulumi.Input<{ [key: string]: any; }>; /** * IPv4 default gateway to be used. */ defaultGateway?: pulumi.Input; /** * IPv6 default gateway to be used. */ defaultIpv6Gateway?: pulumi.Input; /** * List of dns search domains for the vSphere network. */ dnsSearchDomains?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ dnsServerAddresses?: pulumi.Input[]>; /** * Domain for the vSphere network. */ domain?: pulumi.Input; /** * External entity Id on the provider side. */ externalId?: pulumi.Input; /** * The id of the region for which this network is defined. */ externalRegionId?: pulumi.Input; /** * Network IPv6 CIDR to be used. */ ipv6Cidr?: pulumi.Input; /** * Indicates whether this is the default subnet for the zone. */ isDefault?: pulumi.Input; /** * Indicates whether the sub-network supports public IP assignment. */ isPublic?: pulumi.Input; /** * HATEOAS of the entity */ links?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; orgId?: pulumi.Input; /** * ID of organization that entity belongs to. */ organizationId?: pulumi.Input; /** * Set of tag keys and values to apply to the resource. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a NetworkVSphere resource. */ export interface NetworkVSphereArgs { /** * Network CIDR to be used. */ cidr?: pulumi.Input; /** * IPv4 default gateway to be used. */ defaultGateway?: pulumi.Input; /** * IPv6 default gateway to be used. */ defaultIpv6Gateway?: pulumi.Input; /** * List of dns search domains for the vSphere network. */ dnsSearchDomains?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ dnsServerAddresses?: pulumi.Input[]>; /** * Domain for the vSphere network. */ domain?: pulumi.Input; /** * Network IPv6 CIDR to be used. */ ipv6Cidr?: pulumi.Input; /** * Indicates whether this is the default subnet for the zone. */ isDefault?: pulumi.Input; /** * Indicates whether the sub-network supports public IP assignment. */ isPublic?: pulumi.Input; /** * Set of tag keys and values to apply to the resource. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; }