gcp.vmwareengine.ExternalAddress
Explore with Pulumi AI
An allocated external IP address and its corresponding internal IP address in a private cloud.
To get more information about ExternalAddress, see:
Example Usage
Vmware Engine External Address Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const external_address_nw = new gcp.vmwareengine.Network("external-address-nw", {
name: "pc-nw",
location: "global",
type: "STANDARD",
description: "PC network description.",
});
const external_address_pc = new gcp.vmwareengine.PrivateCloud("external-address-pc", {
location: "-a",
name: "sample-pc",
description: "Sample test PC.",
networkConfig: {
managementCidr: "192.168.50.0/24",
vmwareEngineNetwork: external_address_nw.id,
},
managementCluster: {
clusterId: "sample-mgmt-cluster",
nodeTypeConfigs: [{
nodeTypeId: "standard-72",
nodeCount: 3,
}],
},
});
const external_address_np = new gcp.vmwareengine.NetworkPolicy("external-address-np", {
location: "",
name: "sample-np",
edgeServicesCidr: "192.168.30.0/26",
vmwareEngineNetwork: external_address_nw.id,
});
const vmw_engine_external_address = new gcp.vmwareengine.ExternalAddress("vmw-engine-external-address", {
name: "sample-external-address",
parent: external_address_pc.id,
internalIp: "192.168.0.66",
description: "Sample description.",
}, {
dependsOn: [external_address_np],
});
import pulumi
import pulumi_gcp as gcp
external_address_nw = gcp.vmwareengine.Network("external-address-nw",
name="pc-nw",
location="global",
type="STANDARD",
description="PC network description.")
external_address_pc = gcp.vmwareengine.PrivateCloud("external-address-pc",
location="-a",
name="sample-pc",
description="Sample test PC.",
network_config={
"management_cidr": "192.168.50.0/24",
"vmware_engine_network": external_address_nw.id,
},
management_cluster={
"cluster_id": "sample-mgmt-cluster",
"node_type_configs": [{
"node_type_id": "standard-72",
"node_count": 3,
}],
})
external_address_np = gcp.vmwareengine.NetworkPolicy("external-address-np",
location="",
name="sample-np",
edge_services_cidr="192.168.30.0/26",
vmware_engine_network=external_address_nw.id)
vmw_engine_external_address = gcp.vmwareengine.ExternalAddress("vmw-engine-external-address",
name="sample-external-address",
parent=external_address_pc.id,
internal_ip="192.168.0.66",
description="Sample description.",
opts = pulumi.ResourceOptions(depends_on=[external_address_np]))
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vmwareengine.NewNetwork(ctx, "external-address-nw", &vmwareengine.NetworkArgs{
Name: pulumi.String("pc-nw"),
Location: pulumi.String("global"),
Type: pulumi.String("STANDARD"),
Description: pulumi.String("PC network description."),
})
if err != nil {
return err
}
_, err = vmwareengine.NewPrivateCloud(ctx, "external-address-pc", &vmwareengine.PrivateCloudArgs{
Location: pulumi.String("-a"),
Name: pulumi.String("sample-pc"),
Description: pulumi.String("Sample test PC."),
NetworkConfig: &vmwareengine.PrivateCloudNetworkConfigArgs{
ManagementCidr: pulumi.String("192.168.50.0/24"),
VmwareEngineNetwork: external_address_nw.ID(),
},
ManagementCluster: &vmwareengine.PrivateCloudManagementClusterArgs{
ClusterId: pulumi.String("sample-mgmt-cluster"),
NodeTypeConfigs: vmwareengine.PrivateCloudManagementClusterNodeTypeConfigArray{
&vmwareengine.PrivateCloudManagementClusterNodeTypeConfigArgs{
NodeTypeId: pulumi.String("standard-72"),
NodeCount: pulumi.Int(3),
},
},
},
})
if err != nil {
return err
}
_, err = vmwareengine.NewNetworkPolicy(ctx, "external-address-np", &vmwareengine.NetworkPolicyArgs{
Location: pulumi.String(""),
Name: pulumi.String("sample-np"),
EdgeServicesCidr: pulumi.String("192.168.30.0/26"),
VmwareEngineNetwork: external_address_nw.ID(),
})
if err != nil {
return err
}
_, err = vmwareengine.NewExternalAddress(ctx, "vmw-engine-external-address", &vmwareengine.ExternalAddressArgs{
Name: pulumi.String("sample-external-address"),
Parent: external_address_pc.ID(),
InternalIp: pulumi.String("192.168.0.66"),
Description: pulumi.String("Sample description."),
}, pulumi.DependsOn([]pulumi.Resource{
external_address_np,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var external_address_nw = new Gcp.VMwareEngine.Network("external-address-nw", new()
{
Name = "pc-nw",
Location = "global",
Type = "STANDARD",
Description = "PC network description.",
});
var external_address_pc = new Gcp.VMwareEngine.PrivateCloud("external-address-pc", new()
{
Location = "-a",
Name = "sample-pc",
Description = "Sample test PC.",
NetworkConfig = new Gcp.VMwareEngine.Inputs.PrivateCloudNetworkConfigArgs
{
ManagementCidr = "192.168.50.0/24",
VmwareEngineNetwork = external_address_nw.Id,
},
ManagementCluster = new Gcp.VMwareEngine.Inputs.PrivateCloudManagementClusterArgs
{
ClusterId = "sample-mgmt-cluster",
NodeTypeConfigs = new[]
{
new Gcp.VMwareEngine.Inputs.PrivateCloudManagementClusterNodeTypeConfigArgs
{
NodeTypeId = "standard-72",
NodeCount = 3,
},
},
},
});
var external_address_np = new Gcp.VMwareEngine.NetworkPolicy("external-address-np", new()
{
Location = "",
Name = "sample-np",
EdgeServicesCidr = "192.168.30.0/26",
VmwareEngineNetwork = external_address_nw.Id,
});
var vmw_engine_external_address = new Gcp.VMwareEngine.ExternalAddress("vmw-engine-external-address", new()
{
Name = "sample-external-address",
Parent = external_address_pc.Id,
InternalIp = "192.168.0.66",
Description = "Sample description.",
}, new CustomResourceOptions
{
DependsOn =
{
external_address_np,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.vmwareengine.Network;
import com.pulumi.gcp.vmwareengine.NetworkArgs;
import com.pulumi.gcp.vmwareengine.PrivateCloud;
import com.pulumi.gcp.vmwareengine.PrivateCloudArgs;
import com.pulumi.gcp.vmwareengine.inputs.PrivateCloudNetworkConfigArgs;
import com.pulumi.gcp.vmwareengine.inputs.PrivateCloudManagementClusterArgs;
import com.pulumi.gcp.vmwareengine.NetworkPolicy;
import com.pulumi.gcp.vmwareengine.NetworkPolicyArgs;
import com.pulumi.gcp.vmwareengine.ExternalAddress;
import com.pulumi.gcp.vmwareengine.ExternalAddressArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var external_address_nw = new Network("external-address-nw", NetworkArgs.builder()
.name("pc-nw")
.location("global")
.type("STANDARD")
.description("PC network description.")
.build());
var external_address_pc = new PrivateCloud("external-address-pc", PrivateCloudArgs.builder()
.location("-a")
.name("sample-pc")
.description("Sample test PC.")
.networkConfig(PrivateCloudNetworkConfigArgs.builder()
.managementCidr("192.168.50.0/24")
.vmwareEngineNetwork(external_address_nw.id())
.build())
.managementCluster(PrivateCloudManagementClusterArgs.builder()
.clusterId("sample-mgmt-cluster")
.nodeTypeConfigs(PrivateCloudManagementClusterNodeTypeConfigArgs.builder()
.nodeTypeId("standard-72")
.nodeCount(3)
.build())
.build())
.build());
var external_address_np = new NetworkPolicy("external-address-np", NetworkPolicyArgs.builder()
.location("")
.name("sample-np")
.edgeServicesCidr("192.168.30.0/26")
.vmwareEngineNetwork(external_address_nw.id())
.build());
var vmw_engine_external_address = new ExternalAddress("vmw-engine-external-address", ExternalAddressArgs.builder()
.name("sample-external-address")
.parent(external_address_pc.id())
.internalIp("192.168.0.66")
.description("Sample description.")
.build(), CustomResourceOptions.builder()
.dependsOn(external_address_np)
.build());
}
}
resources:
external-address-nw:
type: gcp:vmwareengine:Network
properties:
name: pc-nw
location: global
type: STANDARD
description: PC network description.
external-address-pc:
type: gcp:vmwareengine:PrivateCloud
properties:
location: -a
name: sample-pc
description: Sample test PC.
networkConfig:
managementCidr: 192.168.50.0/24
vmwareEngineNetwork: ${["external-address-nw"].id}
managementCluster:
clusterId: sample-mgmt-cluster
nodeTypeConfigs:
- nodeTypeId: standard-72
nodeCount: 3
external-address-np:
type: gcp:vmwareengine:NetworkPolicy
properties:
location:
name: sample-np
edgeServicesCidr: 192.168.30.0/26
vmwareEngineNetwork: ${["external-address-nw"].id}
vmw-engine-external-address:
type: gcp:vmwareengine:ExternalAddress
properties:
name: sample-external-address
parent: ${["external-address-pc"].id}
internalIp: 192.168.0.66
description: Sample description.
options:
dependson:
- ${["external-address-np"]}
Create ExternalAddress Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalAddress(name: string, args: ExternalAddressArgs, opts?: CustomResourceOptions);
@overload
def ExternalAddress(resource_name: str,
args: ExternalAddressArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalAddress(resource_name: str,
opts: Optional[ResourceOptions] = None,
internal_ip: Optional[str] = None,
parent: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None)
func NewExternalAddress(ctx *Context, name string, args ExternalAddressArgs, opts ...ResourceOption) (*ExternalAddress, error)
public ExternalAddress(string name, ExternalAddressArgs args, CustomResourceOptions? opts = null)
public ExternalAddress(String name, ExternalAddressArgs args)
public ExternalAddress(String name, ExternalAddressArgs args, CustomResourceOptions options)
type: gcp:vmwareengine:ExternalAddress
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ExternalAddressArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ExternalAddressArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ExternalAddressArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalAddressArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalAddressArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var externalAddressResource = new Gcp.VMwareEngine.ExternalAddress("externalAddressResource", new()
{
InternalIp = "string",
Parent = "string",
Description = "string",
Name = "string",
});
example, err := vmwareengine.NewExternalAddress(ctx, "externalAddressResource", &vmwareengine.ExternalAddressArgs{
InternalIp: pulumi.String("string"),
Parent: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
})
var externalAddressResource = new ExternalAddress("externalAddressResource", ExternalAddressArgs.builder()
.internalIp("string")
.parent("string")
.description("string")
.name("string")
.build());
external_address_resource = gcp.vmwareengine.ExternalAddress("externalAddressResource",
internal_ip="string",
parent="string",
description="string",
name="string")
const externalAddressResource = new gcp.vmwareengine.ExternalAddress("externalAddressResource", {
internalIp: "string",
parent: "string",
description: "string",
name: "string",
});
type: gcp:vmwareengine:ExternalAddress
properties:
description: string
internalIp: string
name: string
parent: string
ExternalAddress Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ExternalAddress resource accepts the following input properties:
- Internal
Ip string - The internal IP address of a workload VM.
- Parent string
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- Description string
- User-provided description for this resource.
- Name string
- The ID of the external IP Address.
- Internal
Ip string - The internal IP address of a workload VM.
- Parent string
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- Description string
- User-provided description for this resource.
- Name string
- The ID of the external IP Address.
- internal
Ip String - The internal IP address of a workload VM.
- parent String
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- description String
- User-provided description for this resource.
- name String
- The ID of the external IP Address.
- internal
Ip string - The internal IP address of a workload VM.
- parent string
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- description string
- User-provided description for this resource.
- name string
- The ID of the external IP Address.
- internal_
ip str - The internal IP address of a workload VM.
- parent str
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- description str
- User-provided description for this resource.
- name str
- The ID of the external IP Address.
- internal
Ip String - The internal IP address of a workload VM.
- parent String
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- description String
- User-provided description for this resource.
- name String
- The ID of the external IP Address.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalAddress resource produces the following output properties:
- Create
Time string - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- External
Ip string - The external IP address of a workload VM.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- State of the resource.
- Uid string
- System-generated unique identifier for the resource.
- Update
Time string - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Create
Time string - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- External
Ip string - The external IP address of a workload VM.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- State of the resource.
- Uid string
- System-generated unique identifier for the resource.
- Update
Time string - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create
Time String - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- external
Ip String - The external IP address of a workload VM.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- State of the resource.
- uid String
- System-generated unique identifier for the resource.
- update
Time String - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create
Time string - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- external
Ip string - The external IP address of a workload VM.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- State of the resource.
- uid string
- System-generated unique identifier for the resource.
- update
Time string - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create_
time str - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- external_
ip str - The external IP address of a workload VM.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- State of the resource.
- uid str
- System-generated unique identifier for the resource.
- update_
time str - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create
Time String - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- external
Ip String - The external IP address of a workload VM.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- State of the resource.
- uid String
- System-generated unique identifier for the resource.
- update
Time String - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Look up Existing ExternalAddress Resource
Get an existing ExternalAddress resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ExternalAddressState, opts?: CustomResourceOptions): ExternalAddress
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
external_ip: Optional[str] = None,
internal_ip: Optional[str] = None,
name: Optional[str] = None,
parent: Optional[str] = None,
state: Optional[str] = None,
uid: Optional[str] = None,
update_time: Optional[str] = None) -> ExternalAddress
func GetExternalAddress(ctx *Context, name string, id IDInput, state *ExternalAddressState, opts ...ResourceOption) (*ExternalAddress, error)
public static ExternalAddress Get(string name, Input<string> id, ExternalAddressState? state, CustomResourceOptions? opts = null)
public static ExternalAddress get(String name, Output<String> id, ExternalAddressState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Description string
- User-provided description for this resource.
- External
Ip string - The external IP address of a workload VM.
- Internal
Ip string - The internal IP address of a workload VM.
- Name string
- The ID of the external IP Address.
- Parent string
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- State string
- State of the resource.
- Uid string
- System-generated unique identifier for the resource.
- Update
Time string - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Create
Time string - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Description string
- User-provided description for this resource.
- External
Ip string - The external IP address of a workload VM.
- Internal
Ip string - The internal IP address of a workload VM.
- Name string
- The ID of the external IP Address.
- Parent string
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- State string
- State of the resource.
- Uid string
- System-generated unique identifier for the resource.
- Update
Time string - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create
Time String - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- description String
- User-provided description for this resource.
- external
Ip String - The external IP address of a workload VM.
- internal
Ip String - The internal IP address of a workload VM.
- name String
- The ID of the external IP Address.
- parent String
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- state String
- State of the resource.
- uid String
- System-generated unique identifier for the resource.
- update
Time String - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create
Time string - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- description string
- User-provided description for this resource.
- external
Ip string - The external IP address of a workload VM.
- internal
Ip string - The internal IP address of a workload VM.
- name string
- The ID of the external IP Address.
- parent string
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- state string
- State of the resource.
- uid string
- System-generated unique identifier for the resource.
- update
Time string - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create_
time str - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- description str
- User-provided description for this resource.
- external_
ip str - The external IP address of a workload VM.
- internal_
ip str - The internal IP address of a workload VM.
- name str
- The ID of the external IP Address.
- parent str
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- state str
- State of the resource.
- uid str
- System-generated unique identifier for the resource.
- update_
time str - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create
Time String - Creation time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- description String
- User-provided description for this resource.
- external
Ip String - The external IP address of a workload VM.
- internal
Ip String - The internal IP address of a workload VM.
- name String
- The ID of the external IP Address.
- parent String
- The resource name of the private cloud to create a new external address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-west1-a/privateClouds/my-cloud
- state String
- State of the resource.
- uid String
- System-generated unique identifier for the resource.
- update
Time String - Last updated time of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Import
ExternalAddress can be imported using any of these accepted formats:
{{parent}}/externalAddresses/{{name}}
When using the pulumi import
command, ExternalAddress can be imported using one of the formats above. For example:
$ pulumi import gcp:vmwareengine/externalAddress:ExternalAddress default {{parent}}/externalAddresses/{{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.