vmwareengine

package
v7.20.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 24, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Cluster

type Cluster struct {
	pulumi.CustomResourceState

	// True if the cluster is a management cluster; false otherwise.
	// There can only be one management cluster in a private cloud and it has to be the first one.
	Management pulumi.BoolOutput `pulumi:"management"`
	// The ID of the Cluster.
	//
	// ***
	Name pulumi.StringOutput `pulumi:"name"`
	// The map of cluster node types in this cluster,
	// where the key is canonical identifier of the node type (corresponds to the NodeType).
	// Structure is documented below.
	NodeTypeConfigs ClusterNodeTypeConfigArrayOutput `pulumi:"nodeTypeConfigs"`
	// The resource name of the private cloud to create a new cluster 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
	Parent pulumi.StringOutput `pulumi:"parent"`
	// State of the Cluster.
	State pulumi.StringOutput `pulumi:"state"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
}

A cluster in a private cloud.

To get more information about Cluster, see:

* [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds.clusters)

## Example Usage

### Vmware Engine Cluster Basic

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "cluster-nw", &vmwareengine.NetworkArgs{
			Name:        pulumi.String("pc-nw"),
			Type:        pulumi.String("STANDARD"),
			Location:    pulumi.String("global"),
			Description: pulumi.String("PC network description."),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewPrivateCloud(ctx, "cluster-pc", &vmwareengine.PrivateCloudArgs{
			Location:    pulumi.String("us-west1-a"),
			Name:        pulumi.String("sample-pc"),
			Description: pulumi.String("Sample test PC."),
			NetworkConfig: &vmwareengine.PrivateCloudNetworkConfigArgs{
				ManagementCidr:      pulumi.String("192.168.30.0/24"),
				VmwareEngineNetwork: cluster_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.NewCluster(ctx, "vmw-engine-ext-cluster", &vmwareengine.ClusterArgs{
			Name:   pulumi.String("ext-cluster"),
			Parent: cluster_pc.ID(),
			NodeTypeConfigs: vmwareengine.ClusterNodeTypeConfigArray{
				&vmwareengine.ClusterNodeTypeConfigArgs{
					NodeTypeId: pulumi.String("standard-72"),
					NodeCount:  pulumi.Int(3),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

``` ### Vmware Engine Cluster Full

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "cluster-nw", &vmwareengine.NetworkArgs{
			Name:        pulumi.String("pc-nw"),
			Type:        pulumi.String("STANDARD"),
			Location:    pulumi.String("global"),
			Description: pulumi.String("PC network description."),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewPrivateCloud(ctx, "cluster-pc", &vmwareengine.PrivateCloudArgs{
			Location:    pulumi.String("us-west1-a"),
			Name:        pulumi.String("sample-pc"),
			Description: pulumi.String("Sample test PC."),
			NetworkConfig: &vmwareengine.PrivateCloudNetworkConfigArgs{
				ManagementCidr:      pulumi.String("192.168.30.0/24"),
				VmwareEngineNetwork: cluster_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),
						CustomCoreCount: pulumi.Int(32),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewCluster(ctx, "vmw-ext-cluster", &vmwareengine.ClusterArgs{
			Name:   pulumi.String("ext-cluster"),
			Parent: cluster_pc.ID(),
			NodeTypeConfigs: vmwareengine.ClusterNodeTypeConfigArray{
				&vmwareengine.ClusterNodeTypeConfigArgs{
					NodeTypeId:      pulumi.String("standard-72"),
					NodeCount:       pulumi.Int(3),
					CustomCoreCount: pulumi.Int(32),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

Cluster can be imported using any of these accepted formats:

* `{{parent}}/clusters/{{name}}`

When using the `pulumi import` command, Cluster can be imported using one of the formats above. For example:

```sh $ pulumi import gcp:vmwareengine/cluster:Cluster default {{parent}}/clusters/{{name}} ```

func GetCluster

func GetCluster(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ClusterState, opts ...pulumi.ResourceOption) (*Cluster, error)

GetCluster gets an existing Cluster resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewCluster

func NewCluster(ctx *pulumi.Context,
	name string, args *ClusterArgs, opts ...pulumi.ResourceOption) (*Cluster, error)

NewCluster registers a new resource with the given unique name, arguments, and options.

func (*Cluster) ElementType

func (*Cluster) ElementType() reflect.Type

func (*Cluster) ToClusterOutput

func (i *Cluster) ToClusterOutput() ClusterOutput

func (*Cluster) ToClusterOutputWithContext

func (i *Cluster) ToClusterOutputWithContext(ctx context.Context) ClusterOutput

type ClusterArgs

type ClusterArgs struct {
	// The ID of the Cluster.
	//
	// ***
	Name pulumi.StringPtrInput
	// The map of cluster node types in this cluster,
	// where the key is canonical identifier of the node type (corresponds to the NodeType).
	// Structure is documented below.
	NodeTypeConfigs ClusterNodeTypeConfigArrayInput
	// The resource name of the private cloud to create a new cluster 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
	Parent pulumi.StringInput
}

The set of arguments for constructing a Cluster resource.

func (ClusterArgs) ElementType

func (ClusterArgs) ElementType() reflect.Type

type ClusterArray

type ClusterArray []ClusterInput

func (ClusterArray) ElementType

func (ClusterArray) ElementType() reflect.Type

func (ClusterArray) ToClusterArrayOutput

func (i ClusterArray) ToClusterArrayOutput() ClusterArrayOutput

func (ClusterArray) ToClusterArrayOutputWithContext

func (i ClusterArray) ToClusterArrayOutputWithContext(ctx context.Context) ClusterArrayOutput

type ClusterArrayInput

type ClusterArrayInput interface {
	pulumi.Input

	ToClusterArrayOutput() ClusterArrayOutput
	ToClusterArrayOutputWithContext(context.Context) ClusterArrayOutput
}

ClusterArrayInput is an input type that accepts ClusterArray and ClusterArrayOutput values. You can construct a concrete instance of `ClusterArrayInput` via:

ClusterArray{ ClusterArgs{...} }

type ClusterArrayOutput

type ClusterArrayOutput struct{ *pulumi.OutputState }

func (ClusterArrayOutput) ElementType

func (ClusterArrayOutput) ElementType() reflect.Type

func (ClusterArrayOutput) Index

func (ClusterArrayOutput) ToClusterArrayOutput

func (o ClusterArrayOutput) ToClusterArrayOutput() ClusterArrayOutput

func (ClusterArrayOutput) ToClusterArrayOutputWithContext

func (o ClusterArrayOutput) ToClusterArrayOutputWithContext(ctx context.Context) ClusterArrayOutput

type ClusterInput

type ClusterInput interface {
	pulumi.Input

	ToClusterOutput() ClusterOutput
	ToClusterOutputWithContext(ctx context.Context) ClusterOutput
}

type ClusterMap

type ClusterMap map[string]ClusterInput

func (ClusterMap) ElementType

func (ClusterMap) ElementType() reflect.Type

func (ClusterMap) ToClusterMapOutput

func (i ClusterMap) ToClusterMapOutput() ClusterMapOutput

func (ClusterMap) ToClusterMapOutputWithContext

func (i ClusterMap) ToClusterMapOutputWithContext(ctx context.Context) ClusterMapOutput

type ClusterMapInput

type ClusterMapInput interface {
	pulumi.Input

	ToClusterMapOutput() ClusterMapOutput
	ToClusterMapOutputWithContext(context.Context) ClusterMapOutput
}

ClusterMapInput is an input type that accepts ClusterMap and ClusterMapOutput values. You can construct a concrete instance of `ClusterMapInput` via:

ClusterMap{ "key": ClusterArgs{...} }

type ClusterMapOutput

type ClusterMapOutput struct{ *pulumi.OutputState }

func (ClusterMapOutput) ElementType

func (ClusterMapOutput) ElementType() reflect.Type

func (ClusterMapOutput) MapIndex

func (ClusterMapOutput) ToClusterMapOutput

func (o ClusterMapOutput) ToClusterMapOutput() ClusterMapOutput

func (ClusterMapOutput) ToClusterMapOutputWithContext

func (o ClusterMapOutput) ToClusterMapOutputWithContext(ctx context.Context) ClusterMapOutput

type ClusterNodeTypeConfig

type ClusterNodeTypeConfig struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of `nodeType.availableCustomCoreCounts`.
	// If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used.
	// Once the customer is created then corecount cannot be changed.
	CustomCoreCount *int `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount int `pulumi:"nodeCount"`
	// The identifier for this object. Format specified above.
	NodeTypeId string `pulumi:"nodeTypeId"`
}

type ClusterNodeTypeConfigArgs

type ClusterNodeTypeConfigArgs struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of `nodeType.availableCustomCoreCounts`.
	// If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used.
	// Once the customer is created then corecount cannot be changed.
	CustomCoreCount pulumi.IntPtrInput `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount pulumi.IntInput `pulumi:"nodeCount"`
	// The identifier for this object. Format specified above.
	NodeTypeId pulumi.StringInput `pulumi:"nodeTypeId"`
}

func (ClusterNodeTypeConfigArgs) ElementType

func (ClusterNodeTypeConfigArgs) ElementType() reflect.Type

func (ClusterNodeTypeConfigArgs) ToClusterNodeTypeConfigOutput

func (i ClusterNodeTypeConfigArgs) ToClusterNodeTypeConfigOutput() ClusterNodeTypeConfigOutput

func (ClusterNodeTypeConfigArgs) ToClusterNodeTypeConfigOutputWithContext

func (i ClusterNodeTypeConfigArgs) ToClusterNodeTypeConfigOutputWithContext(ctx context.Context) ClusterNodeTypeConfigOutput

type ClusterNodeTypeConfigArray

type ClusterNodeTypeConfigArray []ClusterNodeTypeConfigInput

func (ClusterNodeTypeConfigArray) ElementType

func (ClusterNodeTypeConfigArray) ElementType() reflect.Type

func (ClusterNodeTypeConfigArray) ToClusterNodeTypeConfigArrayOutput

func (i ClusterNodeTypeConfigArray) ToClusterNodeTypeConfigArrayOutput() ClusterNodeTypeConfigArrayOutput

func (ClusterNodeTypeConfigArray) ToClusterNodeTypeConfigArrayOutputWithContext

func (i ClusterNodeTypeConfigArray) ToClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) ClusterNodeTypeConfigArrayOutput

type ClusterNodeTypeConfigArrayInput

type ClusterNodeTypeConfigArrayInput interface {
	pulumi.Input

	ToClusterNodeTypeConfigArrayOutput() ClusterNodeTypeConfigArrayOutput
	ToClusterNodeTypeConfigArrayOutputWithContext(context.Context) ClusterNodeTypeConfigArrayOutput
}

ClusterNodeTypeConfigArrayInput is an input type that accepts ClusterNodeTypeConfigArray and ClusterNodeTypeConfigArrayOutput values. You can construct a concrete instance of `ClusterNodeTypeConfigArrayInput` via:

ClusterNodeTypeConfigArray{ ClusterNodeTypeConfigArgs{...} }

type ClusterNodeTypeConfigArrayOutput

type ClusterNodeTypeConfigArrayOutput struct{ *pulumi.OutputState }

func (ClusterNodeTypeConfigArrayOutput) ElementType

func (ClusterNodeTypeConfigArrayOutput) Index

func (ClusterNodeTypeConfigArrayOutput) ToClusterNodeTypeConfigArrayOutput

func (o ClusterNodeTypeConfigArrayOutput) ToClusterNodeTypeConfigArrayOutput() ClusterNodeTypeConfigArrayOutput

func (ClusterNodeTypeConfigArrayOutput) ToClusterNodeTypeConfigArrayOutputWithContext

func (o ClusterNodeTypeConfigArrayOutput) ToClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) ClusterNodeTypeConfigArrayOutput

type ClusterNodeTypeConfigInput

type ClusterNodeTypeConfigInput interface {
	pulumi.Input

	ToClusterNodeTypeConfigOutput() ClusterNodeTypeConfigOutput
	ToClusterNodeTypeConfigOutputWithContext(context.Context) ClusterNodeTypeConfigOutput
}

ClusterNodeTypeConfigInput is an input type that accepts ClusterNodeTypeConfigArgs and ClusterNodeTypeConfigOutput values. You can construct a concrete instance of `ClusterNodeTypeConfigInput` via:

ClusterNodeTypeConfigArgs{...}

type ClusterNodeTypeConfigOutput

type ClusterNodeTypeConfigOutput struct{ *pulumi.OutputState }

func (ClusterNodeTypeConfigOutput) CustomCoreCount

func (o ClusterNodeTypeConfigOutput) CustomCoreCount() pulumi.IntPtrOutput

Customized number of cores available to each node of the type. This number must always be one of `nodeType.availableCustomCoreCounts`. If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used. Once the customer is created then corecount cannot be changed.

func (ClusterNodeTypeConfigOutput) ElementType

func (ClusterNodeTypeConfigOutput) NodeCount

The number of nodes of this type in the cluster.

func (ClusterNodeTypeConfigOutput) NodeTypeId

The identifier for this object. Format specified above.

func (ClusterNodeTypeConfigOutput) ToClusterNodeTypeConfigOutput

func (o ClusterNodeTypeConfigOutput) ToClusterNodeTypeConfigOutput() ClusterNodeTypeConfigOutput

func (ClusterNodeTypeConfigOutput) ToClusterNodeTypeConfigOutputWithContext

func (o ClusterNodeTypeConfigOutput) ToClusterNodeTypeConfigOutputWithContext(ctx context.Context) ClusterNodeTypeConfigOutput

type ClusterOutput

type ClusterOutput struct{ *pulumi.OutputState }

func (ClusterOutput) ElementType

func (ClusterOutput) ElementType() reflect.Type

func (ClusterOutput) Management

func (o ClusterOutput) Management() pulumi.BoolOutput

True if the cluster is a management cluster; false otherwise. There can only be one management cluster in a private cloud and it has to be the first one.

func (ClusterOutput) Name

The ID of the Cluster.

***

func (ClusterOutput) NodeTypeConfigs

func (o ClusterOutput) NodeTypeConfigs() ClusterNodeTypeConfigArrayOutput

The map of cluster node types in this cluster, where the key is canonical identifier of the node type (corresponds to the NodeType). Structure is documented below.

func (ClusterOutput) Parent

func (o ClusterOutput) Parent() pulumi.StringOutput

The resource name of the private cloud to create a new cluster 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

func (ClusterOutput) State

func (o ClusterOutput) State() pulumi.StringOutput

State of the Cluster.

func (ClusterOutput) ToClusterOutput

func (o ClusterOutput) ToClusterOutput() ClusterOutput

func (ClusterOutput) ToClusterOutputWithContext

func (o ClusterOutput) ToClusterOutputWithContext(ctx context.Context) ClusterOutput

func (ClusterOutput) Uid

System-generated unique identifier for the resource.

type ClusterState

type ClusterState struct {
	// True if the cluster is a management cluster; false otherwise.
	// There can only be one management cluster in a private cloud and it has to be the first one.
	Management pulumi.BoolPtrInput
	// The ID of the Cluster.
	//
	// ***
	Name pulumi.StringPtrInput
	// The map of cluster node types in this cluster,
	// where the key is canonical identifier of the node type (corresponds to the NodeType).
	// Structure is documented below.
	NodeTypeConfigs ClusterNodeTypeConfigArrayInput
	// The resource name of the private cloud to create a new cluster 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
	Parent pulumi.StringPtrInput
	// State of the Cluster.
	State pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
}

func (ClusterState) ElementType

func (ClusterState) ElementType() reflect.Type

type ExternalAccessRule added in v7.6.0

type ExternalAccessRule struct {
	pulumi.CustomResourceState

	// The action that the external access rule performs.
	// Possible values are: `ALLOW`, `DENY`.
	Action pulumi.StringOutput `pulumi:"action"`
	// 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".
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// User-provided description for the external access rule.
	Description pulumi.StringPtrOutput `pulumi:"description"`
	// If destination ranges are specified, the external access rule applies only to
	// traffic that has a destination IP address in these ranges.
	// Structure is documented below.
	DestinationIpRanges ExternalAccessRuleDestinationIpRangeArrayOutput `pulumi:"destinationIpRanges"`
	// A list of destination ports to which the external access rule applies.
	DestinationPorts pulumi.StringArrayOutput `pulumi:"destinationPorts"`
	// The IP protocol to which the external access rule applies.
	IpProtocol pulumi.StringOutput `pulumi:"ipProtocol"`
	// The ID of the external access rule.
	Name pulumi.StringOutput `pulumi:"name"`
	// The resource name of the network policy.
	// 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/networkPolicies/my-policy
	Parent pulumi.StringOutput `pulumi:"parent"`
	// External access rule priority, which determines the external access rule to use when multiple rules apply.
	Priority pulumi.IntOutput `pulumi:"priority"`
	// If source ranges are specified, the external access rule applies only to
	// traffic that has a source IP address in these ranges.
	// Structure is documented below.
	SourceIpRanges ExternalAccessRuleSourceIpRangeArrayOutput `pulumi:"sourceIpRanges"`
	// A list of source ports to which the external access rule applies.
	SourcePorts pulumi.StringArrayOutput `pulumi:"sourcePorts"`
	// State of the Cluster.
	State pulumi.StringOutput `pulumi:"state"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
	// 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".
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

External access firewall rules for filtering incoming traffic destined to `ExternalAddress` resources.

To get more information about ExternalAccessRule, see:

* [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.networkPolicies.externalAccessRules)

## Example Usage

### Vmware Engine External Access Rule Basic

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/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-access-rule-nw", &vmwareengine.NetworkArgs{
			Name:        pulumi.String("sample-nw"),
			Location:    pulumi.String("global"),
			Type:        pulumi.String("STANDARD"),
			Description: pulumi.String("PC network description."),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetworkPolicy(ctx, "external-access-rule-np", &vmwareengine.NetworkPolicyArgs{
			Location:            pulumi.String("us-west1"),
			Name:                pulumi.String("sample-np"),
			EdgeServicesCidr:    pulumi.String("192.168.30.0/26"),
			VmwareEngineNetwork: external_access_rule_nw.ID(),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewExternalAccessRule(ctx, "vmw-engine-external-access-rule", &vmwareengine.ExternalAccessRuleArgs{
			Name:       pulumi.String("sample-external-access-rule"),
			Parent:     external_access_rule_np.ID(),
			Priority:   pulumi.Int(101),
			Action:     pulumi.String("DENY"),
			IpProtocol: pulumi.String("TCP"),
			SourceIpRanges: vmwareengine.ExternalAccessRuleSourceIpRangeArray{
				&vmwareengine.ExternalAccessRuleSourceIpRangeArgs{
					IpAddressRange: pulumi.String("0.0.0.0/0"),
				},
			},
			SourcePorts: pulumi.StringArray{
				pulumi.String("80"),
			},
			DestinationIpRanges: vmwareengine.ExternalAccessRuleDestinationIpRangeArray{
				&vmwareengine.ExternalAccessRuleDestinationIpRangeArgs{
					IpAddressRange: pulumi.String("0.0.0.0/0"),
				},
			},
			DestinationPorts: pulumi.StringArray{
				pulumi.String("433"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

``` ### Vmware Engine External Access Rule Full

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/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-access-rule-nw", &vmwareengine.NetworkArgs{
			Name:        pulumi.String("sample-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-access-rule-pc", &vmwareengine.PrivateCloudArgs{
			Location:    pulumi.String("us-west1-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_access_rule_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-access-rule-np", &vmwareengine.NetworkPolicyArgs{
			Location:            pulumi.String("us-west1"),
			Name:                pulumi.String("sample-np"),
			EdgeServicesCidr:    pulumi.String("192.168.30.0/26"),
			VmwareEngineNetwork: external_access_rule_nw.ID(),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewExternalAddress(ctx, "external-access-rule-ea", &vmwareengine.ExternalAddressArgs{
			Name:       pulumi.String("sample-ea"),
			Parent:     external_access_rule_pc.ID(),
			InternalIp: pulumi.String("192.168.0.65"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewExternalAccessRule(ctx, "vmw-engine-external-access-rule", &vmwareengine.ExternalAccessRuleArgs{
			Name:        pulumi.String("sample-external-access-rule"),
			Parent:      external_access_rule_np.ID(),
			Description: pulumi.String("Sample Description"),
			Priority:    pulumi.Int(101),
			Action:      pulumi.String("ALLOW"),
			IpProtocol:  pulumi.String("tcp"),
			SourceIpRanges: vmwareengine.ExternalAccessRuleSourceIpRangeArray{
				&vmwareengine.ExternalAccessRuleSourceIpRangeArgs{
					IpAddressRange: pulumi.String("0.0.0.0/0"),
				},
			},
			SourcePorts: pulumi.StringArray{
				pulumi.String("80"),
			},
			DestinationIpRanges: vmwareengine.ExternalAccessRuleDestinationIpRangeArray{
				&vmwareengine.ExternalAccessRuleDestinationIpRangeArgs{
					ExternalAddress: external_access_rule_ea.ID(),
				},
			},
			DestinationPorts: pulumi.StringArray{
				pulumi.String("433"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

ExternalAccessRule can be imported using any of these accepted formats:

* `{{parent}}/externalAccessRules/{{name}}`

When using the `pulumi import` command, ExternalAccessRule can be imported using one of the formats above. For example:

```sh $ pulumi import gcp:vmwareengine/externalAccessRule:ExternalAccessRule default {{parent}}/externalAccessRules/{{name}} ```

func GetExternalAccessRule added in v7.6.0

func GetExternalAccessRule(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ExternalAccessRuleState, opts ...pulumi.ResourceOption) (*ExternalAccessRule, error)

GetExternalAccessRule gets an existing ExternalAccessRule resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewExternalAccessRule added in v7.6.0

func NewExternalAccessRule(ctx *pulumi.Context,
	name string, args *ExternalAccessRuleArgs, opts ...pulumi.ResourceOption) (*ExternalAccessRule, error)

NewExternalAccessRule registers a new resource with the given unique name, arguments, and options.

func (*ExternalAccessRule) ElementType added in v7.6.0

func (*ExternalAccessRule) ElementType() reflect.Type

func (*ExternalAccessRule) ToExternalAccessRuleOutput added in v7.6.0

func (i *ExternalAccessRule) ToExternalAccessRuleOutput() ExternalAccessRuleOutput

func (*ExternalAccessRule) ToExternalAccessRuleOutputWithContext added in v7.6.0

func (i *ExternalAccessRule) ToExternalAccessRuleOutputWithContext(ctx context.Context) ExternalAccessRuleOutput

type ExternalAccessRuleArgs added in v7.6.0

type ExternalAccessRuleArgs struct {
	// The action that the external access rule performs.
	// Possible values are: `ALLOW`, `DENY`.
	Action pulumi.StringInput
	// User-provided description for the external access rule.
	Description pulumi.StringPtrInput
	// If destination ranges are specified, the external access rule applies only to
	// traffic that has a destination IP address in these ranges.
	// Structure is documented below.
	DestinationIpRanges ExternalAccessRuleDestinationIpRangeArrayInput
	// A list of destination ports to which the external access rule applies.
	DestinationPorts pulumi.StringArrayInput
	// The IP protocol to which the external access rule applies.
	IpProtocol pulumi.StringInput
	// The ID of the external access rule.
	Name pulumi.StringPtrInput
	// The resource name of the network policy.
	// 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/networkPolicies/my-policy
	Parent pulumi.StringInput
	// External access rule priority, which determines the external access rule to use when multiple rules apply.
	Priority pulumi.IntInput
	// If source ranges are specified, the external access rule applies only to
	// traffic that has a source IP address in these ranges.
	// Structure is documented below.
	SourceIpRanges ExternalAccessRuleSourceIpRangeArrayInput
	// A list of source ports to which the external access rule applies.
	SourcePorts pulumi.StringArrayInput
}

The set of arguments for constructing a ExternalAccessRule resource.

func (ExternalAccessRuleArgs) ElementType added in v7.6.0

func (ExternalAccessRuleArgs) ElementType() reflect.Type

type ExternalAccessRuleArray added in v7.6.0

type ExternalAccessRuleArray []ExternalAccessRuleInput

func (ExternalAccessRuleArray) ElementType added in v7.6.0

func (ExternalAccessRuleArray) ElementType() reflect.Type

func (ExternalAccessRuleArray) ToExternalAccessRuleArrayOutput added in v7.6.0

func (i ExternalAccessRuleArray) ToExternalAccessRuleArrayOutput() ExternalAccessRuleArrayOutput

func (ExternalAccessRuleArray) ToExternalAccessRuleArrayOutputWithContext added in v7.6.0

func (i ExternalAccessRuleArray) ToExternalAccessRuleArrayOutputWithContext(ctx context.Context) ExternalAccessRuleArrayOutput

type ExternalAccessRuleArrayInput added in v7.6.0

type ExternalAccessRuleArrayInput interface {
	pulumi.Input

	ToExternalAccessRuleArrayOutput() ExternalAccessRuleArrayOutput
	ToExternalAccessRuleArrayOutputWithContext(context.Context) ExternalAccessRuleArrayOutput
}

ExternalAccessRuleArrayInput is an input type that accepts ExternalAccessRuleArray and ExternalAccessRuleArrayOutput values. You can construct a concrete instance of `ExternalAccessRuleArrayInput` via:

ExternalAccessRuleArray{ ExternalAccessRuleArgs{...} }

type ExternalAccessRuleArrayOutput added in v7.6.0

type ExternalAccessRuleArrayOutput struct{ *pulumi.OutputState }

func (ExternalAccessRuleArrayOutput) ElementType added in v7.6.0

func (ExternalAccessRuleArrayOutput) Index added in v7.6.0

func (ExternalAccessRuleArrayOutput) ToExternalAccessRuleArrayOutput added in v7.6.0

func (o ExternalAccessRuleArrayOutput) ToExternalAccessRuleArrayOutput() ExternalAccessRuleArrayOutput

func (ExternalAccessRuleArrayOutput) ToExternalAccessRuleArrayOutputWithContext added in v7.6.0

func (o ExternalAccessRuleArrayOutput) ToExternalAccessRuleArrayOutputWithContext(ctx context.Context) ExternalAccessRuleArrayOutput

type ExternalAccessRuleDestinationIpRange added in v7.6.0

type ExternalAccessRuleDestinationIpRange struct {
	// The name of an `ExternalAddress` resource.
	//
	// ***
	ExternalAddress *string `pulumi:"externalAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange *string `pulumi:"ipAddressRange"`
}

type ExternalAccessRuleDestinationIpRangeArgs added in v7.6.0

type ExternalAccessRuleDestinationIpRangeArgs struct {
	// The name of an `ExternalAddress` resource.
	//
	// ***
	ExternalAddress pulumi.StringPtrInput `pulumi:"externalAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange pulumi.StringPtrInput `pulumi:"ipAddressRange"`
}

func (ExternalAccessRuleDestinationIpRangeArgs) ElementType added in v7.6.0

func (ExternalAccessRuleDestinationIpRangeArgs) ToExternalAccessRuleDestinationIpRangeOutput added in v7.6.0

func (i ExternalAccessRuleDestinationIpRangeArgs) ToExternalAccessRuleDestinationIpRangeOutput() ExternalAccessRuleDestinationIpRangeOutput

func (ExternalAccessRuleDestinationIpRangeArgs) ToExternalAccessRuleDestinationIpRangeOutputWithContext added in v7.6.0

func (i ExternalAccessRuleDestinationIpRangeArgs) ToExternalAccessRuleDestinationIpRangeOutputWithContext(ctx context.Context) ExternalAccessRuleDestinationIpRangeOutput

type ExternalAccessRuleDestinationIpRangeArray added in v7.6.0

type ExternalAccessRuleDestinationIpRangeArray []ExternalAccessRuleDestinationIpRangeInput

func (ExternalAccessRuleDestinationIpRangeArray) ElementType added in v7.6.0

func (ExternalAccessRuleDestinationIpRangeArray) ToExternalAccessRuleDestinationIpRangeArrayOutput added in v7.6.0

func (i ExternalAccessRuleDestinationIpRangeArray) ToExternalAccessRuleDestinationIpRangeArrayOutput() ExternalAccessRuleDestinationIpRangeArrayOutput

func (ExternalAccessRuleDestinationIpRangeArray) ToExternalAccessRuleDestinationIpRangeArrayOutputWithContext added in v7.6.0

func (i ExternalAccessRuleDestinationIpRangeArray) ToExternalAccessRuleDestinationIpRangeArrayOutputWithContext(ctx context.Context) ExternalAccessRuleDestinationIpRangeArrayOutput

type ExternalAccessRuleDestinationIpRangeArrayInput added in v7.6.0

type ExternalAccessRuleDestinationIpRangeArrayInput interface {
	pulumi.Input

	ToExternalAccessRuleDestinationIpRangeArrayOutput() ExternalAccessRuleDestinationIpRangeArrayOutput
	ToExternalAccessRuleDestinationIpRangeArrayOutputWithContext(context.Context) ExternalAccessRuleDestinationIpRangeArrayOutput
}

ExternalAccessRuleDestinationIpRangeArrayInput is an input type that accepts ExternalAccessRuleDestinationIpRangeArray and ExternalAccessRuleDestinationIpRangeArrayOutput values. You can construct a concrete instance of `ExternalAccessRuleDestinationIpRangeArrayInput` via:

ExternalAccessRuleDestinationIpRangeArray{ ExternalAccessRuleDestinationIpRangeArgs{...} }

type ExternalAccessRuleDestinationIpRangeArrayOutput added in v7.6.0

type ExternalAccessRuleDestinationIpRangeArrayOutput struct{ *pulumi.OutputState }

func (ExternalAccessRuleDestinationIpRangeArrayOutput) ElementType added in v7.6.0

func (ExternalAccessRuleDestinationIpRangeArrayOutput) Index added in v7.6.0

func (ExternalAccessRuleDestinationIpRangeArrayOutput) ToExternalAccessRuleDestinationIpRangeArrayOutput added in v7.6.0

func (o ExternalAccessRuleDestinationIpRangeArrayOutput) ToExternalAccessRuleDestinationIpRangeArrayOutput() ExternalAccessRuleDestinationIpRangeArrayOutput

func (ExternalAccessRuleDestinationIpRangeArrayOutput) ToExternalAccessRuleDestinationIpRangeArrayOutputWithContext added in v7.6.0

func (o ExternalAccessRuleDestinationIpRangeArrayOutput) ToExternalAccessRuleDestinationIpRangeArrayOutputWithContext(ctx context.Context) ExternalAccessRuleDestinationIpRangeArrayOutput

type ExternalAccessRuleDestinationIpRangeInput added in v7.6.0

type ExternalAccessRuleDestinationIpRangeInput interface {
	pulumi.Input

	ToExternalAccessRuleDestinationIpRangeOutput() ExternalAccessRuleDestinationIpRangeOutput
	ToExternalAccessRuleDestinationIpRangeOutputWithContext(context.Context) ExternalAccessRuleDestinationIpRangeOutput
}

ExternalAccessRuleDestinationIpRangeInput is an input type that accepts ExternalAccessRuleDestinationIpRangeArgs and ExternalAccessRuleDestinationIpRangeOutput values. You can construct a concrete instance of `ExternalAccessRuleDestinationIpRangeInput` via:

ExternalAccessRuleDestinationIpRangeArgs{...}

type ExternalAccessRuleDestinationIpRangeOutput added in v7.6.0

type ExternalAccessRuleDestinationIpRangeOutput struct{ *pulumi.OutputState }

func (ExternalAccessRuleDestinationIpRangeOutput) ElementType added in v7.6.0

func (ExternalAccessRuleDestinationIpRangeOutput) ExternalAddress added in v7.6.0

The name of an `ExternalAddress` resource.

***

func (ExternalAccessRuleDestinationIpRangeOutput) IpAddressRange added in v7.6.0

An IP address range in the CIDR format.

func (ExternalAccessRuleDestinationIpRangeOutput) ToExternalAccessRuleDestinationIpRangeOutput added in v7.6.0

func (o ExternalAccessRuleDestinationIpRangeOutput) ToExternalAccessRuleDestinationIpRangeOutput() ExternalAccessRuleDestinationIpRangeOutput

func (ExternalAccessRuleDestinationIpRangeOutput) ToExternalAccessRuleDestinationIpRangeOutputWithContext added in v7.6.0

func (o ExternalAccessRuleDestinationIpRangeOutput) ToExternalAccessRuleDestinationIpRangeOutputWithContext(ctx context.Context) ExternalAccessRuleDestinationIpRangeOutput

type ExternalAccessRuleInput added in v7.6.0

type ExternalAccessRuleInput interface {
	pulumi.Input

	ToExternalAccessRuleOutput() ExternalAccessRuleOutput
	ToExternalAccessRuleOutputWithContext(ctx context.Context) ExternalAccessRuleOutput
}

type ExternalAccessRuleMap added in v7.6.0

type ExternalAccessRuleMap map[string]ExternalAccessRuleInput

func (ExternalAccessRuleMap) ElementType added in v7.6.0

func (ExternalAccessRuleMap) ElementType() reflect.Type

func (ExternalAccessRuleMap) ToExternalAccessRuleMapOutput added in v7.6.0

func (i ExternalAccessRuleMap) ToExternalAccessRuleMapOutput() ExternalAccessRuleMapOutput

func (ExternalAccessRuleMap) ToExternalAccessRuleMapOutputWithContext added in v7.6.0

func (i ExternalAccessRuleMap) ToExternalAccessRuleMapOutputWithContext(ctx context.Context) ExternalAccessRuleMapOutput

type ExternalAccessRuleMapInput added in v7.6.0

type ExternalAccessRuleMapInput interface {
	pulumi.Input

	ToExternalAccessRuleMapOutput() ExternalAccessRuleMapOutput
	ToExternalAccessRuleMapOutputWithContext(context.Context) ExternalAccessRuleMapOutput
}

ExternalAccessRuleMapInput is an input type that accepts ExternalAccessRuleMap and ExternalAccessRuleMapOutput values. You can construct a concrete instance of `ExternalAccessRuleMapInput` via:

ExternalAccessRuleMap{ "key": ExternalAccessRuleArgs{...} }

type ExternalAccessRuleMapOutput added in v7.6.0

type ExternalAccessRuleMapOutput struct{ *pulumi.OutputState }

func (ExternalAccessRuleMapOutput) ElementType added in v7.6.0

func (ExternalAccessRuleMapOutput) MapIndex added in v7.6.0

func (ExternalAccessRuleMapOutput) ToExternalAccessRuleMapOutput added in v7.6.0

func (o ExternalAccessRuleMapOutput) ToExternalAccessRuleMapOutput() ExternalAccessRuleMapOutput

func (ExternalAccessRuleMapOutput) ToExternalAccessRuleMapOutputWithContext added in v7.6.0

func (o ExternalAccessRuleMapOutput) ToExternalAccessRuleMapOutputWithContext(ctx context.Context) ExternalAccessRuleMapOutput

type ExternalAccessRuleOutput added in v7.6.0

type ExternalAccessRuleOutput struct{ *pulumi.OutputState }

func (ExternalAccessRuleOutput) Action added in v7.6.0

The action that the external access rule performs. Possible values are: `ALLOW`, `DENY`.

func (ExternalAccessRuleOutput) CreateTime added in v7.6.0

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".

func (ExternalAccessRuleOutput) Description added in v7.6.0

User-provided description for the external access rule.

func (ExternalAccessRuleOutput) DestinationIpRanges added in v7.6.0

If destination ranges are specified, the external access rule applies only to traffic that has a destination IP address in these ranges. Structure is documented below.

func (ExternalAccessRuleOutput) DestinationPorts added in v7.6.0

func (o ExternalAccessRuleOutput) DestinationPorts() pulumi.StringArrayOutput

A list of destination ports to which the external access rule applies.

func (ExternalAccessRuleOutput) ElementType added in v7.6.0

func (ExternalAccessRuleOutput) ElementType() reflect.Type

func (ExternalAccessRuleOutput) IpProtocol added in v7.6.0

The IP protocol to which the external access rule applies.

func (ExternalAccessRuleOutput) Name added in v7.6.0

The ID of the external access rule.

func (ExternalAccessRuleOutput) Parent added in v7.6.0

The resource name of the network policy. 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/networkPolicies/my-policy

func (ExternalAccessRuleOutput) Priority added in v7.6.0

External access rule priority, which determines the external access rule to use when multiple rules apply.

func (ExternalAccessRuleOutput) SourceIpRanges added in v7.6.0

If source ranges are specified, the external access rule applies only to traffic that has a source IP address in these ranges. Structure is documented below.

func (ExternalAccessRuleOutput) SourcePorts added in v7.6.0

A list of source ports to which the external access rule applies.

func (ExternalAccessRuleOutput) State added in v7.6.0

State of the Cluster.

func (ExternalAccessRuleOutput) ToExternalAccessRuleOutput added in v7.6.0

func (o ExternalAccessRuleOutput) ToExternalAccessRuleOutput() ExternalAccessRuleOutput

func (ExternalAccessRuleOutput) ToExternalAccessRuleOutputWithContext added in v7.6.0

func (o ExternalAccessRuleOutput) ToExternalAccessRuleOutputWithContext(ctx context.Context) ExternalAccessRuleOutput

func (ExternalAccessRuleOutput) Uid added in v7.6.0

System-generated unique identifier for the resource.

func (ExternalAccessRuleOutput) UpdateTime added in v7.6.0

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".

type ExternalAccessRuleSourceIpRange added in v7.6.0

type ExternalAccessRuleSourceIpRange struct {
	// A single IP address.
	IpAddress *string `pulumi:"ipAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange *string `pulumi:"ipAddressRange"`
}

type ExternalAccessRuleSourceIpRangeArgs added in v7.6.0

type ExternalAccessRuleSourceIpRangeArgs struct {
	// A single IP address.
	IpAddress pulumi.StringPtrInput `pulumi:"ipAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange pulumi.StringPtrInput `pulumi:"ipAddressRange"`
}

func (ExternalAccessRuleSourceIpRangeArgs) ElementType added in v7.6.0

func (ExternalAccessRuleSourceIpRangeArgs) ToExternalAccessRuleSourceIpRangeOutput added in v7.6.0

func (i ExternalAccessRuleSourceIpRangeArgs) ToExternalAccessRuleSourceIpRangeOutput() ExternalAccessRuleSourceIpRangeOutput

func (ExternalAccessRuleSourceIpRangeArgs) ToExternalAccessRuleSourceIpRangeOutputWithContext added in v7.6.0

func (i ExternalAccessRuleSourceIpRangeArgs) ToExternalAccessRuleSourceIpRangeOutputWithContext(ctx context.Context) ExternalAccessRuleSourceIpRangeOutput

type ExternalAccessRuleSourceIpRangeArray added in v7.6.0

type ExternalAccessRuleSourceIpRangeArray []ExternalAccessRuleSourceIpRangeInput

func (ExternalAccessRuleSourceIpRangeArray) ElementType added in v7.6.0

func (ExternalAccessRuleSourceIpRangeArray) ToExternalAccessRuleSourceIpRangeArrayOutput added in v7.6.0

func (i ExternalAccessRuleSourceIpRangeArray) ToExternalAccessRuleSourceIpRangeArrayOutput() ExternalAccessRuleSourceIpRangeArrayOutput

func (ExternalAccessRuleSourceIpRangeArray) ToExternalAccessRuleSourceIpRangeArrayOutputWithContext added in v7.6.0

func (i ExternalAccessRuleSourceIpRangeArray) ToExternalAccessRuleSourceIpRangeArrayOutputWithContext(ctx context.Context) ExternalAccessRuleSourceIpRangeArrayOutput

type ExternalAccessRuleSourceIpRangeArrayInput added in v7.6.0

type ExternalAccessRuleSourceIpRangeArrayInput interface {
	pulumi.Input

	ToExternalAccessRuleSourceIpRangeArrayOutput() ExternalAccessRuleSourceIpRangeArrayOutput
	ToExternalAccessRuleSourceIpRangeArrayOutputWithContext(context.Context) ExternalAccessRuleSourceIpRangeArrayOutput
}

ExternalAccessRuleSourceIpRangeArrayInput is an input type that accepts ExternalAccessRuleSourceIpRangeArray and ExternalAccessRuleSourceIpRangeArrayOutput values. You can construct a concrete instance of `ExternalAccessRuleSourceIpRangeArrayInput` via:

ExternalAccessRuleSourceIpRangeArray{ ExternalAccessRuleSourceIpRangeArgs{...} }

type ExternalAccessRuleSourceIpRangeArrayOutput added in v7.6.0

type ExternalAccessRuleSourceIpRangeArrayOutput struct{ *pulumi.OutputState }

func (ExternalAccessRuleSourceIpRangeArrayOutput) ElementType added in v7.6.0

func (ExternalAccessRuleSourceIpRangeArrayOutput) Index added in v7.6.0

func (ExternalAccessRuleSourceIpRangeArrayOutput) ToExternalAccessRuleSourceIpRangeArrayOutput added in v7.6.0

func (o ExternalAccessRuleSourceIpRangeArrayOutput) ToExternalAccessRuleSourceIpRangeArrayOutput() ExternalAccessRuleSourceIpRangeArrayOutput

func (ExternalAccessRuleSourceIpRangeArrayOutput) ToExternalAccessRuleSourceIpRangeArrayOutputWithContext added in v7.6.0

func (o ExternalAccessRuleSourceIpRangeArrayOutput) ToExternalAccessRuleSourceIpRangeArrayOutputWithContext(ctx context.Context) ExternalAccessRuleSourceIpRangeArrayOutput

type ExternalAccessRuleSourceIpRangeInput added in v7.6.0

type ExternalAccessRuleSourceIpRangeInput interface {
	pulumi.Input

	ToExternalAccessRuleSourceIpRangeOutput() ExternalAccessRuleSourceIpRangeOutput
	ToExternalAccessRuleSourceIpRangeOutputWithContext(context.Context) ExternalAccessRuleSourceIpRangeOutput
}

ExternalAccessRuleSourceIpRangeInput is an input type that accepts ExternalAccessRuleSourceIpRangeArgs and ExternalAccessRuleSourceIpRangeOutput values. You can construct a concrete instance of `ExternalAccessRuleSourceIpRangeInput` via:

ExternalAccessRuleSourceIpRangeArgs{...}

type ExternalAccessRuleSourceIpRangeOutput added in v7.6.0

type ExternalAccessRuleSourceIpRangeOutput struct{ *pulumi.OutputState }

func (ExternalAccessRuleSourceIpRangeOutput) ElementType added in v7.6.0

func (ExternalAccessRuleSourceIpRangeOutput) IpAddress added in v7.6.0

A single IP address.

func (ExternalAccessRuleSourceIpRangeOutput) IpAddressRange added in v7.6.0

An IP address range in the CIDR format.

func (ExternalAccessRuleSourceIpRangeOutput) ToExternalAccessRuleSourceIpRangeOutput added in v7.6.0

func (o ExternalAccessRuleSourceIpRangeOutput) ToExternalAccessRuleSourceIpRangeOutput() ExternalAccessRuleSourceIpRangeOutput

func (ExternalAccessRuleSourceIpRangeOutput) ToExternalAccessRuleSourceIpRangeOutputWithContext added in v7.6.0

func (o ExternalAccessRuleSourceIpRangeOutput) ToExternalAccessRuleSourceIpRangeOutputWithContext(ctx context.Context) ExternalAccessRuleSourceIpRangeOutput

type ExternalAccessRuleState added in v7.6.0

type ExternalAccessRuleState struct {
	// The action that the external access rule performs.
	// Possible values are: `ALLOW`, `DENY`.
	Action pulumi.StringPtrInput
	// 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".
	CreateTime pulumi.StringPtrInput
	// User-provided description for the external access rule.
	Description pulumi.StringPtrInput
	// If destination ranges are specified, the external access rule applies only to
	// traffic that has a destination IP address in these ranges.
	// Structure is documented below.
	DestinationIpRanges ExternalAccessRuleDestinationIpRangeArrayInput
	// A list of destination ports to which the external access rule applies.
	DestinationPorts pulumi.StringArrayInput
	// The IP protocol to which the external access rule applies.
	IpProtocol pulumi.StringPtrInput
	// The ID of the external access rule.
	Name pulumi.StringPtrInput
	// The resource name of the network policy.
	// 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/networkPolicies/my-policy
	Parent pulumi.StringPtrInput
	// External access rule priority, which determines the external access rule to use when multiple rules apply.
	Priority pulumi.IntPtrInput
	// If source ranges are specified, the external access rule applies only to
	// traffic that has a source IP address in these ranges.
	// Structure is documented below.
	SourceIpRanges ExternalAccessRuleSourceIpRangeArrayInput
	// A list of source ports to which the external access rule applies.
	SourcePorts pulumi.StringArrayInput
	// State of the Cluster.
	State pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
	// 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".
	UpdateTime pulumi.StringPtrInput
}

func (ExternalAccessRuleState) ElementType added in v7.6.0

func (ExternalAccessRuleState) ElementType() reflect.Type

type ExternalAddress added in v7.4.0

type ExternalAddress struct {
	pulumi.CustomResourceState

	// 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".
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// User-provided description for this resource.
	Description pulumi.StringPtrOutput `pulumi:"description"`
	// The external IP address of a workload VM.
	ExternalIp pulumi.StringOutput `pulumi:"externalIp"`
	// The internal IP address of a workload VM.
	InternalIp pulumi.StringOutput `pulumi:"internalIp"`
	// The ID of the external IP Address.
	//
	// ***
	Name pulumi.StringOutput `pulumi:"name"`
	// 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
	Parent pulumi.StringOutput `pulumi:"parent"`
	// State of the resource.
	State pulumi.StringOutput `pulumi:"state"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
	// 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".
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

An allocated external IP address and its corresponding internal IP address in a private cloud.

To get more information about ExternalAddress, see:

* [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds.externalAddresses)

## Example Usage

### Vmware Engine External Address Basic

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/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."),
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## 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:

```sh $ pulumi import gcp:vmwareengine/externalAddress:ExternalAddress default {{parent}}/externalAddresses/{{name}} ```

func GetExternalAddress added in v7.4.0

func GetExternalAddress(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ExternalAddressState, opts ...pulumi.ResourceOption) (*ExternalAddress, error)

GetExternalAddress gets an existing ExternalAddress resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewExternalAddress added in v7.4.0

func NewExternalAddress(ctx *pulumi.Context,
	name string, args *ExternalAddressArgs, opts ...pulumi.ResourceOption) (*ExternalAddress, error)

NewExternalAddress registers a new resource with the given unique name, arguments, and options.

func (*ExternalAddress) ElementType added in v7.4.0

func (*ExternalAddress) ElementType() reflect.Type

func (*ExternalAddress) ToExternalAddressOutput added in v7.4.0

func (i *ExternalAddress) ToExternalAddressOutput() ExternalAddressOutput

func (*ExternalAddress) ToExternalAddressOutputWithContext added in v7.4.0

func (i *ExternalAddress) ToExternalAddressOutputWithContext(ctx context.Context) ExternalAddressOutput

type ExternalAddressArgs added in v7.4.0

type ExternalAddressArgs struct {
	// User-provided description for this resource.
	Description pulumi.StringPtrInput
	// The internal IP address of a workload VM.
	InternalIp pulumi.StringInput
	// The ID of the external IP Address.
	//
	// ***
	Name pulumi.StringPtrInput
	// 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
	Parent pulumi.StringInput
}

The set of arguments for constructing a ExternalAddress resource.

func (ExternalAddressArgs) ElementType added in v7.4.0

func (ExternalAddressArgs) ElementType() reflect.Type

type ExternalAddressArray added in v7.4.0

type ExternalAddressArray []ExternalAddressInput

func (ExternalAddressArray) ElementType added in v7.4.0

func (ExternalAddressArray) ElementType() reflect.Type

func (ExternalAddressArray) ToExternalAddressArrayOutput added in v7.4.0

func (i ExternalAddressArray) ToExternalAddressArrayOutput() ExternalAddressArrayOutput

func (ExternalAddressArray) ToExternalAddressArrayOutputWithContext added in v7.4.0

func (i ExternalAddressArray) ToExternalAddressArrayOutputWithContext(ctx context.Context) ExternalAddressArrayOutput

type ExternalAddressArrayInput added in v7.4.0

type ExternalAddressArrayInput interface {
	pulumi.Input

	ToExternalAddressArrayOutput() ExternalAddressArrayOutput
	ToExternalAddressArrayOutputWithContext(context.Context) ExternalAddressArrayOutput
}

ExternalAddressArrayInput is an input type that accepts ExternalAddressArray and ExternalAddressArrayOutput values. You can construct a concrete instance of `ExternalAddressArrayInput` via:

ExternalAddressArray{ ExternalAddressArgs{...} }

type ExternalAddressArrayOutput added in v7.4.0

type ExternalAddressArrayOutput struct{ *pulumi.OutputState }

func (ExternalAddressArrayOutput) ElementType added in v7.4.0

func (ExternalAddressArrayOutput) ElementType() reflect.Type

func (ExternalAddressArrayOutput) Index added in v7.4.0

func (ExternalAddressArrayOutput) ToExternalAddressArrayOutput added in v7.4.0

func (o ExternalAddressArrayOutput) ToExternalAddressArrayOutput() ExternalAddressArrayOutput

func (ExternalAddressArrayOutput) ToExternalAddressArrayOutputWithContext added in v7.4.0

func (o ExternalAddressArrayOutput) ToExternalAddressArrayOutputWithContext(ctx context.Context) ExternalAddressArrayOutput

type ExternalAddressInput added in v7.4.0

type ExternalAddressInput interface {
	pulumi.Input

	ToExternalAddressOutput() ExternalAddressOutput
	ToExternalAddressOutputWithContext(ctx context.Context) ExternalAddressOutput
}

type ExternalAddressMap added in v7.4.0

type ExternalAddressMap map[string]ExternalAddressInput

func (ExternalAddressMap) ElementType added in v7.4.0

func (ExternalAddressMap) ElementType() reflect.Type

func (ExternalAddressMap) ToExternalAddressMapOutput added in v7.4.0

func (i ExternalAddressMap) ToExternalAddressMapOutput() ExternalAddressMapOutput

func (ExternalAddressMap) ToExternalAddressMapOutputWithContext added in v7.4.0

func (i ExternalAddressMap) ToExternalAddressMapOutputWithContext(ctx context.Context) ExternalAddressMapOutput

type ExternalAddressMapInput added in v7.4.0

type ExternalAddressMapInput interface {
	pulumi.Input

	ToExternalAddressMapOutput() ExternalAddressMapOutput
	ToExternalAddressMapOutputWithContext(context.Context) ExternalAddressMapOutput
}

ExternalAddressMapInput is an input type that accepts ExternalAddressMap and ExternalAddressMapOutput values. You can construct a concrete instance of `ExternalAddressMapInput` via:

ExternalAddressMap{ "key": ExternalAddressArgs{...} }

type ExternalAddressMapOutput added in v7.4.0

type ExternalAddressMapOutput struct{ *pulumi.OutputState }

func (ExternalAddressMapOutput) ElementType added in v7.4.0

func (ExternalAddressMapOutput) ElementType() reflect.Type

func (ExternalAddressMapOutput) MapIndex added in v7.4.0

func (ExternalAddressMapOutput) ToExternalAddressMapOutput added in v7.4.0

func (o ExternalAddressMapOutput) ToExternalAddressMapOutput() ExternalAddressMapOutput

func (ExternalAddressMapOutput) ToExternalAddressMapOutputWithContext added in v7.4.0

func (o ExternalAddressMapOutput) ToExternalAddressMapOutputWithContext(ctx context.Context) ExternalAddressMapOutput

type ExternalAddressOutput added in v7.4.0

type ExternalAddressOutput struct{ *pulumi.OutputState }

func (ExternalAddressOutput) CreateTime added in v7.4.0

func (o ExternalAddressOutput) CreateTime() pulumi.StringOutput

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".

func (ExternalAddressOutput) Description added in v7.4.0

User-provided description for this resource.

func (ExternalAddressOutput) ElementType added in v7.4.0

func (ExternalAddressOutput) ElementType() reflect.Type

func (ExternalAddressOutput) ExternalIp added in v7.4.0

func (o ExternalAddressOutput) ExternalIp() pulumi.StringOutput

The external IP address of a workload VM.

func (ExternalAddressOutput) InternalIp added in v7.4.0

func (o ExternalAddressOutput) InternalIp() pulumi.StringOutput

The internal IP address of a workload VM.

func (ExternalAddressOutput) Name added in v7.4.0

The ID of the external IP Address.

***

func (ExternalAddressOutput) Parent added in v7.4.0

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

func (ExternalAddressOutput) State added in v7.4.0

State of the resource.

func (ExternalAddressOutput) ToExternalAddressOutput added in v7.4.0

func (o ExternalAddressOutput) ToExternalAddressOutput() ExternalAddressOutput

func (ExternalAddressOutput) ToExternalAddressOutputWithContext added in v7.4.0

func (o ExternalAddressOutput) ToExternalAddressOutputWithContext(ctx context.Context) ExternalAddressOutput

func (ExternalAddressOutput) Uid added in v7.4.0

System-generated unique identifier for the resource.

func (ExternalAddressOutput) UpdateTime added in v7.4.0

func (o ExternalAddressOutput) UpdateTime() pulumi.StringOutput

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".

type ExternalAddressState added in v7.4.0

type ExternalAddressState struct {
	// 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".
	CreateTime pulumi.StringPtrInput
	// User-provided description for this resource.
	Description pulumi.StringPtrInput
	// The external IP address of a workload VM.
	ExternalIp pulumi.StringPtrInput
	// The internal IP address of a workload VM.
	InternalIp pulumi.StringPtrInput
	// The ID of the external IP Address.
	//
	// ***
	Name pulumi.StringPtrInput
	// 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
	Parent pulumi.StringPtrInput
	// State of the resource.
	State pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
	// 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".
	UpdateTime pulumi.StringPtrInput
}

func (ExternalAddressState) ElementType added in v7.4.0

func (ExternalAddressState) ElementType() reflect.Type

type GetClusterNodeTypeConfig

type GetClusterNodeTypeConfig struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of 'nodeType.availableCustomCoreCounts'.
	// If zero is provided max value from 'nodeType.availableCustomCoreCounts' will be used.
	// Once the customer is created then corecount cannot be changed.
	CustomCoreCount int `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount  int    `pulumi:"nodeCount"`
	NodeTypeId string `pulumi:"nodeTypeId"`
}

type GetClusterNodeTypeConfigArgs

type GetClusterNodeTypeConfigArgs struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of 'nodeType.availableCustomCoreCounts'.
	// If zero is provided max value from 'nodeType.availableCustomCoreCounts' will be used.
	// Once the customer is created then corecount cannot be changed.
	CustomCoreCount pulumi.IntInput `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount  pulumi.IntInput    `pulumi:"nodeCount"`
	NodeTypeId pulumi.StringInput `pulumi:"nodeTypeId"`
}

func (GetClusterNodeTypeConfigArgs) ElementType

func (GetClusterNodeTypeConfigArgs) ToGetClusterNodeTypeConfigOutput

func (i GetClusterNodeTypeConfigArgs) ToGetClusterNodeTypeConfigOutput() GetClusterNodeTypeConfigOutput

func (GetClusterNodeTypeConfigArgs) ToGetClusterNodeTypeConfigOutputWithContext

func (i GetClusterNodeTypeConfigArgs) ToGetClusterNodeTypeConfigOutputWithContext(ctx context.Context) GetClusterNodeTypeConfigOutput

type GetClusterNodeTypeConfigArray

type GetClusterNodeTypeConfigArray []GetClusterNodeTypeConfigInput

func (GetClusterNodeTypeConfigArray) ElementType

func (GetClusterNodeTypeConfigArray) ToGetClusterNodeTypeConfigArrayOutput

func (i GetClusterNodeTypeConfigArray) ToGetClusterNodeTypeConfigArrayOutput() GetClusterNodeTypeConfigArrayOutput

func (GetClusterNodeTypeConfigArray) ToGetClusterNodeTypeConfigArrayOutputWithContext

func (i GetClusterNodeTypeConfigArray) ToGetClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) GetClusterNodeTypeConfigArrayOutput

type GetClusterNodeTypeConfigArrayInput

type GetClusterNodeTypeConfigArrayInput interface {
	pulumi.Input

	ToGetClusterNodeTypeConfigArrayOutput() GetClusterNodeTypeConfigArrayOutput
	ToGetClusterNodeTypeConfigArrayOutputWithContext(context.Context) GetClusterNodeTypeConfigArrayOutput
}

GetClusterNodeTypeConfigArrayInput is an input type that accepts GetClusterNodeTypeConfigArray and GetClusterNodeTypeConfigArrayOutput values. You can construct a concrete instance of `GetClusterNodeTypeConfigArrayInput` via:

GetClusterNodeTypeConfigArray{ GetClusterNodeTypeConfigArgs{...} }

type GetClusterNodeTypeConfigArrayOutput

type GetClusterNodeTypeConfigArrayOutput struct{ *pulumi.OutputState }

func (GetClusterNodeTypeConfigArrayOutput) ElementType

func (GetClusterNodeTypeConfigArrayOutput) Index

func (GetClusterNodeTypeConfigArrayOutput) ToGetClusterNodeTypeConfigArrayOutput

func (o GetClusterNodeTypeConfigArrayOutput) ToGetClusterNodeTypeConfigArrayOutput() GetClusterNodeTypeConfigArrayOutput

func (GetClusterNodeTypeConfigArrayOutput) ToGetClusterNodeTypeConfigArrayOutputWithContext

func (o GetClusterNodeTypeConfigArrayOutput) ToGetClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) GetClusterNodeTypeConfigArrayOutput

type GetClusterNodeTypeConfigInput

type GetClusterNodeTypeConfigInput interface {
	pulumi.Input

	ToGetClusterNodeTypeConfigOutput() GetClusterNodeTypeConfigOutput
	ToGetClusterNodeTypeConfigOutputWithContext(context.Context) GetClusterNodeTypeConfigOutput
}

GetClusterNodeTypeConfigInput is an input type that accepts GetClusterNodeTypeConfigArgs and GetClusterNodeTypeConfigOutput values. You can construct a concrete instance of `GetClusterNodeTypeConfigInput` via:

GetClusterNodeTypeConfigArgs{...}

type GetClusterNodeTypeConfigOutput

type GetClusterNodeTypeConfigOutput struct{ *pulumi.OutputState }

func (GetClusterNodeTypeConfigOutput) CustomCoreCount

func (o GetClusterNodeTypeConfigOutput) CustomCoreCount() pulumi.IntOutput

Customized number of cores available to each node of the type. This number must always be one of 'nodeType.availableCustomCoreCounts'. If zero is provided max value from 'nodeType.availableCustomCoreCounts' will be used. Once the customer is created then corecount cannot be changed.

func (GetClusterNodeTypeConfigOutput) ElementType

func (GetClusterNodeTypeConfigOutput) NodeCount

The number of nodes of this type in the cluster.

func (GetClusterNodeTypeConfigOutput) NodeTypeId

func (GetClusterNodeTypeConfigOutput) ToGetClusterNodeTypeConfigOutput

func (o GetClusterNodeTypeConfigOutput) ToGetClusterNodeTypeConfigOutput() GetClusterNodeTypeConfigOutput

func (GetClusterNodeTypeConfigOutput) ToGetClusterNodeTypeConfigOutputWithContext

func (o GetClusterNodeTypeConfigOutput) ToGetClusterNodeTypeConfigOutputWithContext(ctx context.Context) GetClusterNodeTypeConfigOutput

type GetExternalAccessRuleDestinationIpRange added in v7.6.0

type GetExternalAccessRuleDestinationIpRange struct {
	// The name of an 'ExternalAddress' resource.
	ExternalAddress string `pulumi:"externalAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange string `pulumi:"ipAddressRange"`
}

type GetExternalAccessRuleDestinationIpRangeArgs added in v7.6.0

type GetExternalAccessRuleDestinationIpRangeArgs struct {
	// The name of an 'ExternalAddress' resource.
	ExternalAddress pulumi.StringInput `pulumi:"externalAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange pulumi.StringInput `pulumi:"ipAddressRange"`
}

func (GetExternalAccessRuleDestinationIpRangeArgs) ElementType added in v7.6.0

func (GetExternalAccessRuleDestinationIpRangeArgs) ToGetExternalAccessRuleDestinationIpRangeOutput added in v7.6.0

func (i GetExternalAccessRuleDestinationIpRangeArgs) ToGetExternalAccessRuleDestinationIpRangeOutput() GetExternalAccessRuleDestinationIpRangeOutput

func (GetExternalAccessRuleDestinationIpRangeArgs) ToGetExternalAccessRuleDestinationIpRangeOutputWithContext added in v7.6.0

func (i GetExternalAccessRuleDestinationIpRangeArgs) ToGetExternalAccessRuleDestinationIpRangeOutputWithContext(ctx context.Context) GetExternalAccessRuleDestinationIpRangeOutput

type GetExternalAccessRuleDestinationIpRangeArray added in v7.6.0

type GetExternalAccessRuleDestinationIpRangeArray []GetExternalAccessRuleDestinationIpRangeInput

func (GetExternalAccessRuleDestinationIpRangeArray) ElementType added in v7.6.0

func (GetExternalAccessRuleDestinationIpRangeArray) ToGetExternalAccessRuleDestinationIpRangeArrayOutput added in v7.6.0

func (i GetExternalAccessRuleDestinationIpRangeArray) ToGetExternalAccessRuleDestinationIpRangeArrayOutput() GetExternalAccessRuleDestinationIpRangeArrayOutput

func (GetExternalAccessRuleDestinationIpRangeArray) ToGetExternalAccessRuleDestinationIpRangeArrayOutputWithContext added in v7.6.0

func (i GetExternalAccessRuleDestinationIpRangeArray) ToGetExternalAccessRuleDestinationIpRangeArrayOutputWithContext(ctx context.Context) GetExternalAccessRuleDestinationIpRangeArrayOutput

type GetExternalAccessRuleDestinationIpRangeArrayInput added in v7.6.0

type GetExternalAccessRuleDestinationIpRangeArrayInput interface {
	pulumi.Input

	ToGetExternalAccessRuleDestinationIpRangeArrayOutput() GetExternalAccessRuleDestinationIpRangeArrayOutput
	ToGetExternalAccessRuleDestinationIpRangeArrayOutputWithContext(context.Context) GetExternalAccessRuleDestinationIpRangeArrayOutput
}

GetExternalAccessRuleDestinationIpRangeArrayInput is an input type that accepts GetExternalAccessRuleDestinationIpRangeArray and GetExternalAccessRuleDestinationIpRangeArrayOutput values. You can construct a concrete instance of `GetExternalAccessRuleDestinationIpRangeArrayInput` via:

GetExternalAccessRuleDestinationIpRangeArray{ GetExternalAccessRuleDestinationIpRangeArgs{...} }

type GetExternalAccessRuleDestinationIpRangeArrayOutput added in v7.6.0

type GetExternalAccessRuleDestinationIpRangeArrayOutput struct{ *pulumi.OutputState }

func (GetExternalAccessRuleDestinationIpRangeArrayOutput) ElementType added in v7.6.0

func (GetExternalAccessRuleDestinationIpRangeArrayOutput) Index added in v7.6.0

func (GetExternalAccessRuleDestinationIpRangeArrayOutput) ToGetExternalAccessRuleDestinationIpRangeArrayOutput added in v7.6.0

func (o GetExternalAccessRuleDestinationIpRangeArrayOutput) ToGetExternalAccessRuleDestinationIpRangeArrayOutput() GetExternalAccessRuleDestinationIpRangeArrayOutput

func (GetExternalAccessRuleDestinationIpRangeArrayOutput) ToGetExternalAccessRuleDestinationIpRangeArrayOutputWithContext added in v7.6.0

func (o GetExternalAccessRuleDestinationIpRangeArrayOutput) ToGetExternalAccessRuleDestinationIpRangeArrayOutputWithContext(ctx context.Context) GetExternalAccessRuleDestinationIpRangeArrayOutput

type GetExternalAccessRuleDestinationIpRangeInput added in v7.6.0

type GetExternalAccessRuleDestinationIpRangeInput interface {
	pulumi.Input

	ToGetExternalAccessRuleDestinationIpRangeOutput() GetExternalAccessRuleDestinationIpRangeOutput
	ToGetExternalAccessRuleDestinationIpRangeOutputWithContext(context.Context) GetExternalAccessRuleDestinationIpRangeOutput
}

GetExternalAccessRuleDestinationIpRangeInput is an input type that accepts GetExternalAccessRuleDestinationIpRangeArgs and GetExternalAccessRuleDestinationIpRangeOutput values. You can construct a concrete instance of `GetExternalAccessRuleDestinationIpRangeInput` via:

GetExternalAccessRuleDestinationIpRangeArgs{...}

type GetExternalAccessRuleDestinationIpRangeOutput added in v7.6.0

type GetExternalAccessRuleDestinationIpRangeOutput struct{ *pulumi.OutputState }

func (GetExternalAccessRuleDestinationIpRangeOutput) ElementType added in v7.6.0

func (GetExternalAccessRuleDestinationIpRangeOutput) ExternalAddress added in v7.6.0

The name of an 'ExternalAddress' resource.

func (GetExternalAccessRuleDestinationIpRangeOutput) IpAddressRange added in v7.6.0

An IP address range in the CIDR format.

func (GetExternalAccessRuleDestinationIpRangeOutput) ToGetExternalAccessRuleDestinationIpRangeOutput added in v7.6.0

func (o GetExternalAccessRuleDestinationIpRangeOutput) ToGetExternalAccessRuleDestinationIpRangeOutput() GetExternalAccessRuleDestinationIpRangeOutput

func (GetExternalAccessRuleDestinationIpRangeOutput) ToGetExternalAccessRuleDestinationIpRangeOutputWithContext added in v7.6.0

func (o GetExternalAccessRuleDestinationIpRangeOutput) ToGetExternalAccessRuleDestinationIpRangeOutputWithContext(ctx context.Context) GetExternalAccessRuleDestinationIpRangeOutput

type GetExternalAccessRuleSourceIpRange added in v7.6.0

type GetExternalAccessRuleSourceIpRange struct {
	// A single IP address.
	IpAddress string `pulumi:"ipAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange string `pulumi:"ipAddressRange"`
}

type GetExternalAccessRuleSourceIpRangeArgs added in v7.6.0

type GetExternalAccessRuleSourceIpRangeArgs struct {
	// A single IP address.
	IpAddress pulumi.StringInput `pulumi:"ipAddress"`
	// An IP address range in the CIDR format.
	IpAddressRange pulumi.StringInput `pulumi:"ipAddressRange"`
}

func (GetExternalAccessRuleSourceIpRangeArgs) ElementType added in v7.6.0

func (GetExternalAccessRuleSourceIpRangeArgs) ToGetExternalAccessRuleSourceIpRangeOutput added in v7.6.0

func (i GetExternalAccessRuleSourceIpRangeArgs) ToGetExternalAccessRuleSourceIpRangeOutput() GetExternalAccessRuleSourceIpRangeOutput

func (GetExternalAccessRuleSourceIpRangeArgs) ToGetExternalAccessRuleSourceIpRangeOutputWithContext added in v7.6.0

func (i GetExternalAccessRuleSourceIpRangeArgs) ToGetExternalAccessRuleSourceIpRangeOutputWithContext(ctx context.Context) GetExternalAccessRuleSourceIpRangeOutput

type GetExternalAccessRuleSourceIpRangeArray added in v7.6.0

type GetExternalAccessRuleSourceIpRangeArray []GetExternalAccessRuleSourceIpRangeInput

func (GetExternalAccessRuleSourceIpRangeArray) ElementType added in v7.6.0

func (GetExternalAccessRuleSourceIpRangeArray) ToGetExternalAccessRuleSourceIpRangeArrayOutput added in v7.6.0

func (i GetExternalAccessRuleSourceIpRangeArray) ToGetExternalAccessRuleSourceIpRangeArrayOutput() GetExternalAccessRuleSourceIpRangeArrayOutput

func (GetExternalAccessRuleSourceIpRangeArray) ToGetExternalAccessRuleSourceIpRangeArrayOutputWithContext added in v7.6.0

func (i GetExternalAccessRuleSourceIpRangeArray) ToGetExternalAccessRuleSourceIpRangeArrayOutputWithContext(ctx context.Context) GetExternalAccessRuleSourceIpRangeArrayOutput

type GetExternalAccessRuleSourceIpRangeArrayInput added in v7.6.0

type GetExternalAccessRuleSourceIpRangeArrayInput interface {
	pulumi.Input

	ToGetExternalAccessRuleSourceIpRangeArrayOutput() GetExternalAccessRuleSourceIpRangeArrayOutput
	ToGetExternalAccessRuleSourceIpRangeArrayOutputWithContext(context.Context) GetExternalAccessRuleSourceIpRangeArrayOutput
}

GetExternalAccessRuleSourceIpRangeArrayInput is an input type that accepts GetExternalAccessRuleSourceIpRangeArray and GetExternalAccessRuleSourceIpRangeArrayOutput values. You can construct a concrete instance of `GetExternalAccessRuleSourceIpRangeArrayInput` via:

GetExternalAccessRuleSourceIpRangeArray{ GetExternalAccessRuleSourceIpRangeArgs{...} }

type GetExternalAccessRuleSourceIpRangeArrayOutput added in v7.6.0

type GetExternalAccessRuleSourceIpRangeArrayOutput struct{ *pulumi.OutputState }

func (GetExternalAccessRuleSourceIpRangeArrayOutput) ElementType added in v7.6.0

func (GetExternalAccessRuleSourceIpRangeArrayOutput) Index added in v7.6.0

func (GetExternalAccessRuleSourceIpRangeArrayOutput) ToGetExternalAccessRuleSourceIpRangeArrayOutput added in v7.6.0

func (o GetExternalAccessRuleSourceIpRangeArrayOutput) ToGetExternalAccessRuleSourceIpRangeArrayOutput() GetExternalAccessRuleSourceIpRangeArrayOutput

func (GetExternalAccessRuleSourceIpRangeArrayOutput) ToGetExternalAccessRuleSourceIpRangeArrayOutputWithContext added in v7.6.0

func (o GetExternalAccessRuleSourceIpRangeArrayOutput) ToGetExternalAccessRuleSourceIpRangeArrayOutputWithContext(ctx context.Context) GetExternalAccessRuleSourceIpRangeArrayOutput

type GetExternalAccessRuleSourceIpRangeInput added in v7.6.0

type GetExternalAccessRuleSourceIpRangeInput interface {
	pulumi.Input

	ToGetExternalAccessRuleSourceIpRangeOutput() GetExternalAccessRuleSourceIpRangeOutput
	ToGetExternalAccessRuleSourceIpRangeOutputWithContext(context.Context) GetExternalAccessRuleSourceIpRangeOutput
}

GetExternalAccessRuleSourceIpRangeInput is an input type that accepts GetExternalAccessRuleSourceIpRangeArgs and GetExternalAccessRuleSourceIpRangeOutput values. You can construct a concrete instance of `GetExternalAccessRuleSourceIpRangeInput` via:

GetExternalAccessRuleSourceIpRangeArgs{...}

type GetExternalAccessRuleSourceIpRangeOutput added in v7.6.0

type GetExternalAccessRuleSourceIpRangeOutput struct{ *pulumi.OutputState }

func (GetExternalAccessRuleSourceIpRangeOutput) ElementType added in v7.6.0

func (GetExternalAccessRuleSourceIpRangeOutput) IpAddress added in v7.6.0

A single IP address.

func (GetExternalAccessRuleSourceIpRangeOutput) IpAddressRange added in v7.6.0

An IP address range in the CIDR format.

func (GetExternalAccessRuleSourceIpRangeOutput) ToGetExternalAccessRuleSourceIpRangeOutput added in v7.6.0

func (o GetExternalAccessRuleSourceIpRangeOutput) ToGetExternalAccessRuleSourceIpRangeOutput() GetExternalAccessRuleSourceIpRangeOutput

func (GetExternalAccessRuleSourceIpRangeOutput) ToGetExternalAccessRuleSourceIpRangeOutputWithContext added in v7.6.0

func (o GetExternalAccessRuleSourceIpRangeOutput) ToGetExternalAccessRuleSourceIpRangeOutputWithContext(ctx context.Context) GetExternalAccessRuleSourceIpRangeOutput

type GetNetworkPolicyExternalIp added in v7.3.0

type GetNetworkPolicyExternalIp struct {
	// True if the service is enabled; false otherwise.
	Enabled bool `pulumi:"enabled"`
	// State of the service. New values may be added to this enum when appropriate.
	State string `pulumi:"state"`
}

type GetNetworkPolicyExternalIpArgs added in v7.3.0

type GetNetworkPolicyExternalIpArgs struct {
	// True if the service is enabled; false otherwise.
	Enabled pulumi.BoolInput `pulumi:"enabled"`
	// State of the service. New values may be added to this enum when appropriate.
	State pulumi.StringInput `pulumi:"state"`
}

func (GetNetworkPolicyExternalIpArgs) ElementType added in v7.3.0

func (GetNetworkPolicyExternalIpArgs) ToGetNetworkPolicyExternalIpOutput added in v7.3.0

func (i GetNetworkPolicyExternalIpArgs) ToGetNetworkPolicyExternalIpOutput() GetNetworkPolicyExternalIpOutput

func (GetNetworkPolicyExternalIpArgs) ToGetNetworkPolicyExternalIpOutputWithContext added in v7.3.0

func (i GetNetworkPolicyExternalIpArgs) ToGetNetworkPolicyExternalIpOutputWithContext(ctx context.Context) GetNetworkPolicyExternalIpOutput

type GetNetworkPolicyExternalIpArray added in v7.3.0

type GetNetworkPolicyExternalIpArray []GetNetworkPolicyExternalIpInput

func (GetNetworkPolicyExternalIpArray) ElementType added in v7.3.0

func (GetNetworkPolicyExternalIpArray) ToGetNetworkPolicyExternalIpArrayOutput added in v7.3.0

func (i GetNetworkPolicyExternalIpArray) ToGetNetworkPolicyExternalIpArrayOutput() GetNetworkPolicyExternalIpArrayOutput

func (GetNetworkPolicyExternalIpArray) ToGetNetworkPolicyExternalIpArrayOutputWithContext added in v7.3.0

func (i GetNetworkPolicyExternalIpArray) ToGetNetworkPolicyExternalIpArrayOutputWithContext(ctx context.Context) GetNetworkPolicyExternalIpArrayOutput

type GetNetworkPolicyExternalIpArrayInput added in v7.3.0

type GetNetworkPolicyExternalIpArrayInput interface {
	pulumi.Input

	ToGetNetworkPolicyExternalIpArrayOutput() GetNetworkPolicyExternalIpArrayOutput
	ToGetNetworkPolicyExternalIpArrayOutputWithContext(context.Context) GetNetworkPolicyExternalIpArrayOutput
}

GetNetworkPolicyExternalIpArrayInput is an input type that accepts GetNetworkPolicyExternalIpArray and GetNetworkPolicyExternalIpArrayOutput values. You can construct a concrete instance of `GetNetworkPolicyExternalIpArrayInput` via:

GetNetworkPolicyExternalIpArray{ GetNetworkPolicyExternalIpArgs{...} }

type GetNetworkPolicyExternalIpArrayOutput added in v7.3.0

type GetNetworkPolicyExternalIpArrayOutput struct{ *pulumi.OutputState }

func (GetNetworkPolicyExternalIpArrayOutput) ElementType added in v7.3.0

func (GetNetworkPolicyExternalIpArrayOutput) Index added in v7.3.0

func (GetNetworkPolicyExternalIpArrayOutput) ToGetNetworkPolicyExternalIpArrayOutput added in v7.3.0

func (o GetNetworkPolicyExternalIpArrayOutput) ToGetNetworkPolicyExternalIpArrayOutput() GetNetworkPolicyExternalIpArrayOutput

func (GetNetworkPolicyExternalIpArrayOutput) ToGetNetworkPolicyExternalIpArrayOutputWithContext added in v7.3.0

func (o GetNetworkPolicyExternalIpArrayOutput) ToGetNetworkPolicyExternalIpArrayOutputWithContext(ctx context.Context) GetNetworkPolicyExternalIpArrayOutput

type GetNetworkPolicyExternalIpInput added in v7.3.0

type GetNetworkPolicyExternalIpInput interface {
	pulumi.Input

	ToGetNetworkPolicyExternalIpOutput() GetNetworkPolicyExternalIpOutput
	ToGetNetworkPolicyExternalIpOutputWithContext(context.Context) GetNetworkPolicyExternalIpOutput
}

GetNetworkPolicyExternalIpInput is an input type that accepts GetNetworkPolicyExternalIpArgs and GetNetworkPolicyExternalIpOutput values. You can construct a concrete instance of `GetNetworkPolicyExternalIpInput` via:

GetNetworkPolicyExternalIpArgs{...}

type GetNetworkPolicyExternalIpOutput added in v7.3.0

type GetNetworkPolicyExternalIpOutput struct{ *pulumi.OutputState }

func (GetNetworkPolicyExternalIpOutput) ElementType added in v7.3.0

func (GetNetworkPolicyExternalIpOutput) Enabled added in v7.3.0

True if the service is enabled; false otherwise.

func (GetNetworkPolicyExternalIpOutput) State added in v7.3.0

State of the service. New values may be added to this enum when appropriate.

func (GetNetworkPolicyExternalIpOutput) ToGetNetworkPolicyExternalIpOutput added in v7.3.0

func (o GetNetworkPolicyExternalIpOutput) ToGetNetworkPolicyExternalIpOutput() GetNetworkPolicyExternalIpOutput

func (GetNetworkPolicyExternalIpOutput) ToGetNetworkPolicyExternalIpOutputWithContext added in v7.3.0

func (o GetNetworkPolicyExternalIpOutput) ToGetNetworkPolicyExternalIpOutputWithContext(ctx context.Context) GetNetworkPolicyExternalIpOutput

type GetNetworkPolicyInternetAccess added in v7.3.0

type GetNetworkPolicyInternetAccess struct {
	// True if the service is enabled; false otherwise.
	Enabled bool `pulumi:"enabled"`
	// State of the service. New values may be added to this enum when appropriate.
	State string `pulumi:"state"`
}

type GetNetworkPolicyInternetAccessArgs added in v7.3.0

type GetNetworkPolicyInternetAccessArgs struct {
	// True if the service is enabled; false otherwise.
	Enabled pulumi.BoolInput `pulumi:"enabled"`
	// State of the service. New values may be added to this enum when appropriate.
	State pulumi.StringInput `pulumi:"state"`
}

func (GetNetworkPolicyInternetAccessArgs) ElementType added in v7.3.0

func (GetNetworkPolicyInternetAccessArgs) ToGetNetworkPolicyInternetAccessOutput added in v7.3.0

func (i GetNetworkPolicyInternetAccessArgs) ToGetNetworkPolicyInternetAccessOutput() GetNetworkPolicyInternetAccessOutput

func (GetNetworkPolicyInternetAccessArgs) ToGetNetworkPolicyInternetAccessOutputWithContext added in v7.3.0

func (i GetNetworkPolicyInternetAccessArgs) ToGetNetworkPolicyInternetAccessOutputWithContext(ctx context.Context) GetNetworkPolicyInternetAccessOutput

type GetNetworkPolicyInternetAccessArray added in v7.3.0

type GetNetworkPolicyInternetAccessArray []GetNetworkPolicyInternetAccessInput

func (GetNetworkPolicyInternetAccessArray) ElementType added in v7.3.0

func (GetNetworkPolicyInternetAccessArray) ToGetNetworkPolicyInternetAccessArrayOutput added in v7.3.0

func (i GetNetworkPolicyInternetAccessArray) ToGetNetworkPolicyInternetAccessArrayOutput() GetNetworkPolicyInternetAccessArrayOutput

func (GetNetworkPolicyInternetAccessArray) ToGetNetworkPolicyInternetAccessArrayOutputWithContext added in v7.3.0

func (i GetNetworkPolicyInternetAccessArray) ToGetNetworkPolicyInternetAccessArrayOutputWithContext(ctx context.Context) GetNetworkPolicyInternetAccessArrayOutput

type GetNetworkPolicyInternetAccessArrayInput added in v7.3.0

type GetNetworkPolicyInternetAccessArrayInput interface {
	pulumi.Input

	ToGetNetworkPolicyInternetAccessArrayOutput() GetNetworkPolicyInternetAccessArrayOutput
	ToGetNetworkPolicyInternetAccessArrayOutputWithContext(context.Context) GetNetworkPolicyInternetAccessArrayOutput
}

GetNetworkPolicyInternetAccessArrayInput is an input type that accepts GetNetworkPolicyInternetAccessArray and GetNetworkPolicyInternetAccessArrayOutput values. You can construct a concrete instance of `GetNetworkPolicyInternetAccessArrayInput` via:

GetNetworkPolicyInternetAccessArray{ GetNetworkPolicyInternetAccessArgs{...} }

type GetNetworkPolicyInternetAccessArrayOutput added in v7.3.0

type GetNetworkPolicyInternetAccessArrayOutput struct{ *pulumi.OutputState }

func (GetNetworkPolicyInternetAccessArrayOutput) ElementType added in v7.3.0

func (GetNetworkPolicyInternetAccessArrayOutput) Index added in v7.3.0

func (GetNetworkPolicyInternetAccessArrayOutput) ToGetNetworkPolicyInternetAccessArrayOutput added in v7.3.0

func (o GetNetworkPolicyInternetAccessArrayOutput) ToGetNetworkPolicyInternetAccessArrayOutput() GetNetworkPolicyInternetAccessArrayOutput

func (GetNetworkPolicyInternetAccessArrayOutput) ToGetNetworkPolicyInternetAccessArrayOutputWithContext added in v7.3.0

func (o GetNetworkPolicyInternetAccessArrayOutput) ToGetNetworkPolicyInternetAccessArrayOutputWithContext(ctx context.Context) GetNetworkPolicyInternetAccessArrayOutput

type GetNetworkPolicyInternetAccessInput added in v7.3.0

type GetNetworkPolicyInternetAccessInput interface {
	pulumi.Input

	ToGetNetworkPolicyInternetAccessOutput() GetNetworkPolicyInternetAccessOutput
	ToGetNetworkPolicyInternetAccessOutputWithContext(context.Context) GetNetworkPolicyInternetAccessOutput
}

GetNetworkPolicyInternetAccessInput is an input type that accepts GetNetworkPolicyInternetAccessArgs and GetNetworkPolicyInternetAccessOutput values. You can construct a concrete instance of `GetNetworkPolicyInternetAccessInput` via:

GetNetworkPolicyInternetAccessArgs{...}

type GetNetworkPolicyInternetAccessOutput added in v7.3.0

type GetNetworkPolicyInternetAccessOutput struct{ *pulumi.OutputState }

func (GetNetworkPolicyInternetAccessOutput) ElementType added in v7.3.0

func (GetNetworkPolicyInternetAccessOutput) Enabled added in v7.3.0

True if the service is enabled; false otherwise.

func (GetNetworkPolicyInternetAccessOutput) State added in v7.3.0

State of the service. New values may be added to this enum when appropriate.

func (GetNetworkPolicyInternetAccessOutput) ToGetNetworkPolicyInternetAccessOutput added in v7.3.0

func (o GetNetworkPolicyInternetAccessOutput) ToGetNetworkPolicyInternetAccessOutput() GetNetworkPolicyInternetAccessOutput

func (GetNetworkPolicyInternetAccessOutput) ToGetNetworkPolicyInternetAccessOutputWithContext added in v7.3.0

func (o GetNetworkPolicyInternetAccessOutput) ToGetNetworkPolicyInternetAccessOutputWithContext(ctx context.Context) GetNetworkPolicyInternetAccessOutput

type GetNetworkVpcNetwork

type GetNetworkVpcNetwork struct {
	// The relative resource name of the service VPC network this VMware Engine network is attached to.
	// For example: projects/123123/global/networks/my-network
	Network string `pulumi:"network"`
	// Type of VPC network (INTRANET, INTERNET, or GOOGLE_CLOUD)
	Type string `pulumi:"type"`
}

type GetNetworkVpcNetworkArgs

type GetNetworkVpcNetworkArgs struct {
	// The relative resource name of the service VPC network this VMware Engine network is attached to.
	// For example: projects/123123/global/networks/my-network
	Network pulumi.StringInput `pulumi:"network"`
	// Type of VPC network (INTRANET, INTERNET, or GOOGLE_CLOUD)
	Type pulumi.StringInput `pulumi:"type"`
}

func (GetNetworkVpcNetworkArgs) ElementType

func (GetNetworkVpcNetworkArgs) ElementType() reflect.Type

func (GetNetworkVpcNetworkArgs) ToGetNetworkVpcNetworkOutput

func (i GetNetworkVpcNetworkArgs) ToGetNetworkVpcNetworkOutput() GetNetworkVpcNetworkOutput

func (GetNetworkVpcNetworkArgs) ToGetNetworkVpcNetworkOutputWithContext

func (i GetNetworkVpcNetworkArgs) ToGetNetworkVpcNetworkOutputWithContext(ctx context.Context) GetNetworkVpcNetworkOutput

type GetNetworkVpcNetworkArray

type GetNetworkVpcNetworkArray []GetNetworkVpcNetworkInput

func (GetNetworkVpcNetworkArray) ElementType

func (GetNetworkVpcNetworkArray) ElementType() reflect.Type

func (GetNetworkVpcNetworkArray) ToGetNetworkVpcNetworkArrayOutput

func (i GetNetworkVpcNetworkArray) ToGetNetworkVpcNetworkArrayOutput() GetNetworkVpcNetworkArrayOutput

func (GetNetworkVpcNetworkArray) ToGetNetworkVpcNetworkArrayOutputWithContext

func (i GetNetworkVpcNetworkArray) ToGetNetworkVpcNetworkArrayOutputWithContext(ctx context.Context) GetNetworkVpcNetworkArrayOutput

type GetNetworkVpcNetworkArrayInput

type GetNetworkVpcNetworkArrayInput interface {
	pulumi.Input

	ToGetNetworkVpcNetworkArrayOutput() GetNetworkVpcNetworkArrayOutput
	ToGetNetworkVpcNetworkArrayOutputWithContext(context.Context) GetNetworkVpcNetworkArrayOutput
}

GetNetworkVpcNetworkArrayInput is an input type that accepts GetNetworkVpcNetworkArray and GetNetworkVpcNetworkArrayOutput values. You can construct a concrete instance of `GetNetworkVpcNetworkArrayInput` via:

GetNetworkVpcNetworkArray{ GetNetworkVpcNetworkArgs{...} }

type GetNetworkVpcNetworkArrayOutput

type GetNetworkVpcNetworkArrayOutput struct{ *pulumi.OutputState }

func (GetNetworkVpcNetworkArrayOutput) ElementType

func (GetNetworkVpcNetworkArrayOutput) Index

func (GetNetworkVpcNetworkArrayOutput) ToGetNetworkVpcNetworkArrayOutput

func (o GetNetworkVpcNetworkArrayOutput) ToGetNetworkVpcNetworkArrayOutput() GetNetworkVpcNetworkArrayOutput

func (GetNetworkVpcNetworkArrayOutput) ToGetNetworkVpcNetworkArrayOutputWithContext

func (o GetNetworkVpcNetworkArrayOutput) ToGetNetworkVpcNetworkArrayOutputWithContext(ctx context.Context) GetNetworkVpcNetworkArrayOutput

type GetNetworkVpcNetworkInput

type GetNetworkVpcNetworkInput interface {
	pulumi.Input

	ToGetNetworkVpcNetworkOutput() GetNetworkVpcNetworkOutput
	ToGetNetworkVpcNetworkOutputWithContext(context.Context) GetNetworkVpcNetworkOutput
}

GetNetworkVpcNetworkInput is an input type that accepts GetNetworkVpcNetworkArgs and GetNetworkVpcNetworkOutput values. You can construct a concrete instance of `GetNetworkVpcNetworkInput` via:

GetNetworkVpcNetworkArgs{...}

type GetNetworkVpcNetworkOutput

type GetNetworkVpcNetworkOutput struct{ *pulumi.OutputState }

func (GetNetworkVpcNetworkOutput) ElementType

func (GetNetworkVpcNetworkOutput) ElementType() reflect.Type

func (GetNetworkVpcNetworkOutput) Network

The relative resource name of the service VPC network this VMware Engine network is attached to. For example: projects/123123/global/networks/my-network

func (GetNetworkVpcNetworkOutput) ToGetNetworkVpcNetworkOutput

func (o GetNetworkVpcNetworkOutput) ToGetNetworkVpcNetworkOutput() GetNetworkVpcNetworkOutput

func (GetNetworkVpcNetworkOutput) ToGetNetworkVpcNetworkOutputWithContext

func (o GetNetworkVpcNetworkOutput) ToGetNetworkVpcNetworkOutputWithContext(ctx context.Context) GetNetworkVpcNetworkOutput

func (GetNetworkVpcNetworkOutput) Type

Type of VPC network (INTRANET, INTERNET, or GOOGLE_CLOUD)

type GetNsxCredentialsArgs added in v7.3.0

type GetNsxCredentialsArgs struct {
	// The resource name of the private cloud which contains the NSX.
	Parent string `pulumi:"parent"`
}

A collection of arguments for invoking getNsxCredentials.

type GetNsxCredentialsOutputArgs added in v7.3.0

type GetNsxCredentialsOutputArgs struct {
	// The resource name of the private cloud which contains the NSX.
	Parent pulumi.StringInput `pulumi:"parent"`
}

A collection of arguments for invoking getNsxCredentials.

func (GetNsxCredentialsOutputArgs) ElementType added in v7.3.0

type GetNsxCredentialsResult added in v7.3.0

type GetNsxCredentialsResult struct {
	// The provider-assigned unique ID for this managed resource.
	Id     string `pulumi:"id"`
	Parent string `pulumi:"parent"`
	// The password of the NSX Credential.
	Password string `pulumi:"password"`
	// The username of the NSX Credential.
	Username string `pulumi:"username"`
}

A collection of values returned by getNsxCredentials.

func GetNsxCredentials added in v7.3.0

func GetNsxCredentials(ctx *pulumi.Context, args *GetNsxCredentialsArgs, opts ...pulumi.InvokeOption) (*GetNsxCredentialsResult, error)

Use this data source to get NSX credentials for a Private Cloud.

To get more information about private cloud NSX credentials, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds/showNsxCredentials)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.GetNsxCredentials(ctx, &vmwareengine.GetNsxCredentialsArgs{
			Parent: "projects/my-project/locations/us-west1-a/privateClouds/my-cloud",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type GetNsxCredentialsResultOutput added in v7.3.0

type GetNsxCredentialsResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getNsxCredentials.

func GetNsxCredentialsOutput added in v7.3.0

func (GetNsxCredentialsResultOutput) ElementType added in v7.3.0

func (GetNsxCredentialsResultOutput) Id added in v7.3.0

The provider-assigned unique ID for this managed resource.

func (GetNsxCredentialsResultOutput) Parent added in v7.3.0

func (GetNsxCredentialsResultOutput) Password added in v7.3.0

The password of the NSX Credential.

func (GetNsxCredentialsResultOutput) ToGetNsxCredentialsResultOutput added in v7.3.0

func (o GetNsxCredentialsResultOutput) ToGetNsxCredentialsResultOutput() GetNsxCredentialsResultOutput

func (GetNsxCredentialsResultOutput) ToGetNsxCredentialsResultOutputWithContext added in v7.3.0

func (o GetNsxCredentialsResultOutput) ToGetNsxCredentialsResultOutputWithContext(ctx context.Context) GetNsxCredentialsResultOutput

func (GetNsxCredentialsResultOutput) Username added in v7.3.0

The username of the NSX Credential.

type GetPrivateCloudHcx

type GetPrivateCloudHcx struct {
	// Fully qualified domain name of the appliance.
	Fqdn string `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp string `pulumi:"internalIp"`
	// State of the appliance. Possible values: ["ACTIVE", "CREATING"]
	State string `pulumi:"state"`
	// Version of the appliance.
	Version string `pulumi:"version"`
}

type GetPrivateCloudHcxArgs

type GetPrivateCloudHcxArgs struct {
	// Fully qualified domain name of the appliance.
	Fqdn pulumi.StringInput `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp pulumi.StringInput `pulumi:"internalIp"`
	// State of the appliance. Possible values: ["ACTIVE", "CREATING"]
	State pulumi.StringInput `pulumi:"state"`
	// Version of the appliance.
	Version pulumi.StringInput `pulumi:"version"`
}

func (GetPrivateCloudHcxArgs) ElementType

func (GetPrivateCloudHcxArgs) ElementType() reflect.Type

func (GetPrivateCloudHcxArgs) ToGetPrivateCloudHcxOutput

func (i GetPrivateCloudHcxArgs) ToGetPrivateCloudHcxOutput() GetPrivateCloudHcxOutput

func (GetPrivateCloudHcxArgs) ToGetPrivateCloudHcxOutputWithContext

func (i GetPrivateCloudHcxArgs) ToGetPrivateCloudHcxOutputWithContext(ctx context.Context) GetPrivateCloudHcxOutput

type GetPrivateCloudHcxArray

type GetPrivateCloudHcxArray []GetPrivateCloudHcxInput

func (GetPrivateCloudHcxArray) ElementType

func (GetPrivateCloudHcxArray) ElementType() reflect.Type

func (GetPrivateCloudHcxArray) ToGetPrivateCloudHcxArrayOutput

func (i GetPrivateCloudHcxArray) ToGetPrivateCloudHcxArrayOutput() GetPrivateCloudHcxArrayOutput

func (GetPrivateCloudHcxArray) ToGetPrivateCloudHcxArrayOutputWithContext

func (i GetPrivateCloudHcxArray) ToGetPrivateCloudHcxArrayOutputWithContext(ctx context.Context) GetPrivateCloudHcxArrayOutput

type GetPrivateCloudHcxArrayInput

type GetPrivateCloudHcxArrayInput interface {
	pulumi.Input

	ToGetPrivateCloudHcxArrayOutput() GetPrivateCloudHcxArrayOutput
	ToGetPrivateCloudHcxArrayOutputWithContext(context.Context) GetPrivateCloudHcxArrayOutput
}

GetPrivateCloudHcxArrayInput is an input type that accepts GetPrivateCloudHcxArray and GetPrivateCloudHcxArrayOutput values. You can construct a concrete instance of `GetPrivateCloudHcxArrayInput` via:

GetPrivateCloudHcxArray{ GetPrivateCloudHcxArgs{...} }

type GetPrivateCloudHcxArrayOutput

type GetPrivateCloudHcxArrayOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudHcxArrayOutput) ElementType

func (GetPrivateCloudHcxArrayOutput) Index

func (GetPrivateCloudHcxArrayOutput) ToGetPrivateCloudHcxArrayOutput

func (o GetPrivateCloudHcxArrayOutput) ToGetPrivateCloudHcxArrayOutput() GetPrivateCloudHcxArrayOutput

func (GetPrivateCloudHcxArrayOutput) ToGetPrivateCloudHcxArrayOutputWithContext

func (o GetPrivateCloudHcxArrayOutput) ToGetPrivateCloudHcxArrayOutputWithContext(ctx context.Context) GetPrivateCloudHcxArrayOutput

type GetPrivateCloudHcxInput

type GetPrivateCloudHcxInput interface {
	pulumi.Input

	ToGetPrivateCloudHcxOutput() GetPrivateCloudHcxOutput
	ToGetPrivateCloudHcxOutputWithContext(context.Context) GetPrivateCloudHcxOutput
}

GetPrivateCloudHcxInput is an input type that accepts GetPrivateCloudHcxArgs and GetPrivateCloudHcxOutput values. You can construct a concrete instance of `GetPrivateCloudHcxInput` via:

GetPrivateCloudHcxArgs{...}

type GetPrivateCloudHcxOutput

type GetPrivateCloudHcxOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudHcxOutput) ElementType

func (GetPrivateCloudHcxOutput) ElementType() reflect.Type

func (GetPrivateCloudHcxOutput) Fqdn

Fully qualified domain name of the appliance.

func (GetPrivateCloudHcxOutput) InternalIp

Internal IP address of the appliance.

func (GetPrivateCloudHcxOutput) State

State of the appliance. Possible values: ["ACTIVE", "CREATING"]

func (GetPrivateCloudHcxOutput) ToGetPrivateCloudHcxOutput

func (o GetPrivateCloudHcxOutput) ToGetPrivateCloudHcxOutput() GetPrivateCloudHcxOutput

func (GetPrivateCloudHcxOutput) ToGetPrivateCloudHcxOutputWithContext

func (o GetPrivateCloudHcxOutput) ToGetPrivateCloudHcxOutputWithContext(ctx context.Context) GetPrivateCloudHcxOutput

func (GetPrivateCloudHcxOutput) Version

Version of the appliance.

type GetPrivateCloudManagementCluster

type GetPrivateCloudManagementCluster struct {
	// The user-provided identifier of the new Cluster. The identifier must meet the following requirements:
	//   * Only contains 1-63 alphanumeric characters and hyphens
	//   * Begins with an alphabetical character
	//   * Ends with a non-hyphen character
	//   * Not formatted as a UUID
	//   * Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
	ClusterId string `pulumi:"clusterId"`
	// The map of cluster node types in this cluster,
	// where the key is canonical identifier of the node type (corresponds to the NodeType).
	NodeTypeConfigs []GetPrivateCloudManagementClusterNodeTypeConfig `pulumi:"nodeTypeConfigs"`
	// The stretched cluster configuration for the private cloud.
	StretchedClusterConfigs []GetPrivateCloudManagementClusterStretchedClusterConfig `pulumi:"stretchedClusterConfigs"`
}

type GetPrivateCloudManagementClusterArgs

type GetPrivateCloudManagementClusterArgs struct {
	// The user-provided identifier of the new Cluster. The identifier must meet the following requirements:
	//   * Only contains 1-63 alphanumeric characters and hyphens
	//   * Begins with an alphabetical character
	//   * Ends with a non-hyphen character
	//   * Not formatted as a UUID
	//   * Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
	ClusterId pulumi.StringInput `pulumi:"clusterId"`
	// The map of cluster node types in this cluster,
	// where the key is canonical identifier of the node type (corresponds to the NodeType).
	NodeTypeConfigs GetPrivateCloudManagementClusterNodeTypeConfigArrayInput `pulumi:"nodeTypeConfigs"`
	// The stretched cluster configuration for the private cloud.
	StretchedClusterConfigs GetPrivateCloudManagementClusterStretchedClusterConfigArrayInput `pulumi:"stretchedClusterConfigs"`
}

func (GetPrivateCloudManagementClusterArgs) ElementType

func (GetPrivateCloudManagementClusterArgs) ToGetPrivateCloudManagementClusterOutput

func (i GetPrivateCloudManagementClusterArgs) ToGetPrivateCloudManagementClusterOutput() GetPrivateCloudManagementClusterOutput

func (GetPrivateCloudManagementClusterArgs) ToGetPrivateCloudManagementClusterOutputWithContext

func (i GetPrivateCloudManagementClusterArgs) ToGetPrivateCloudManagementClusterOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterOutput

type GetPrivateCloudManagementClusterArray

type GetPrivateCloudManagementClusterArray []GetPrivateCloudManagementClusterInput

func (GetPrivateCloudManagementClusterArray) ElementType

func (GetPrivateCloudManagementClusterArray) ToGetPrivateCloudManagementClusterArrayOutput

func (i GetPrivateCloudManagementClusterArray) ToGetPrivateCloudManagementClusterArrayOutput() GetPrivateCloudManagementClusterArrayOutput

func (GetPrivateCloudManagementClusterArray) ToGetPrivateCloudManagementClusterArrayOutputWithContext

func (i GetPrivateCloudManagementClusterArray) ToGetPrivateCloudManagementClusterArrayOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterArrayOutput

type GetPrivateCloudManagementClusterArrayInput

type GetPrivateCloudManagementClusterArrayInput interface {
	pulumi.Input

	ToGetPrivateCloudManagementClusterArrayOutput() GetPrivateCloudManagementClusterArrayOutput
	ToGetPrivateCloudManagementClusterArrayOutputWithContext(context.Context) GetPrivateCloudManagementClusterArrayOutput
}

GetPrivateCloudManagementClusterArrayInput is an input type that accepts GetPrivateCloudManagementClusterArray and GetPrivateCloudManagementClusterArrayOutput values. You can construct a concrete instance of `GetPrivateCloudManagementClusterArrayInput` via:

GetPrivateCloudManagementClusterArray{ GetPrivateCloudManagementClusterArgs{...} }

type GetPrivateCloudManagementClusterArrayOutput

type GetPrivateCloudManagementClusterArrayOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudManagementClusterArrayOutput) ElementType

func (GetPrivateCloudManagementClusterArrayOutput) Index

func (GetPrivateCloudManagementClusterArrayOutput) ToGetPrivateCloudManagementClusterArrayOutput

func (o GetPrivateCloudManagementClusterArrayOutput) ToGetPrivateCloudManagementClusterArrayOutput() GetPrivateCloudManagementClusterArrayOutput

func (GetPrivateCloudManagementClusterArrayOutput) ToGetPrivateCloudManagementClusterArrayOutputWithContext

func (o GetPrivateCloudManagementClusterArrayOutput) ToGetPrivateCloudManagementClusterArrayOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterArrayOutput

type GetPrivateCloudManagementClusterInput

type GetPrivateCloudManagementClusterInput interface {
	pulumi.Input

	ToGetPrivateCloudManagementClusterOutput() GetPrivateCloudManagementClusterOutput
	ToGetPrivateCloudManagementClusterOutputWithContext(context.Context) GetPrivateCloudManagementClusterOutput
}

GetPrivateCloudManagementClusterInput is an input type that accepts GetPrivateCloudManagementClusterArgs and GetPrivateCloudManagementClusterOutput values. You can construct a concrete instance of `GetPrivateCloudManagementClusterInput` via:

GetPrivateCloudManagementClusterArgs{...}

type GetPrivateCloudManagementClusterNodeTypeConfig

type GetPrivateCloudManagementClusterNodeTypeConfig struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of 'nodeType.availableCustomCoreCounts'.
	// If zero is provided max value from 'nodeType.availableCustomCoreCounts' will be used.
	// This cannot be changed once the PrivateCloud is created.
	CustomCoreCount int `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount  int    `pulumi:"nodeCount"`
	NodeTypeId string `pulumi:"nodeTypeId"`
}

type GetPrivateCloudManagementClusterNodeTypeConfigArgs

type GetPrivateCloudManagementClusterNodeTypeConfigArgs struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of 'nodeType.availableCustomCoreCounts'.
	// If zero is provided max value from 'nodeType.availableCustomCoreCounts' will be used.
	// This cannot be changed once the PrivateCloud is created.
	CustomCoreCount pulumi.IntInput `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount  pulumi.IntInput    `pulumi:"nodeCount"`
	NodeTypeId pulumi.StringInput `pulumi:"nodeTypeId"`
}

func (GetPrivateCloudManagementClusterNodeTypeConfigArgs) ElementType

func (GetPrivateCloudManagementClusterNodeTypeConfigArgs) ToGetPrivateCloudManagementClusterNodeTypeConfigOutput

func (i GetPrivateCloudManagementClusterNodeTypeConfigArgs) ToGetPrivateCloudManagementClusterNodeTypeConfigOutput() GetPrivateCloudManagementClusterNodeTypeConfigOutput

func (GetPrivateCloudManagementClusterNodeTypeConfigArgs) ToGetPrivateCloudManagementClusterNodeTypeConfigOutputWithContext

func (i GetPrivateCloudManagementClusterNodeTypeConfigArgs) ToGetPrivateCloudManagementClusterNodeTypeConfigOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterNodeTypeConfigOutput

type GetPrivateCloudManagementClusterNodeTypeConfigArray

type GetPrivateCloudManagementClusterNodeTypeConfigArray []GetPrivateCloudManagementClusterNodeTypeConfigInput

func (GetPrivateCloudManagementClusterNodeTypeConfigArray) ElementType

func (GetPrivateCloudManagementClusterNodeTypeConfigArray) ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutput

func (i GetPrivateCloudManagementClusterNodeTypeConfigArray) ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutput() GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput

func (GetPrivateCloudManagementClusterNodeTypeConfigArray) ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext

func (i GetPrivateCloudManagementClusterNodeTypeConfigArray) ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput

type GetPrivateCloudManagementClusterNodeTypeConfigArrayInput

type GetPrivateCloudManagementClusterNodeTypeConfigArrayInput interface {
	pulumi.Input

	ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutput() GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput
	ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext(context.Context) GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput
}

GetPrivateCloudManagementClusterNodeTypeConfigArrayInput is an input type that accepts GetPrivateCloudManagementClusterNodeTypeConfigArray and GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput values. You can construct a concrete instance of `GetPrivateCloudManagementClusterNodeTypeConfigArrayInput` via:

GetPrivateCloudManagementClusterNodeTypeConfigArray{ GetPrivateCloudManagementClusterNodeTypeConfigArgs{...} }

type GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput

type GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput) ElementType

func (GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput) Index

func (GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput) ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutput

func (GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput) ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext

func (o GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput) ToGetPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterNodeTypeConfigArrayOutput

type GetPrivateCloudManagementClusterNodeTypeConfigInput

type GetPrivateCloudManagementClusterNodeTypeConfigInput interface {
	pulumi.Input

	ToGetPrivateCloudManagementClusterNodeTypeConfigOutput() GetPrivateCloudManagementClusterNodeTypeConfigOutput
	ToGetPrivateCloudManagementClusterNodeTypeConfigOutputWithContext(context.Context) GetPrivateCloudManagementClusterNodeTypeConfigOutput
}

GetPrivateCloudManagementClusterNodeTypeConfigInput is an input type that accepts GetPrivateCloudManagementClusterNodeTypeConfigArgs and GetPrivateCloudManagementClusterNodeTypeConfigOutput values. You can construct a concrete instance of `GetPrivateCloudManagementClusterNodeTypeConfigInput` via:

GetPrivateCloudManagementClusterNodeTypeConfigArgs{...}

type GetPrivateCloudManagementClusterNodeTypeConfigOutput

type GetPrivateCloudManagementClusterNodeTypeConfigOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudManagementClusterNodeTypeConfigOutput) CustomCoreCount

Customized number of cores available to each node of the type. This number must always be one of 'nodeType.availableCustomCoreCounts'. If zero is provided max value from 'nodeType.availableCustomCoreCounts' will be used. This cannot be changed once the PrivateCloud is created.

func (GetPrivateCloudManagementClusterNodeTypeConfigOutput) ElementType

func (GetPrivateCloudManagementClusterNodeTypeConfigOutput) NodeCount

The number of nodes of this type in the cluster.

func (GetPrivateCloudManagementClusterNodeTypeConfigOutput) NodeTypeId

func (GetPrivateCloudManagementClusterNodeTypeConfigOutput) ToGetPrivateCloudManagementClusterNodeTypeConfigOutput

func (GetPrivateCloudManagementClusterNodeTypeConfigOutput) ToGetPrivateCloudManagementClusterNodeTypeConfigOutputWithContext

func (o GetPrivateCloudManagementClusterNodeTypeConfigOutput) ToGetPrivateCloudManagementClusterNodeTypeConfigOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterNodeTypeConfigOutput

type GetPrivateCloudManagementClusterOutput

type GetPrivateCloudManagementClusterOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudManagementClusterOutput) ClusterId

The user-provided identifier of the new Cluster. The identifier must meet the following requirements:

func (GetPrivateCloudManagementClusterOutput) ElementType

func (GetPrivateCloudManagementClusterOutput) NodeTypeConfigs

The map of cluster node types in this cluster, where the key is canonical identifier of the node type (corresponds to the NodeType).

func (GetPrivateCloudManagementClusterOutput) StretchedClusterConfigs added in v7.20.0

The stretched cluster configuration for the private cloud.

func (GetPrivateCloudManagementClusterOutput) ToGetPrivateCloudManagementClusterOutput

func (o GetPrivateCloudManagementClusterOutput) ToGetPrivateCloudManagementClusterOutput() GetPrivateCloudManagementClusterOutput

func (GetPrivateCloudManagementClusterOutput) ToGetPrivateCloudManagementClusterOutputWithContext

func (o GetPrivateCloudManagementClusterOutput) ToGetPrivateCloudManagementClusterOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterOutput

type GetPrivateCloudManagementClusterStretchedClusterConfig added in v7.20.0

type GetPrivateCloudManagementClusterStretchedClusterConfig struct {
	// Zone that will remain operational when connection between the two zones is lost.
	PreferredLocation string `pulumi:"preferredLocation"`
	// Additional zone for a higher level of availability and load balancing.
	SecondaryLocation string `pulumi:"secondaryLocation"`
}

type GetPrivateCloudManagementClusterStretchedClusterConfigArgs added in v7.20.0

type GetPrivateCloudManagementClusterStretchedClusterConfigArgs struct {
	// Zone that will remain operational when connection between the two zones is lost.
	PreferredLocation pulumi.StringInput `pulumi:"preferredLocation"`
	// Additional zone for a higher level of availability and load balancing.
	SecondaryLocation pulumi.StringInput `pulumi:"secondaryLocation"`
}

func (GetPrivateCloudManagementClusterStretchedClusterConfigArgs) ElementType added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigArgs) ToGetPrivateCloudManagementClusterStretchedClusterConfigOutput added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigArgs) ToGetPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext added in v7.20.0

func (i GetPrivateCloudManagementClusterStretchedClusterConfigArgs) ToGetPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterStretchedClusterConfigOutput

type GetPrivateCloudManagementClusterStretchedClusterConfigArray added in v7.20.0

type GetPrivateCloudManagementClusterStretchedClusterConfigArray []GetPrivateCloudManagementClusterStretchedClusterConfigInput

func (GetPrivateCloudManagementClusterStretchedClusterConfigArray) ElementType added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigArray) ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigArray) ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutputWithContext added in v7.20.0

func (i GetPrivateCloudManagementClusterStretchedClusterConfigArray) ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput

type GetPrivateCloudManagementClusterStretchedClusterConfigArrayInput added in v7.20.0

type GetPrivateCloudManagementClusterStretchedClusterConfigArrayInput interface {
	pulumi.Input

	ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput() GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput
	ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutputWithContext(context.Context) GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput
}

GetPrivateCloudManagementClusterStretchedClusterConfigArrayInput is an input type that accepts GetPrivateCloudManagementClusterStretchedClusterConfigArray and GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput values. You can construct a concrete instance of `GetPrivateCloudManagementClusterStretchedClusterConfigArrayInput` via:

GetPrivateCloudManagementClusterStretchedClusterConfigArray{ GetPrivateCloudManagementClusterStretchedClusterConfigArgs{...} }

type GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput added in v7.20.0

type GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput) ElementType added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput) Index added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput) ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput) ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutputWithContext added in v7.20.0

func (o GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput) ToGetPrivateCloudManagementClusterStretchedClusterConfigArrayOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterStretchedClusterConfigArrayOutput

type GetPrivateCloudManagementClusterStretchedClusterConfigInput added in v7.20.0

type GetPrivateCloudManagementClusterStretchedClusterConfigInput interface {
	pulumi.Input

	ToGetPrivateCloudManagementClusterStretchedClusterConfigOutput() GetPrivateCloudManagementClusterStretchedClusterConfigOutput
	ToGetPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext(context.Context) GetPrivateCloudManagementClusterStretchedClusterConfigOutput
}

GetPrivateCloudManagementClusterStretchedClusterConfigInput is an input type that accepts GetPrivateCloudManagementClusterStretchedClusterConfigArgs and GetPrivateCloudManagementClusterStretchedClusterConfigOutput values. You can construct a concrete instance of `GetPrivateCloudManagementClusterStretchedClusterConfigInput` via:

GetPrivateCloudManagementClusterStretchedClusterConfigArgs{...}

type GetPrivateCloudManagementClusterStretchedClusterConfigOutput added in v7.20.0

type GetPrivateCloudManagementClusterStretchedClusterConfigOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudManagementClusterStretchedClusterConfigOutput) ElementType added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigOutput) PreferredLocation added in v7.20.0

Zone that will remain operational when connection between the two zones is lost.

func (GetPrivateCloudManagementClusterStretchedClusterConfigOutput) SecondaryLocation added in v7.20.0

Additional zone for a higher level of availability and load balancing.

func (GetPrivateCloudManagementClusterStretchedClusterConfigOutput) ToGetPrivateCloudManagementClusterStretchedClusterConfigOutput added in v7.20.0

func (GetPrivateCloudManagementClusterStretchedClusterConfigOutput) ToGetPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext added in v7.20.0

func (o GetPrivateCloudManagementClusterStretchedClusterConfigOutput) ToGetPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext(ctx context.Context) GetPrivateCloudManagementClusterStretchedClusterConfigOutput

type GetPrivateCloudNetworkConfig

type GetPrivateCloudNetworkConfig struct {
	// DNS Server IP of the Private Cloud.
	DnsServerIp string `pulumi:"dnsServerIp"`
	// Management CIDR used by VMware management appliances.
	ManagementCidr string `pulumi:"managementCidr"`
	// The IP address layout version of the management IP address range.
	// Possible versions include:
	// * managementIpAddressLayoutVersion=1: Indicates the legacy IP address layout used by some existing private clouds. This is no longer supported for new private clouds
	//   as it does not support all features.
	// * managementIpAddressLayoutVersion=2: Indicates the latest IP address layout
	//   used by all newly created private clouds. This version supports all current features.
	ManagementIpAddressLayoutVersion int `pulumi:"managementIpAddressLayoutVersion"`
	// The relative resource name of the VMware Engine network attached to the private cloud.
	// Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	// where {project} can either be a project number or a project ID.
	VmwareEngineNetwork string `pulumi:"vmwareEngineNetwork"`
	// The canonical name of the VMware Engine network in
	// the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical string `pulumi:"vmwareEngineNetworkCanonical"`
}

type GetPrivateCloudNetworkConfigArgs

type GetPrivateCloudNetworkConfigArgs struct {
	// DNS Server IP of the Private Cloud.
	DnsServerIp pulumi.StringInput `pulumi:"dnsServerIp"`
	// Management CIDR used by VMware management appliances.
	ManagementCidr pulumi.StringInput `pulumi:"managementCidr"`
	// The IP address layout version of the management IP address range.
	// Possible versions include:
	// * managementIpAddressLayoutVersion=1: Indicates the legacy IP address layout used by some existing private clouds. This is no longer supported for new private clouds
	//   as it does not support all features.
	// * managementIpAddressLayoutVersion=2: Indicates the latest IP address layout
	//   used by all newly created private clouds. This version supports all current features.
	ManagementIpAddressLayoutVersion pulumi.IntInput `pulumi:"managementIpAddressLayoutVersion"`
	// The relative resource name of the VMware Engine network attached to the private cloud.
	// Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	// where {project} can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringInput `pulumi:"vmwareEngineNetwork"`
	// The canonical name of the VMware Engine network in
	// the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical pulumi.StringInput `pulumi:"vmwareEngineNetworkCanonical"`
}

func (GetPrivateCloudNetworkConfigArgs) ElementType

func (GetPrivateCloudNetworkConfigArgs) ToGetPrivateCloudNetworkConfigOutput

func (i GetPrivateCloudNetworkConfigArgs) ToGetPrivateCloudNetworkConfigOutput() GetPrivateCloudNetworkConfigOutput

func (GetPrivateCloudNetworkConfigArgs) ToGetPrivateCloudNetworkConfigOutputWithContext

func (i GetPrivateCloudNetworkConfigArgs) ToGetPrivateCloudNetworkConfigOutputWithContext(ctx context.Context) GetPrivateCloudNetworkConfigOutput

type GetPrivateCloudNetworkConfigArray

type GetPrivateCloudNetworkConfigArray []GetPrivateCloudNetworkConfigInput

func (GetPrivateCloudNetworkConfigArray) ElementType

func (GetPrivateCloudNetworkConfigArray) ToGetPrivateCloudNetworkConfigArrayOutput

func (i GetPrivateCloudNetworkConfigArray) ToGetPrivateCloudNetworkConfigArrayOutput() GetPrivateCloudNetworkConfigArrayOutput

func (GetPrivateCloudNetworkConfigArray) ToGetPrivateCloudNetworkConfigArrayOutputWithContext

func (i GetPrivateCloudNetworkConfigArray) ToGetPrivateCloudNetworkConfigArrayOutputWithContext(ctx context.Context) GetPrivateCloudNetworkConfigArrayOutput

type GetPrivateCloudNetworkConfigArrayInput

type GetPrivateCloudNetworkConfigArrayInput interface {
	pulumi.Input

	ToGetPrivateCloudNetworkConfigArrayOutput() GetPrivateCloudNetworkConfigArrayOutput
	ToGetPrivateCloudNetworkConfigArrayOutputWithContext(context.Context) GetPrivateCloudNetworkConfigArrayOutput
}

GetPrivateCloudNetworkConfigArrayInput is an input type that accepts GetPrivateCloudNetworkConfigArray and GetPrivateCloudNetworkConfigArrayOutput values. You can construct a concrete instance of `GetPrivateCloudNetworkConfigArrayInput` via:

GetPrivateCloudNetworkConfigArray{ GetPrivateCloudNetworkConfigArgs{...} }

type GetPrivateCloudNetworkConfigArrayOutput

type GetPrivateCloudNetworkConfigArrayOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudNetworkConfigArrayOutput) ElementType

func (GetPrivateCloudNetworkConfigArrayOutput) Index

func (GetPrivateCloudNetworkConfigArrayOutput) ToGetPrivateCloudNetworkConfigArrayOutput

func (o GetPrivateCloudNetworkConfigArrayOutput) ToGetPrivateCloudNetworkConfigArrayOutput() GetPrivateCloudNetworkConfigArrayOutput

func (GetPrivateCloudNetworkConfigArrayOutput) ToGetPrivateCloudNetworkConfigArrayOutputWithContext

func (o GetPrivateCloudNetworkConfigArrayOutput) ToGetPrivateCloudNetworkConfigArrayOutputWithContext(ctx context.Context) GetPrivateCloudNetworkConfigArrayOutput

type GetPrivateCloudNetworkConfigInput

type GetPrivateCloudNetworkConfigInput interface {
	pulumi.Input

	ToGetPrivateCloudNetworkConfigOutput() GetPrivateCloudNetworkConfigOutput
	ToGetPrivateCloudNetworkConfigOutputWithContext(context.Context) GetPrivateCloudNetworkConfigOutput
}

GetPrivateCloudNetworkConfigInput is an input type that accepts GetPrivateCloudNetworkConfigArgs and GetPrivateCloudNetworkConfigOutput values. You can construct a concrete instance of `GetPrivateCloudNetworkConfigInput` via:

GetPrivateCloudNetworkConfigArgs{...}

type GetPrivateCloudNetworkConfigOutput

type GetPrivateCloudNetworkConfigOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudNetworkConfigOutput) DnsServerIp added in v7.3.0

DNS Server IP of the Private Cloud.

func (GetPrivateCloudNetworkConfigOutput) ElementType

func (GetPrivateCloudNetworkConfigOutput) ManagementCidr

Management CIDR used by VMware management appliances.

func (GetPrivateCloudNetworkConfigOutput) ManagementIpAddressLayoutVersion

func (o GetPrivateCloudNetworkConfigOutput) ManagementIpAddressLayoutVersion() pulumi.IntOutput

The IP address layout version of the management IP address range. Possible versions include:

  • managementIpAddressLayoutVersion=1: Indicates the legacy IP address layout used by some existing private clouds. This is no longer supported for new private clouds as it does not support all features.
  • managementIpAddressLayoutVersion=2: Indicates the latest IP address layout used by all newly created private clouds. This version supports all current features.

func (GetPrivateCloudNetworkConfigOutput) ToGetPrivateCloudNetworkConfigOutput

func (o GetPrivateCloudNetworkConfigOutput) ToGetPrivateCloudNetworkConfigOutput() GetPrivateCloudNetworkConfigOutput

func (GetPrivateCloudNetworkConfigOutput) ToGetPrivateCloudNetworkConfigOutputWithContext

func (o GetPrivateCloudNetworkConfigOutput) ToGetPrivateCloudNetworkConfigOutputWithContext(ctx context.Context) GetPrivateCloudNetworkConfigOutput

func (GetPrivateCloudNetworkConfigOutput) VmwareEngineNetwork

func (o GetPrivateCloudNetworkConfigOutput) VmwareEngineNetwork() pulumi.StringOutput

The relative resource name of the VMware Engine network attached to the private cloud. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project} can either be a project number or a project ID.

func (GetPrivateCloudNetworkConfigOutput) VmwareEngineNetworkCanonical

func (o GetPrivateCloudNetworkConfigOutput) VmwareEngineNetworkCanonical() pulumi.StringOutput

The canonical name of the VMware Engine network in the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}

type GetPrivateCloudNsx

type GetPrivateCloudNsx struct {
	// Fully qualified domain name of the appliance.
	Fqdn string `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp string `pulumi:"internalIp"`
	// State of the appliance. Possible values: ["ACTIVE", "CREATING"]
	State string `pulumi:"state"`
	// Version of the appliance.
	Version string `pulumi:"version"`
}

type GetPrivateCloudNsxArgs

type GetPrivateCloudNsxArgs struct {
	// Fully qualified domain name of the appliance.
	Fqdn pulumi.StringInput `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp pulumi.StringInput `pulumi:"internalIp"`
	// State of the appliance. Possible values: ["ACTIVE", "CREATING"]
	State pulumi.StringInput `pulumi:"state"`
	// Version of the appliance.
	Version pulumi.StringInput `pulumi:"version"`
}

func (GetPrivateCloudNsxArgs) ElementType

func (GetPrivateCloudNsxArgs) ElementType() reflect.Type

func (GetPrivateCloudNsxArgs) ToGetPrivateCloudNsxOutput

func (i GetPrivateCloudNsxArgs) ToGetPrivateCloudNsxOutput() GetPrivateCloudNsxOutput

func (GetPrivateCloudNsxArgs) ToGetPrivateCloudNsxOutputWithContext

func (i GetPrivateCloudNsxArgs) ToGetPrivateCloudNsxOutputWithContext(ctx context.Context) GetPrivateCloudNsxOutput

type GetPrivateCloudNsxArray

type GetPrivateCloudNsxArray []GetPrivateCloudNsxInput

func (GetPrivateCloudNsxArray) ElementType

func (GetPrivateCloudNsxArray) ElementType() reflect.Type

func (GetPrivateCloudNsxArray) ToGetPrivateCloudNsxArrayOutput

func (i GetPrivateCloudNsxArray) ToGetPrivateCloudNsxArrayOutput() GetPrivateCloudNsxArrayOutput

func (GetPrivateCloudNsxArray) ToGetPrivateCloudNsxArrayOutputWithContext

func (i GetPrivateCloudNsxArray) ToGetPrivateCloudNsxArrayOutputWithContext(ctx context.Context) GetPrivateCloudNsxArrayOutput

type GetPrivateCloudNsxArrayInput

type GetPrivateCloudNsxArrayInput interface {
	pulumi.Input

	ToGetPrivateCloudNsxArrayOutput() GetPrivateCloudNsxArrayOutput
	ToGetPrivateCloudNsxArrayOutputWithContext(context.Context) GetPrivateCloudNsxArrayOutput
}

GetPrivateCloudNsxArrayInput is an input type that accepts GetPrivateCloudNsxArray and GetPrivateCloudNsxArrayOutput values. You can construct a concrete instance of `GetPrivateCloudNsxArrayInput` via:

GetPrivateCloudNsxArray{ GetPrivateCloudNsxArgs{...} }

type GetPrivateCloudNsxArrayOutput

type GetPrivateCloudNsxArrayOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudNsxArrayOutput) ElementType

func (GetPrivateCloudNsxArrayOutput) Index

func (GetPrivateCloudNsxArrayOutput) ToGetPrivateCloudNsxArrayOutput

func (o GetPrivateCloudNsxArrayOutput) ToGetPrivateCloudNsxArrayOutput() GetPrivateCloudNsxArrayOutput

func (GetPrivateCloudNsxArrayOutput) ToGetPrivateCloudNsxArrayOutputWithContext

func (o GetPrivateCloudNsxArrayOutput) ToGetPrivateCloudNsxArrayOutputWithContext(ctx context.Context) GetPrivateCloudNsxArrayOutput

type GetPrivateCloudNsxInput

type GetPrivateCloudNsxInput interface {
	pulumi.Input

	ToGetPrivateCloudNsxOutput() GetPrivateCloudNsxOutput
	ToGetPrivateCloudNsxOutputWithContext(context.Context) GetPrivateCloudNsxOutput
}

GetPrivateCloudNsxInput is an input type that accepts GetPrivateCloudNsxArgs and GetPrivateCloudNsxOutput values. You can construct a concrete instance of `GetPrivateCloudNsxInput` via:

GetPrivateCloudNsxArgs{...}

type GetPrivateCloudNsxOutput

type GetPrivateCloudNsxOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudNsxOutput) ElementType

func (GetPrivateCloudNsxOutput) ElementType() reflect.Type

func (GetPrivateCloudNsxOutput) Fqdn

Fully qualified domain name of the appliance.

func (GetPrivateCloudNsxOutput) InternalIp

Internal IP address of the appliance.

func (GetPrivateCloudNsxOutput) State

State of the appliance. Possible values: ["ACTIVE", "CREATING"]

func (GetPrivateCloudNsxOutput) ToGetPrivateCloudNsxOutput

func (o GetPrivateCloudNsxOutput) ToGetPrivateCloudNsxOutput() GetPrivateCloudNsxOutput

func (GetPrivateCloudNsxOutput) ToGetPrivateCloudNsxOutputWithContext

func (o GetPrivateCloudNsxOutput) ToGetPrivateCloudNsxOutputWithContext(ctx context.Context) GetPrivateCloudNsxOutput

func (GetPrivateCloudNsxOutput) Version

Version of the appliance.

type GetPrivateCloudVcenter

type GetPrivateCloudVcenter struct {
	// Fully qualified domain name of the appliance.
	Fqdn string `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp string `pulumi:"internalIp"`
	// State of the appliance. Possible values: ["ACTIVE", "CREATING"]
	State string `pulumi:"state"`
	// Version of the appliance.
	Version string `pulumi:"version"`
}

type GetPrivateCloudVcenterArgs

type GetPrivateCloudVcenterArgs struct {
	// Fully qualified domain name of the appliance.
	Fqdn pulumi.StringInput `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp pulumi.StringInput `pulumi:"internalIp"`
	// State of the appliance. Possible values: ["ACTIVE", "CREATING"]
	State pulumi.StringInput `pulumi:"state"`
	// Version of the appliance.
	Version pulumi.StringInput `pulumi:"version"`
}

func (GetPrivateCloudVcenterArgs) ElementType

func (GetPrivateCloudVcenterArgs) ElementType() reflect.Type

func (GetPrivateCloudVcenterArgs) ToGetPrivateCloudVcenterOutput

func (i GetPrivateCloudVcenterArgs) ToGetPrivateCloudVcenterOutput() GetPrivateCloudVcenterOutput

func (GetPrivateCloudVcenterArgs) ToGetPrivateCloudVcenterOutputWithContext

func (i GetPrivateCloudVcenterArgs) ToGetPrivateCloudVcenterOutputWithContext(ctx context.Context) GetPrivateCloudVcenterOutput

type GetPrivateCloudVcenterArray

type GetPrivateCloudVcenterArray []GetPrivateCloudVcenterInput

func (GetPrivateCloudVcenterArray) ElementType

func (GetPrivateCloudVcenterArray) ToGetPrivateCloudVcenterArrayOutput

func (i GetPrivateCloudVcenterArray) ToGetPrivateCloudVcenterArrayOutput() GetPrivateCloudVcenterArrayOutput

func (GetPrivateCloudVcenterArray) ToGetPrivateCloudVcenterArrayOutputWithContext

func (i GetPrivateCloudVcenterArray) ToGetPrivateCloudVcenterArrayOutputWithContext(ctx context.Context) GetPrivateCloudVcenterArrayOutput

type GetPrivateCloudVcenterArrayInput

type GetPrivateCloudVcenterArrayInput interface {
	pulumi.Input

	ToGetPrivateCloudVcenterArrayOutput() GetPrivateCloudVcenterArrayOutput
	ToGetPrivateCloudVcenterArrayOutputWithContext(context.Context) GetPrivateCloudVcenterArrayOutput
}

GetPrivateCloudVcenterArrayInput is an input type that accepts GetPrivateCloudVcenterArray and GetPrivateCloudVcenterArrayOutput values. You can construct a concrete instance of `GetPrivateCloudVcenterArrayInput` via:

GetPrivateCloudVcenterArray{ GetPrivateCloudVcenterArgs{...} }

type GetPrivateCloudVcenterArrayOutput

type GetPrivateCloudVcenterArrayOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudVcenterArrayOutput) ElementType

func (GetPrivateCloudVcenterArrayOutput) Index

func (GetPrivateCloudVcenterArrayOutput) ToGetPrivateCloudVcenterArrayOutput

func (o GetPrivateCloudVcenterArrayOutput) ToGetPrivateCloudVcenterArrayOutput() GetPrivateCloudVcenterArrayOutput

func (GetPrivateCloudVcenterArrayOutput) ToGetPrivateCloudVcenterArrayOutputWithContext

func (o GetPrivateCloudVcenterArrayOutput) ToGetPrivateCloudVcenterArrayOutputWithContext(ctx context.Context) GetPrivateCloudVcenterArrayOutput

type GetPrivateCloudVcenterInput

type GetPrivateCloudVcenterInput interface {
	pulumi.Input

	ToGetPrivateCloudVcenterOutput() GetPrivateCloudVcenterOutput
	ToGetPrivateCloudVcenterOutputWithContext(context.Context) GetPrivateCloudVcenterOutput
}

GetPrivateCloudVcenterInput is an input type that accepts GetPrivateCloudVcenterArgs and GetPrivateCloudVcenterOutput values. You can construct a concrete instance of `GetPrivateCloudVcenterInput` via:

GetPrivateCloudVcenterArgs{...}

type GetPrivateCloudVcenterOutput

type GetPrivateCloudVcenterOutput struct{ *pulumi.OutputState }

func (GetPrivateCloudVcenterOutput) ElementType

func (GetPrivateCloudVcenterOutput) Fqdn

Fully qualified domain name of the appliance.

func (GetPrivateCloudVcenterOutput) InternalIp

Internal IP address of the appliance.

func (GetPrivateCloudVcenterOutput) State

State of the appliance. Possible values: ["ACTIVE", "CREATING"]

func (GetPrivateCloudVcenterOutput) ToGetPrivateCloudVcenterOutput

func (o GetPrivateCloudVcenterOutput) ToGetPrivateCloudVcenterOutput() GetPrivateCloudVcenterOutput

func (GetPrivateCloudVcenterOutput) ToGetPrivateCloudVcenterOutputWithContext

func (o GetPrivateCloudVcenterOutput) ToGetPrivateCloudVcenterOutputWithContext(ctx context.Context) GetPrivateCloudVcenterOutput

func (GetPrivateCloudVcenterOutput) Version

Version of the appliance.

type GetSubnetDhcpAddressRange added in v7.4.0

type GetSubnetDhcpAddressRange struct {
	// The first IP address of the range.
	FirstAddress string `pulumi:"firstAddress"`
	// The last IP address of the range.
	LastAddress string `pulumi:"lastAddress"`
}

type GetSubnetDhcpAddressRangeArgs added in v7.4.0

type GetSubnetDhcpAddressRangeArgs struct {
	// The first IP address of the range.
	FirstAddress pulumi.StringInput `pulumi:"firstAddress"`
	// The last IP address of the range.
	LastAddress pulumi.StringInput `pulumi:"lastAddress"`
}

func (GetSubnetDhcpAddressRangeArgs) ElementType added in v7.4.0

func (GetSubnetDhcpAddressRangeArgs) ToGetSubnetDhcpAddressRangeOutput added in v7.4.0

func (i GetSubnetDhcpAddressRangeArgs) ToGetSubnetDhcpAddressRangeOutput() GetSubnetDhcpAddressRangeOutput

func (GetSubnetDhcpAddressRangeArgs) ToGetSubnetDhcpAddressRangeOutputWithContext added in v7.4.0

func (i GetSubnetDhcpAddressRangeArgs) ToGetSubnetDhcpAddressRangeOutputWithContext(ctx context.Context) GetSubnetDhcpAddressRangeOutput

type GetSubnetDhcpAddressRangeArray added in v7.4.0

type GetSubnetDhcpAddressRangeArray []GetSubnetDhcpAddressRangeInput

func (GetSubnetDhcpAddressRangeArray) ElementType added in v7.4.0

func (GetSubnetDhcpAddressRangeArray) ToGetSubnetDhcpAddressRangeArrayOutput added in v7.4.0

func (i GetSubnetDhcpAddressRangeArray) ToGetSubnetDhcpAddressRangeArrayOutput() GetSubnetDhcpAddressRangeArrayOutput

func (GetSubnetDhcpAddressRangeArray) ToGetSubnetDhcpAddressRangeArrayOutputWithContext added in v7.4.0

func (i GetSubnetDhcpAddressRangeArray) ToGetSubnetDhcpAddressRangeArrayOutputWithContext(ctx context.Context) GetSubnetDhcpAddressRangeArrayOutput

type GetSubnetDhcpAddressRangeArrayInput added in v7.4.0

type GetSubnetDhcpAddressRangeArrayInput interface {
	pulumi.Input

	ToGetSubnetDhcpAddressRangeArrayOutput() GetSubnetDhcpAddressRangeArrayOutput
	ToGetSubnetDhcpAddressRangeArrayOutputWithContext(context.Context) GetSubnetDhcpAddressRangeArrayOutput
}

GetSubnetDhcpAddressRangeArrayInput is an input type that accepts GetSubnetDhcpAddressRangeArray and GetSubnetDhcpAddressRangeArrayOutput values. You can construct a concrete instance of `GetSubnetDhcpAddressRangeArrayInput` via:

GetSubnetDhcpAddressRangeArray{ GetSubnetDhcpAddressRangeArgs{...} }

type GetSubnetDhcpAddressRangeArrayOutput added in v7.4.0

type GetSubnetDhcpAddressRangeArrayOutput struct{ *pulumi.OutputState }

func (GetSubnetDhcpAddressRangeArrayOutput) ElementType added in v7.4.0

func (GetSubnetDhcpAddressRangeArrayOutput) Index added in v7.4.0

func (GetSubnetDhcpAddressRangeArrayOutput) ToGetSubnetDhcpAddressRangeArrayOutput added in v7.4.0

func (o GetSubnetDhcpAddressRangeArrayOutput) ToGetSubnetDhcpAddressRangeArrayOutput() GetSubnetDhcpAddressRangeArrayOutput

func (GetSubnetDhcpAddressRangeArrayOutput) ToGetSubnetDhcpAddressRangeArrayOutputWithContext added in v7.4.0

func (o GetSubnetDhcpAddressRangeArrayOutput) ToGetSubnetDhcpAddressRangeArrayOutputWithContext(ctx context.Context) GetSubnetDhcpAddressRangeArrayOutput

type GetSubnetDhcpAddressRangeInput added in v7.4.0

type GetSubnetDhcpAddressRangeInput interface {
	pulumi.Input

	ToGetSubnetDhcpAddressRangeOutput() GetSubnetDhcpAddressRangeOutput
	ToGetSubnetDhcpAddressRangeOutputWithContext(context.Context) GetSubnetDhcpAddressRangeOutput
}

GetSubnetDhcpAddressRangeInput is an input type that accepts GetSubnetDhcpAddressRangeArgs and GetSubnetDhcpAddressRangeOutput values. You can construct a concrete instance of `GetSubnetDhcpAddressRangeInput` via:

GetSubnetDhcpAddressRangeArgs{...}

type GetSubnetDhcpAddressRangeOutput added in v7.4.0

type GetSubnetDhcpAddressRangeOutput struct{ *pulumi.OutputState }

func (GetSubnetDhcpAddressRangeOutput) ElementType added in v7.4.0

func (GetSubnetDhcpAddressRangeOutput) FirstAddress added in v7.4.0

The first IP address of the range.

func (GetSubnetDhcpAddressRangeOutput) LastAddress added in v7.4.0

The last IP address of the range.

func (GetSubnetDhcpAddressRangeOutput) ToGetSubnetDhcpAddressRangeOutput added in v7.4.0

func (o GetSubnetDhcpAddressRangeOutput) ToGetSubnetDhcpAddressRangeOutput() GetSubnetDhcpAddressRangeOutput

func (GetSubnetDhcpAddressRangeOutput) ToGetSubnetDhcpAddressRangeOutputWithContext added in v7.4.0

func (o GetSubnetDhcpAddressRangeOutput) ToGetSubnetDhcpAddressRangeOutputWithContext(ctx context.Context) GetSubnetDhcpAddressRangeOutput

type GetVcenterCredentialsArgs added in v7.4.0

type GetVcenterCredentialsArgs struct {
	// The resource name of the private cloud which contains the Vcenter.
	Parent string `pulumi:"parent"`
}

A collection of arguments for invoking getVcenterCredentials.

type GetVcenterCredentialsOutputArgs added in v7.4.0

type GetVcenterCredentialsOutputArgs struct {
	// The resource name of the private cloud which contains the Vcenter.
	Parent pulumi.StringInput `pulumi:"parent"`
}

A collection of arguments for invoking getVcenterCredentials.

func (GetVcenterCredentialsOutputArgs) ElementType added in v7.4.0

type GetVcenterCredentialsResult added in v7.4.0

type GetVcenterCredentialsResult struct {
	// The provider-assigned unique ID for this managed resource.
	Id     string `pulumi:"id"`
	Parent string `pulumi:"parent"`
	// The password of the Vcenter Credential.
	Password string `pulumi:"password"`
	// The username of the Vcenter Credential.
	Username string `pulumi:"username"`
}

A collection of values returned by getVcenterCredentials.

func GetVcenterCredentials added in v7.4.0

func GetVcenterCredentials(ctx *pulumi.Context, args *GetVcenterCredentialsArgs, opts ...pulumi.InvokeOption) (*GetVcenterCredentialsResult, error)

Use this data source to get Vcenter credentials for a Private Cloud.

To get more information about private cloud Vcenter credentials, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds/showVcenterCredentials)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.GetVcenterCredentials(ctx, &vmwareengine.GetVcenterCredentialsArgs{
			Parent: "projects/my-project/locations/us-west1-a/privateClouds/my-cloud",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type GetVcenterCredentialsResultOutput added in v7.4.0

type GetVcenterCredentialsResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getVcenterCredentials.

func GetVcenterCredentialsOutput added in v7.4.0

func (GetVcenterCredentialsResultOutput) ElementType added in v7.4.0

func (GetVcenterCredentialsResultOutput) Id added in v7.4.0

The provider-assigned unique ID for this managed resource.

func (GetVcenterCredentialsResultOutput) Parent added in v7.4.0

func (GetVcenterCredentialsResultOutput) Password added in v7.4.0

The password of the Vcenter Credential.

func (GetVcenterCredentialsResultOutput) ToGetVcenterCredentialsResultOutput added in v7.4.0

func (o GetVcenterCredentialsResultOutput) ToGetVcenterCredentialsResultOutput() GetVcenterCredentialsResultOutput

func (GetVcenterCredentialsResultOutput) ToGetVcenterCredentialsResultOutputWithContext added in v7.4.0

func (o GetVcenterCredentialsResultOutput) ToGetVcenterCredentialsResultOutputWithContext(ctx context.Context) GetVcenterCredentialsResultOutput

func (GetVcenterCredentialsResultOutput) Username added in v7.4.0

The username of the Vcenter Credential.

type LookupClusterArgs

type LookupClusterArgs struct {
	// Name of the resource.
	Name string `pulumi:"name"`
	// The resource name of the private cloud that this cluster belongs.
	Parent string `pulumi:"parent"`
}

A collection of arguments for invoking getCluster.

type LookupClusterOutputArgs

type LookupClusterOutputArgs struct {
	// Name of the resource.
	Name pulumi.StringInput `pulumi:"name"`
	// The resource name of the private cloud that this cluster belongs.
	Parent pulumi.StringInput `pulumi:"parent"`
}

A collection of arguments for invoking getCluster.

func (LookupClusterOutputArgs) ElementType

func (LookupClusterOutputArgs) ElementType() reflect.Type

type LookupClusterResult

type LookupClusterResult struct {
	// The provider-assigned unique ID for this managed resource.
	Id              string                     `pulumi:"id"`
	Management      bool                       `pulumi:"management"`
	Name            string                     `pulumi:"name"`
	NodeTypeConfigs []GetClusterNodeTypeConfig `pulumi:"nodeTypeConfigs"`
	Parent          string                     `pulumi:"parent"`
	State           string                     `pulumi:"state"`
	Uid             string                     `pulumi:"uid"`
}

A collection of values returned by getCluster.

func LookupCluster

func LookupCluster(ctx *pulumi.Context, args *LookupClusterArgs, opts ...pulumi.InvokeOption) (*LookupClusterResult, error)

Use this data source to get details about a cluster resource.

To get more information about private cloud cluster, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds.clusters)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupCluster(ctx, &vmwareengine.LookupClusterArgs{
			Name:   "my-cluster",
			Parent: "project/locations/us-west1-a/privateClouds/my-cloud",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupClusterResultOutput

type LookupClusterResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getCluster.

func (LookupClusterResultOutput) ElementType

func (LookupClusterResultOutput) ElementType() reflect.Type

func (LookupClusterResultOutput) Id

The provider-assigned unique ID for this managed resource.

func (LookupClusterResultOutput) Management

func (LookupClusterResultOutput) Name

func (LookupClusterResultOutput) NodeTypeConfigs

func (LookupClusterResultOutput) Parent

func (LookupClusterResultOutput) State

func (LookupClusterResultOutput) ToLookupClusterResultOutput

func (o LookupClusterResultOutput) ToLookupClusterResultOutput() LookupClusterResultOutput

func (LookupClusterResultOutput) ToLookupClusterResultOutputWithContext

func (o LookupClusterResultOutput) ToLookupClusterResultOutputWithContext(ctx context.Context) LookupClusterResultOutput

func (LookupClusterResultOutput) Uid

type LookupExternalAccessRuleArgs added in v7.6.0

type LookupExternalAccessRuleArgs struct {
	// Name of the resource.
	Name string `pulumi:"name"`
	// The resource name of the network policy that this cluster belongs.
	Parent string `pulumi:"parent"`
}

A collection of arguments for invoking getExternalAccessRule.

type LookupExternalAccessRuleOutputArgs added in v7.6.0

type LookupExternalAccessRuleOutputArgs struct {
	// Name of the resource.
	Name pulumi.StringInput `pulumi:"name"`
	// The resource name of the network policy that this cluster belongs.
	Parent pulumi.StringInput `pulumi:"parent"`
}

A collection of arguments for invoking getExternalAccessRule.

func (LookupExternalAccessRuleOutputArgs) ElementType added in v7.6.0

type LookupExternalAccessRuleResult added in v7.6.0

type LookupExternalAccessRuleResult struct {
	Action              string                                    `pulumi:"action"`
	CreateTime          string                                    `pulumi:"createTime"`
	Description         string                                    `pulumi:"description"`
	DestinationIpRanges []GetExternalAccessRuleDestinationIpRange `pulumi:"destinationIpRanges"`
	DestinationPorts    []string                                  `pulumi:"destinationPorts"`
	// The provider-assigned unique ID for this managed resource.
	Id             string                               `pulumi:"id"`
	IpProtocol     string                               `pulumi:"ipProtocol"`
	Name           string                               `pulumi:"name"`
	Parent         string                               `pulumi:"parent"`
	Priority       int                                  `pulumi:"priority"`
	SourceIpRanges []GetExternalAccessRuleSourceIpRange `pulumi:"sourceIpRanges"`
	SourcePorts    []string                             `pulumi:"sourcePorts"`
	State          string                               `pulumi:"state"`
	Uid            string                               `pulumi:"uid"`
	UpdateTime     string                               `pulumi:"updateTime"`
}

A collection of values returned by getExternalAccessRule.

func LookupExternalAccessRule added in v7.6.0

func LookupExternalAccessRule(ctx *pulumi.Context, args *LookupExternalAccessRuleArgs, opts ...pulumi.InvokeOption) (*LookupExternalAccessRuleResult, error)

Use this data source to get details about a external access rule resource.

To get more information about external address, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.networkPolicies.externalAccessRules)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupExternalAccessRule(ctx, &vmwareengine.LookupExternalAccessRuleArgs{
			Name:   "my-external-access-rule",
			Parent: "project/my-project/locations/us-west1-a/networkPolicies/my-network-policy",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupExternalAccessRuleResultOutput added in v7.6.0

type LookupExternalAccessRuleResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getExternalAccessRule.

func (LookupExternalAccessRuleResultOutput) Action added in v7.6.0

func (LookupExternalAccessRuleResultOutput) CreateTime added in v7.6.0

func (LookupExternalAccessRuleResultOutput) Description added in v7.6.0

func (LookupExternalAccessRuleResultOutput) DestinationIpRanges added in v7.6.0

func (LookupExternalAccessRuleResultOutput) DestinationPorts added in v7.6.0

func (LookupExternalAccessRuleResultOutput) ElementType added in v7.6.0

func (LookupExternalAccessRuleResultOutput) Id added in v7.6.0

The provider-assigned unique ID for this managed resource.

func (LookupExternalAccessRuleResultOutput) IpProtocol added in v7.6.0

func (LookupExternalAccessRuleResultOutput) Name added in v7.6.0

func (LookupExternalAccessRuleResultOutput) Parent added in v7.6.0

func (LookupExternalAccessRuleResultOutput) Priority added in v7.6.0

func (LookupExternalAccessRuleResultOutput) SourceIpRanges added in v7.6.0

func (LookupExternalAccessRuleResultOutput) SourcePorts added in v7.6.0

func (LookupExternalAccessRuleResultOutput) State added in v7.6.0

func (LookupExternalAccessRuleResultOutput) ToLookupExternalAccessRuleResultOutput added in v7.6.0

func (o LookupExternalAccessRuleResultOutput) ToLookupExternalAccessRuleResultOutput() LookupExternalAccessRuleResultOutput

func (LookupExternalAccessRuleResultOutput) ToLookupExternalAccessRuleResultOutputWithContext added in v7.6.0

func (o LookupExternalAccessRuleResultOutput) ToLookupExternalAccessRuleResultOutputWithContext(ctx context.Context) LookupExternalAccessRuleResultOutput

func (LookupExternalAccessRuleResultOutput) Uid added in v7.6.0

func (LookupExternalAccessRuleResultOutput) UpdateTime added in v7.6.0

type LookupExternalAddressArgs added in v7.4.0

type LookupExternalAddressArgs struct {
	// Name of the resource.
	Name string `pulumi:"name"`
	// The resource name of the private cloud that this cluster belongs.
	Parent string `pulumi:"parent"`
}

A collection of arguments for invoking getExternalAddress.

type LookupExternalAddressOutputArgs added in v7.4.0

type LookupExternalAddressOutputArgs struct {
	// Name of the resource.
	Name pulumi.StringInput `pulumi:"name"`
	// The resource name of the private cloud that this cluster belongs.
	Parent pulumi.StringInput `pulumi:"parent"`
}

A collection of arguments for invoking getExternalAddress.

func (LookupExternalAddressOutputArgs) ElementType added in v7.4.0

type LookupExternalAddressResult added in v7.4.0

type LookupExternalAddressResult struct {
	CreateTime  string `pulumi:"createTime"`
	Description string `pulumi:"description"`
	ExternalIp  string `pulumi:"externalIp"`
	// The provider-assigned unique ID for this managed resource.
	Id         string `pulumi:"id"`
	InternalIp string `pulumi:"internalIp"`
	Name       string `pulumi:"name"`
	Parent     string `pulumi:"parent"`
	State      string `pulumi:"state"`
	Uid        string `pulumi:"uid"`
	UpdateTime string `pulumi:"updateTime"`
}

A collection of values returned by getExternalAddress.

func LookupExternalAddress added in v7.4.0

func LookupExternalAddress(ctx *pulumi.Context, args *LookupExternalAddressArgs, opts ...pulumi.InvokeOption) (*LookupExternalAddressResult, error)

Use this data source to get details about a external address resource.

To get more information about external address, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds.externalAddresses)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupExternalAddress(ctx, &vmwareengine.LookupExternalAddressArgs{
			Name:   "my-external-address",
			Parent: "project/my-project/locations/us-west1-a/privateClouds/my-cloud",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupExternalAddressResultOutput added in v7.4.0

type LookupExternalAddressResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getExternalAddress.

func LookupExternalAddressOutput added in v7.4.0

func (LookupExternalAddressResultOutput) CreateTime added in v7.4.0

func (LookupExternalAddressResultOutput) Description added in v7.4.0

func (LookupExternalAddressResultOutput) ElementType added in v7.4.0

func (LookupExternalAddressResultOutput) ExternalIp added in v7.4.0

func (LookupExternalAddressResultOutput) Id added in v7.4.0

The provider-assigned unique ID for this managed resource.

func (LookupExternalAddressResultOutput) InternalIp added in v7.4.0

func (LookupExternalAddressResultOutput) Name added in v7.4.0

func (LookupExternalAddressResultOutput) Parent added in v7.4.0

func (LookupExternalAddressResultOutput) State added in v7.4.0

func (LookupExternalAddressResultOutput) ToLookupExternalAddressResultOutput added in v7.4.0

func (o LookupExternalAddressResultOutput) ToLookupExternalAddressResultOutput() LookupExternalAddressResultOutput

func (LookupExternalAddressResultOutput) ToLookupExternalAddressResultOutputWithContext added in v7.4.0

func (o LookupExternalAddressResultOutput) ToLookupExternalAddressResultOutputWithContext(ctx context.Context) LookupExternalAddressResultOutput

func (LookupExternalAddressResultOutput) Uid added in v7.4.0

func (LookupExternalAddressResultOutput) UpdateTime added in v7.4.0

type LookupNetworkArgs

type LookupNetworkArgs struct {
	// Location of the resource.
	//
	// ***
	Location string `pulumi:"location"`
	// Name of the resource.
	Name string `pulumi:"name"`
	// The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
	Project *string `pulumi:"project"`
}

A collection of arguments for invoking getNetwork.

type LookupNetworkOutputArgs

type LookupNetworkOutputArgs struct {
	// Location of the resource.
	//
	// ***
	Location pulumi.StringInput `pulumi:"location"`
	// Name of the resource.
	Name pulumi.StringInput `pulumi:"name"`
	// The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput `pulumi:"project"`
}

A collection of arguments for invoking getNetwork.

func (LookupNetworkOutputArgs) ElementType

func (LookupNetworkOutputArgs) ElementType() reflect.Type

type LookupNetworkPeeringArgs added in v7.3.0

type LookupNetworkPeeringArgs struct {
	// Name of the resource.
	Name    string  `pulumi:"name"`
	Project *string `pulumi:"project"`
}

A collection of arguments for invoking getNetworkPeering.

type LookupNetworkPeeringOutputArgs added in v7.3.0

type LookupNetworkPeeringOutputArgs struct {
	// Name of the resource.
	Name    pulumi.StringInput    `pulumi:"name"`
	Project pulumi.StringPtrInput `pulumi:"project"`
}

A collection of arguments for invoking getNetworkPeering.

func (LookupNetworkPeeringOutputArgs) ElementType added in v7.3.0

type LookupNetworkPeeringResult added in v7.3.0

type LookupNetworkPeeringResult struct {
	CreateTime                     string `pulumi:"createTime"`
	Description                    string `pulumi:"description"`
	ExportCustomRoutes             bool   `pulumi:"exportCustomRoutes"`
	ExportCustomRoutesWithPublicIp bool   `pulumi:"exportCustomRoutesWithPublicIp"`
	// The provider-assigned unique ID for this managed resource.
	Id                             string  `pulumi:"id"`
	ImportCustomRoutes             bool    `pulumi:"importCustomRoutes"`
	ImportCustomRoutesWithPublicIp bool    `pulumi:"importCustomRoutesWithPublicIp"`
	Name                           string  `pulumi:"name"`
	PeerNetwork                    string  `pulumi:"peerNetwork"`
	PeerNetworkType                string  `pulumi:"peerNetworkType"`
	Project                        *string `pulumi:"project"`
	State                          string  `pulumi:"state"`
	StateDetails                   string  `pulumi:"stateDetails"`
	Uid                            string  `pulumi:"uid"`
	UpdateTime                     string  `pulumi:"updateTime"`
	VmwareEngineNetwork            string  `pulumi:"vmwareEngineNetwork"`
	VmwareEngineNetworkCanonical   string  `pulumi:"vmwareEngineNetworkCanonical"`
}

A collection of values returned by getNetworkPeering.

func LookupNetworkPeering added in v7.3.0

func LookupNetworkPeering(ctx *pulumi.Context, args *LookupNetworkPeeringArgs, opts ...pulumi.InvokeOption) (*LookupNetworkPeeringResult, error)

Use this data source to get details about a network peering resource.

To get more information about network peering, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.networkPeerings)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupNetworkPeering(ctx, &vmwareengine.LookupNetworkPeeringArgs{
			Name: "my-network-peering",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupNetworkPeeringResultOutput added in v7.3.0

type LookupNetworkPeeringResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getNetworkPeering.

func LookupNetworkPeeringOutput added in v7.3.0

func (LookupNetworkPeeringResultOutput) CreateTime added in v7.3.0

func (LookupNetworkPeeringResultOutput) Description added in v7.3.0

func (LookupNetworkPeeringResultOutput) ElementType added in v7.3.0

func (LookupNetworkPeeringResultOutput) ExportCustomRoutes added in v7.3.0

func (o LookupNetworkPeeringResultOutput) ExportCustomRoutes() pulumi.BoolOutput

func (LookupNetworkPeeringResultOutput) ExportCustomRoutesWithPublicIp added in v7.3.0

func (o LookupNetworkPeeringResultOutput) ExportCustomRoutesWithPublicIp() pulumi.BoolOutput

func (LookupNetworkPeeringResultOutput) Id added in v7.3.0

The provider-assigned unique ID for this managed resource.

func (LookupNetworkPeeringResultOutput) ImportCustomRoutes added in v7.3.0

func (o LookupNetworkPeeringResultOutput) ImportCustomRoutes() pulumi.BoolOutput

func (LookupNetworkPeeringResultOutput) ImportCustomRoutesWithPublicIp added in v7.3.0

func (o LookupNetworkPeeringResultOutput) ImportCustomRoutesWithPublicIp() pulumi.BoolOutput

func (LookupNetworkPeeringResultOutput) Name added in v7.3.0

func (LookupNetworkPeeringResultOutput) PeerNetwork added in v7.3.0

func (LookupNetworkPeeringResultOutput) PeerNetworkType added in v7.3.0

func (LookupNetworkPeeringResultOutput) Project added in v7.3.0

func (LookupNetworkPeeringResultOutput) State added in v7.3.0

func (LookupNetworkPeeringResultOutput) StateDetails added in v7.3.0

func (LookupNetworkPeeringResultOutput) ToLookupNetworkPeeringResultOutput added in v7.3.0

func (o LookupNetworkPeeringResultOutput) ToLookupNetworkPeeringResultOutput() LookupNetworkPeeringResultOutput

func (LookupNetworkPeeringResultOutput) ToLookupNetworkPeeringResultOutputWithContext added in v7.3.0

func (o LookupNetworkPeeringResultOutput) ToLookupNetworkPeeringResultOutputWithContext(ctx context.Context) LookupNetworkPeeringResultOutput

func (LookupNetworkPeeringResultOutput) Uid added in v7.3.0

func (LookupNetworkPeeringResultOutput) UpdateTime added in v7.3.0

func (LookupNetworkPeeringResultOutput) VmwareEngineNetwork added in v7.3.0

func (o LookupNetworkPeeringResultOutput) VmwareEngineNetwork() pulumi.StringOutput

func (LookupNetworkPeeringResultOutput) VmwareEngineNetworkCanonical added in v7.3.0

func (o LookupNetworkPeeringResultOutput) VmwareEngineNetworkCanonical() pulumi.StringOutput

type LookupNetworkPolicyArgs added in v7.3.0

type LookupNetworkPolicyArgs struct {
	// Location of the resource.
	Location string `pulumi:"location"`
	// Name of the resource.
	Name    string  `pulumi:"name"`
	Project *string `pulumi:"project"`
}

A collection of arguments for invoking getNetworkPolicy.

type LookupNetworkPolicyOutputArgs added in v7.3.0

type LookupNetworkPolicyOutputArgs struct {
	// Location of the resource.
	Location pulumi.StringInput `pulumi:"location"`
	// Name of the resource.
	Name    pulumi.StringInput    `pulumi:"name"`
	Project pulumi.StringPtrInput `pulumi:"project"`
}

A collection of arguments for invoking getNetworkPolicy.

func (LookupNetworkPolicyOutputArgs) ElementType added in v7.3.0

type LookupNetworkPolicyResult added in v7.3.0

type LookupNetworkPolicyResult struct {
	CreateTime       string                       `pulumi:"createTime"`
	Description      string                       `pulumi:"description"`
	EdgeServicesCidr string                       `pulumi:"edgeServicesCidr"`
	ExternalIps      []GetNetworkPolicyExternalIp `pulumi:"externalIps"`
	// The provider-assigned unique ID for this managed resource.
	Id                           string                           `pulumi:"id"`
	InternetAccesses             []GetNetworkPolicyInternetAccess `pulumi:"internetAccesses"`
	Location                     string                           `pulumi:"location"`
	Name                         string                           `pulumi:"name"`
	Project                      *string                          `pulumi:"project"`
	Uid                          string                           `pulumi:"uid"`
	UpdateTime                   string                           `pulumi:"updateTime"`
	VmwareEngineNetwork          string                           `pulumi:"vmwareEngineNetwork"`
	VmwareEngineNetworkCanonical string                           `pulumi:"vmwareEngineNetworkCanonical"`
}

A collection of values returned by getNetworkPolicy.

func LookupNetworkPolicy added in v7.3.0

func LookupNetworkPolicy(ctx *pulumi.Context, args *LookupNetworkPolicyArgs, opts ...pulumi.InvokeOption) (*LookupNetworkPolicyResult, error)

Use this data source to get details about a network policy resource.

To get more information about network policy, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.networkPolicies)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupNetworkPolicy(ctx, &vmwareengine.LookupNetworkPolicyArgs{
			Name:     "my-network-policy",
			Location: "us-central1",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupNetworkPolicyResultOutput added in v7.3.0

type LookupNetworkPolicyResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getNetworkPolicy.

func LookupNetworkPolicyOutput added in v7.3.0

func (LookupNetworkPolicyResultOutput) CreateTime added in v7.3.0

func (LookupNetworkPolicyResultOutput) Description added in v7.3.0

func (LookupNetworkPolicyResultOutput) EdgeServicesCidr added in v7.3.0

func (LookupNetworkPolicyResultOutput) ElementType added in v7.3.0

func (LookupNetworkPolicyResultOutput) ExternalIps added in v7.3.0

func (LookupNetworkPolicyResultOutput) Id added in v7.3.0

The provider-assigned unique ID for this managed resource.

func (LookupNetworkPolicyResultOutput) InternetAccesses added in v7.3.0

func (LookupNetworkPolicyResultOutput) Location added in v7.3.0

func (LookupNetworkPolicyResultOutput) Name added in v7.3.0

func (LookupNetworkPolicyResultOutput) Project added in v7.3.0

func (LookupNetworkPolicyResultOutput) ToLookupNetworkPolicyResultOutput added in v7.3.0

func (o LookupNetworkPolicyResultOutput) ToLookupNetworkPolicyResultOutput() LookupNetworkPolicyResultOutput

func (LookupNetworkPolicyResultOutput) ToLookupNetworkPolicyResultOutputWithContext added in v7.3.0

func (o LookupNetworkPolicyResultOutput) ToLookupNetworkPolicyResultOutputWithContext(ctx context.Context) LookupNetworkPolicyResultOutput

func (LookupNetworkPolicyResultOutput) Uid added in v7.3.0

func (LookupNetworkPolicyResultOutput) UpdateTime added in v7.3.0

func (LookupNetworkPolicyResultOutput) VmwareEngineNetwork added in v7.3.0

func (o LookupNetworkPolicyResultOutput) VmwareEngineNetwork() pulumi.StringOutput

func (LookupNetworkPolicyResultOutput) VmwareEngineNetworkCanonical added in v7.3.0

func (o LookupNetworkPolicyResultOutput) VmwareEngineNetworkCanonical() pulumi.StringOutput

type LookupNetworkResult

type LookupNetworkResult struct {
	Description string `pulumi:"description"`
	// The provider-assigned unique ID for this managed resource.
	Id          string                 `pulumi:"id"`
	Location    string                 `pulumi:"location"`
	Name        string                 `pulumi:"name"`
	Project     *string                `pulumi:"project"`
	State       string                 `pulumi:"state"`
	Type        string                 `pulumi:"type"`
	Uid         string                 `pulumi:"uid"`
	VpcNetworks []GetNetworkVpcNetwork `pulumi:"vpcNetworks"`
}

A collection of values returned by getNetwork.

func LookupNetwork

func LookupNetwork(ctx *pulumi.Context, args *LookupNetworkArgs, opts ...pulumi.InvokeOption) (*LookupNetworkResult, error)

Use this data source to get details about a VMwareEngine network resource.

To get more information about VMwareEngine Network, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.vmwareEngineNetworks)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupNetwork(ctx, &vmwareengine.LookupNetworkArgs{
			Name:     "us-central1-default",
			Location: "us-central1",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupNetworkResultOutput

type LookupNetworkResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getNetwork.

func (LookupNetworkResultOutput) Description

func (LookupNetworkResultOutput) ElementType

func (LookupNetworkResultOutput) ElementType() reflect.Type

func (LookupNetworkResultOutput) Id

The provider-assigned unique ID for this managed resource.

func (LookupNetworkResultOutput) Location

func (LookupNetworkResultOutput) Name

func (LookupNetworkResultOutput) Project

func (LookupNetworkResultOutput) State

func (LookupNetworkResultOutput) ToLookupNetworkResultOutput

func (o LookupNetworkResultOutput) ToLookupNetworkResultOutput() LookupNetworkResultOutput

func (LookupNetworkResultOutput) ToLookupNetworkResultOutputWithContext

func (o LookupNetworkResultOutput) ToLookupNetworkResultOutputWithContext(ctx context.Context) LookupNetworkResultOutput

func (LookupNetworkResultOutput) Type

func (LookupNetworkResultOutput) Uid

func (LookupNetworkResultOutput) VpcNetworks

type LookupPrivateCloudArgs

type LookupPrivateCloudArgs struct {
	// Location of the resource.
	//
	// ***
	Location string `pulumi:"location"`
	// Name of the resource.
	Name string `pulumi:"name"`
	// The ID of the project in which the resource belongs. If it
	// is not provided, the provider project is used.
	Project *string `pulumi:"project"`
}

A collection of arguments for invoking getPrivateCloud.

type LookupPrivateCloudOutputArgs

type LookupPrivateCloudOutputArgs struct {
	// Location of the resource.
	//
	// ***
	Location pulumi.StringInput `pulumi:"location"`
	// Name of the resource.
	Name pulumi.StringInput `pulumi:"name"`
	// The ID of the project in which the resource belongs. If it
	// is not provided, the provider project is used.
	Project pulumi.StringPtrInput `pulumi:"project"`
}

A collection of arguments for invoking getPrivateCloud.

func (LookupPrivateCloudOutputArgs) ElementType

type LookupPrivateCloudResult

type LookupPrivateCloudResult struct {
	Description string               `pulumi:"description"`
	Hcxes       []GetPrivateCloudHcx `pulumi:"hcxes"`
	// The provider-assigned unique ID for this managed resource.
	Id                 string                             `pulumi:"id"`
	Location           string                             `pulumi:"location"`
	ManagementClusters []GetPrivateCloudManagementCluster `pulumi:"managementClusters"`
	Name               string                             `pulumi:"name"`
	NetworkConfigs     []GetPrivateCloudNetworkConfig     `pulumi:"networkConfigs"`
	Nsxes              []GetPrivateCloudNsx               `pulumi:"nsxes"`
	Project            *string                            `pulumi:"project"`
	State              string                             `pulumi:"state"`
	Type               string                             `pulumi:"type"`
	Uid                string                             `pulumi:"uid"`
	Vcenters           []GetPrivateCloudVcenter           `pulumi:"vcenters"`
}

A collection of values returned by getPrivateCloud.

func LookupPrivateCloud

func LookupPrivateCloud(ctx *pulumi.Context, args *LookupPrivateCloudArgs, opts ...pulumi.InvokeOption) (*LookupPrivateCloudResult, error)

Use this data source to get details about a private cloud resource.

To get more information about private cloud, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupPrivateCloud(ctx, &vmwareengine.LookupPrivateCloudArgs{
			Name:     "my-pc",
			Location: "us-central1-a",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupPrivateCloudResultOutput

type LookupPrivateCloudResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getPrivateCloud.

func (LookupPrivateCloudResultOutput) Description

func (LookupPrivateCloudResultOutput) ElementType

func (LookupPrivateCloudResultOutput) Hcxes

func (LookupPrivateCloudResultOutput) Id

The provider-assigned unique ID for this managed resource.

func (LookupPrivateCloudResultOutput) Location

func (LookupPrivateCloudResultOutput) ManagementClusters

func (LookupPrivateCloudResultOutput) Name

func (LookupPrivateCloudResultOutput) NetworkConfigs

func (LookupPrivateCloudResultOutput) Nsxes

func (LookupPrivateCloudResultOutput) Project

func (LookupPrivateCloudResultOutput) State

func (LookupPrivateCloudResultOutput) ToLookupPrivateCloudResultOutput

func (o LookupPrivateCloudResultOutput) ToLookupPrivateCloudResultOutput() LookupPrivateCloudResultOutput

func (LookupPrivateCloudResultOutput) ToLookupPrivateCloudResultOutputWithContext

func (o LookupPrivateCloudResultOutput) ToLookupPrivateCloudResultOutputWithContext(ctx context.Context) LookupPrivateCloudResultOutput

func (LookupPrivateCloudResultOutput) Type added in v7.4.0

func (LookupPrivateCloudResultOutput) Uid

func (LookupPrivateCloudResultOutput) Vcenters

type LookupSubnetArgs added in v7.4.0

type LookupSubnetArgs struct {
	// Name of the resource.
	// UserDefined subnets are named in the format of "service-n", where n ranges from 1 to 5.
	// Management subnets have arbitary names including "vmotion", "vsan", "system-management" etc. More details about subnet names can be found on the cloud console.
	Name string `pulumi:"name"`
	// The resource name of the private cloud that this subnet belongs.
	Parent string `pulumi:"parent"`
}

A collection of arguments for invoking getSubnet.

type LookupSubnetOutputArgs added in v7.4.0

type LookupSubnetOutputArgs struct {
	// Name of the resource.
	// UserDefined subnets are named in the format of "service-n", where n ranges from 1 to 5.
	// Management subnets have arbitary names including "vmotion", "vsan", "system-management" etc. More details about subnet names can be found on the cloud console.
	Name pulumi.StringInput `pulumi:"name"`
	// The resource name of the private cloud that this subnet belongs.
	Parent pulumi.StringInput `pulumi:"parent"`
}

A collection of arguments for invoking getSubnet.

func (LookupSubnetOutputArgs) ElementType added in v7.4.0

func (LookupSubnetOutputArgs) ElementType() reflect.Type

type LookupSubnetResult added in v7.4.0

type LookupSubnetResult struct {
	CreateTime        string                      `pulumi:"createTime"`
	DhcpAddressRanges []GetSubnetDhcpAddressRange `pulumi:"dhcpAddressRanges"`
	GatewayId         string                      `pulumi:"gatewayId"`
	GatewayIp         string                      `pulumi:"gatewayIp"`
	// The provider-assigned unique ID for this managed resource.
	Id             string `pulumi:"id"`
	IpCidrRange    string `pulumi:"ipCidrRange"`
	Name           string `pulumi:"name"`
	Parent         string `pulumi:"parent"`
	StandardConfig bool   `pulumi:"standardConfig"`
	State          string `pulumi:"state"`
	Type           string `pulumi:"type"`
	Uid            string `pulumi:"uid"`
	UpdateTime     string `pulumi:"updateTime"`
	VlanId         int    `pulumi:"vlanId"`
}

A collection of values returned by getSubnet.

func LookupSubnet added in v7.4.0

func LookupSubnet(ctx *pulumi.Context, args *LookupSubnetArgs, opts ...pulumi.InvokeOption) (*LookupSubnetResult, error)

Use this data source to get details about a subnet. Management subnets support only read operations and should be configured through this data source. User defined subnets can be configured using the resource as well as the datasource.

To get more information about private cloud subnet, see: * [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds.subnets)

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.LookupSubnet(ctx, &vmwareengine.LookupSubnetArgs{
			Name:   "service-1",
			Parent: "project/my-project/locations/us-west1-a/privateClouds/my-cloud",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}

```

type LookupSubnetResultOutput added in v7.4.0

type LookupSubnetResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getSubnet.

func LookupSubnetOutput added in v7.4.0

func LookupSubnetOutput(ctx *pulumi.Context, args LookupSubnetOutputArgs, opts ...pulumi.InvokeOption) LookupSubnetResultOutput

func (LookupSubnetResultOutput) CreateTime added in v7.4.0

func (LookupSubnetResultOutput) DhcpAddressRanges added in v7.4.0

func (LookupSubnetResultOutput) ElementType added in v7.4.0

func (LookupSubnetResultOutput) ElementType() reflect.Type

func (LookupSubnetResultOutput) GatewayId added in v7.4.0

func (LookupSubnetResultOutput) GatewayIp added in v7.4.0

func (LookupSubnetResultOutput) Id added in v7.4.0

The provider-assigned unique ID for this managed resource.

func (LookupSubnetResultOutput) IpCidrRange added in v7.4.0

func (LookupSubnetResultOutput) Name added in v7.4.0

func (LookupSubnetResultOutput) Parent added in v7.4.0

func (LookupSubnetResultOutput) StandardConfig added in v7.4.0

func (o LookupSubnetResultOutput) StandardConfig() pulumi.BoolOutput

func (LookupSubnetResultOutput) State added in v7.4.0

func (LookupSubnetResultOutput) ToLookupSubnetResultOutput added in v7.4.0

func (o LookupSubnetResultOutput) ToLookupSubnetResultOutput() LookupSubnetResultOutput

func (LookupSubnetResultOutput) ToLookupSubnetResultOutputWithContext added in v7.4.0

func (o LookupSubnetResultOutput) ToLookupSubnetResultOutputWithContext(ctx context.Context) LookupSubnetResultOutput

func (LookupSubnetResultOutput) Type added in v7.4.0

func (LookupSubnetResultOutput) Uid added in v7.4.0

func (LookupSubnetResultOutput) UpdateTime added in v7.4.0

func (LookupSubnetResultOutput) VlanId added in v7.4.0

type Network

type Network struct {
	pulumi.CustomResourceState

	// User-provided description for this VMware Engine network.
	Description pulumi.StringPtrOutput `pulumi:"description"`
	// The location where the VMwareEngineNetwork should reside.
	Location pulumi.StringOutput `pulumi:"location"`
	// The ID of the VMwareEngineNetwork.
	//
	// ***
	Name pulumi.StringOutput `pulumi:"name"`
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringOutput `pulumi:"project"`
	// State of the VMware Engine network.
	State pulumi.StringOutput `pulumi:"state"`
	// VMware Engine network type.
	// Possible values are: `LEGACY`, `STANDARD`.
	Type pulumi.StringOutput `pulumi:"type"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
	// VMware Engine service VPC networks that provide connectivity from a private cloud to customer projects,
	// the internet, and other Google Cloud services.
	// Structure is documented below.
	VpcNetworks NetworkVpcNetworkArrayOutput `pulumi:"vpcNetworks"`
}

Provides connectivity for VMware Engine private clouds.

To get more information about Network, see:

* [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.vmwareEngineNetworks)

## Example Usage

### Vmware Engine Network Standard

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "vmw-engine-network", &vmwareengine.NetworkArgs{
			Name:        pulumi.String("standard-nw"),
			Location:    pulumi.String("global"),
			Type:        pulumi.String("STANDARD"),
			Description: pulumi.String("VMwareEngine standard network sample"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}

``` ### Vmware Engine Network Legacy

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi-time/sdk/go/time"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// there can be only 1 Legacy network per region for a given project,
		// so creating new project for isolation in CI.
		acceptanceProject, err := organizations.NewProject(ctx, "acceptance", &organizations.ProjectArgs{
			Name:           pulumi.String("vmw-proj"),
			ProjectId:      pulumi.String("vmw-proj"),
			OrgId:          pulumi.String("123456789"),
			BillingAccount: pulumi.String("000000-0000000-0000000-000000"),
		})
		if err != nil {
			return err
		}
		acceptance, err := projects.NewService(ctx, "acceptance", &projects.ServiceArgs{
			Project: acceptanceProject.ProjectId,
			Service: pulumi.String("vmwareengine.googleapis.com"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetwork(ctx, "vmw-engine-network", &vmwareengine.NetworkArgs{
			Project:     acceptance.Project,
			Name:        pulumi.String("us-west1-default"),
			Location:    pulumi.String("us-west1"),
			Type:        pulumi.String("LEGACY"),
			Description: pulumi.String("VMwareEngine legacy network sample"),
		})
		if err != nil {
			return err
		}
		_, err = time.NewSleep(ctx, "wait_60_seconds", &time.SleepArgs{
			CreateDuration: "60s",
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

Network can be imported using any of these accepted formats:

* `projects/{{project}}/locations/{{location}}/vmwareEngineNetworks/{{name}}`

* `{{project}}/{{location}}/{{name}}`

* `{{location}}/{{name}}`

When using the `pulumi import` command, Network can be imported using one of the formats above. For example:

```sh $ pulumi import gcp:vmwareengine/network:Network default projects/{{project}}/locations/{{location}}/vmwareEngineNetworks/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/network:Network default {{project}}/{{location}}/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/network:Network default {{location}}/{{name}} ```

func GetNetwork

func GetNetwork(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *NetworkState, opts ...pulumi.ResourceOption) (*Network, error)

GetNetwork gets an existing Network resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewNetwork

func NewNetwork(ctx *pulumi.Context,
	name string, args *NetworkArgs, opts ...pulumi.ResourceOption) (*Network, error)

NewNetwork registers a new resource with the given unique name, arguments, and options.

func (*Network) ElementType

func (*Network) ElementType() reflect.Type

func (*Network) ToNetworkOutput

func (i *Network) ToNetworkOutput() NetworkOutput

func (*Network) ToNetworkOutputWithContext

func (i *Network) ToNetworkOutputWithContext(ctx context.Context) NetworkOutput

type NetworkArgs

type NetworkArgs struct {
	// User-provided description for this VMware Engine network.
	Description pulumi.StringPtrInput
	// The location where the VMwareEngineNetwork should reside.
	Location pulumi.StringInput
	// The ID of the VMwareEngineNetwork.
	//
	// ***
	Name pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
	// VMware Engine network type.
	// Possible values are: `LEGACY`, `STANDARD`.
	Type pulumi.StringInput
}

The set of arguments for constructing a Network resource.

func (NetworkArgs) ElementType

func (NetworkArgs) ElementType() reflect.Type

type NetworkArray

type NetworkArray []NetworkInput

func (NetworkArray) ElementType

func (NetworkArray) ElementType() reflect.Type

func (NetworkArray) ToNetworkArrayOutput

func (i NetworkArray) ToNetworkArrayOutput() NetworkArrayOutput

func (NetworkArray) ToNetworkArrayOutputWithContext

func (i NetworkArray) ToNetworkArrayOutputWithContext(ctx context.Context) NetworkArrayOutput

type NetworkArrayInput

type NetworkArrayInput interface {
	pulumi.Input

	ToNetworkArrayOutput() NetworkArrayOutput
	ToNetworkArrayOutputWithContext(context.Context) NetworkArrayOutput
}

NetworkArrayInput is an input type that accepts NetworkArray and NetworkArrayOutput values. You can construct a concrete instance of `NetworkArrayInput` via:

NetworkArray{ NetworkArgs{...} }

type NetworkArrayOutput

type NetworkArrayOutput struct{ *pulumi.OutputState }

func (NetworkArrayOutput) ElementType

func (NetworkArrayOutput) ElementType() reflect.Type

func (NetworkArrayOutput) Index

func (NetworkArrayOutput) ToNetworkArrayOutput

func (o NetworkArrayOutput) ToNetworkArrayOutput() NetworkArrayOutput

func (NetworkArrayOutput) ToNetworkArrayOutputWithContext

func (o NetworkArrayOutput) ToNetworkArrayOutputWithContext(ctx context.Context) NetworkArrayOutput

type NetworkInput

type NetworkInput interface {
	pulumi.Input

	ToNetworkOutput() NetworkOutput
	ToNetworkOutputWithContext(ctx context.Context) NetworkOutput
}

type NetworkMap

type NetworkMap map[string]NetworkInput

func (NetworkMap) ElementType

func (NetworkMap) ElementType() reflect.Type

func (NetworkMap) ToNetworkMapOutput

func (i NetworkMap) ToNetworkMapOutput() NetworkMapOutput

func (NetworkMap) ToNetworkMapOutputWithContext

func (i NetworkMap) ToNetworkMapOutputWithContext(ctx context.Context) NetworkMapOutput

type NetworkMapInput

type NetworkMapInput interface {
	pulumi.Input

	ToNetworkMapOutput() NetworkMapOutput
	ToNetworkMapOutputWithContext(context.Context) NetworkMapOutput
}

NetworkMapInput is an input type that accepts NetworkMap and NetworkMapOutput values. You can construct a concrete instance of `NetworkMapInput` via:

NetworkMap{ "key": NetworkArgs{...} }

type NetworkMapOutput

type NetworkMapOutput struct{ *pulumi.OutputState }

func (NetworkMapOutput) ElementType

func (NetworkMapOutput) ElementType() reflect.Type

func (NetworkMapOutput) MapIndex

func (NetworkMapOutput) ToNetworkMapOutput

func (o NetworkMapOutput) ToNetworkMapOutput() NetworkMapOutput

func (NetworkMapOutput) ToNetworkMapOutputWithContext

func (o NetworkMapOutput) ToNetworkMapOutputWithContext(ctx context.Context) NetworkMapOutput

type NetworkOutput

type NetworkOutput struct{ *pulumi.OutputState }

func (NetworkOutput) Description

func (o NetworkOutput) Description() pulumi.StringPtrOutput

User-provided description for this VMware Engine network.

func (NetworkOutput) ElementType

func (NetworkOutput) ElementType() reflect.Type

func (NetworkOutput) Location

func (o NetworkOutput) Location() pulumi.StringOutput

The location where the VMwareEngineNetwork should reside.

func (NetworkOutput) Name

The ID of the VMwareEngineNetwork.

***

func (NetworkOutput) Project

func (o NetworkOutput) Project() pulumi.StringOutput

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

func (NetworkOutput) State

func (o NetworkOutput) State() pulumi.StringOutput

State of the VMware Engine network.

func (NetworkOutput) ToNetworkOutput

func (o NetworkOutput) ToNetworkOutput() NetworkOutput

func (NetworkOutput) ToNetworkOutputWithContext

func (o NetworkOutput) ToNetworkOutputWithContext(ctx context.Context) NetworkOutput

func (NetworkOutput) Type

VMware Engine network type. Possible values are: `LEGACY`, `STANDARD`.

func (NetworkOutput) Uid

System-generated unique identifier for the resource.

func (NetworkOutput) VpcNetworks

VMware Engine service VPC networks that provide connectivity from a private cloud to customer projects, the internet, and other Google Cloud services. Structure is documented below.

type NetworkPeering added in v7.3.0

type NetworkPeering struct {
	pulumi.CustomResourceState

	// 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".
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// User-provided description for this network peering.
	Description pulumi.StringPtrOutput `pulumi:"description"`
	// True if custom routes are exported to the peered network; false otherwise.
	ExportCustomRoutes pulumi.BoolPtrOutput `pulumi:"exportCustomRoutes"`
	// True if all subnet routes with a public IP address range are exported; false otherwise.
	ExportCustomRoutesWithPublicIp pulumi.BoolPtrOutput `pulumi:"exportCustomRoutesWithPublicIp"`
	// True if custom routes are imported from the peered network; false otherwise.
	ImportCustomRoutes pulumi.BoolPtrOutput `pulumi:"importCustomRoutes"`
	// True if custom routes are imported from the peered network; false otherwise.
	ImportCustomRoutesWithPublicIp pulumi.BoolPtrOutput `pulumi:"importCustomRoutesWithPublicIp"`
	// The ID of the Network Peering.
	//
	// ***
	Name pulumi.StringOutput `pulumi:"name"`
	// The relative resource name of the network to peer with a standard VMware Engine network.
	// The provided network can be a consumer VPC network or another standard VMware Engine network.
	PeerNetwork pulumi.StringOutput `pulumi:"peerNetwork"`
	// The type of the network to peer with the VMware Engine network.
	// Possible values are: `STANDARD`, `VMWARE_ENGINE_NETWORK`, `PRIVATE_SERVICES_ACCESS`, `NETAPP_CLOUD_VOLUMES`, `THIRD_PARTY_SERVICE`, `DELL_POWERSCALE`.
	PeerNetworkType pulumi.StringOutput `pulumi:"peerNetworkType"`
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringOutput `pulumi:"project"`
	// State of the network peering.
	// This field has a value of 'ACTIVE' when there's a matching configuration in the peer network.
	// New values may be added to this enum when appropriate.
	State pulumi.StringOutput `pulumi:"state"`
	// Details about the current state of the network peering.
	StateDetails pulumi.StringOutput `pulumi:"stateDetails"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
	// 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".
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
	// The relative resource name of the VMware Engine network. Specify the name in the following form:
	// projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project}
	// can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringOutput `pulumi:"vmwareEngineNetwork"`
	// The canonical name of the VMware Engine network in the form:
	// projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical pulumi.StringOutput `pulumi:"vmwareEngineNetworkCanonical"`
}

Represents a network peering resource. Network peerings are global resources.

To get more information about NetworkPeering, see:

* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/networks/addPeering)

## Example Usage

### Vmware Engine Network Peering Ven

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "network-peering-nw", &vmwareengine.NetworkArgs{
			Name:     pulumi.String("default-np-nw"),
			Location: pulumi.String("global"),
			Type:     pulumi.String("STANDARD"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetwork(ctx, "network-peering-peer-nw", &vmwareengine.NetworkArgs{
			Name:     pulumi.String("peer-np-nw"),
			Location: pulumi.String("global"),
			Type:     pulumi.String("STANDARD"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetworkPeering(ctx, "vmw-engine-network-peering", &vmwareengine.NetworkPeeringArgs{
			Name:                           pulumi.String("sample-network-peering"),
			Description:                    pulumi.String("Sample description"),
			VmwareEngineNetwork:            network_peering_nw.ID(),
			PeerNetwork:                    network_peering_peer_nw.ID(),
			PeerNetworkType:                pulumi.String("VMWARE_ENGINE_NETWORK"),
			ExportCustomRoutes:             pulumi.Bool(false),
			ImportCustomRoutes:             pulumi.Bool(false),
			ExportCustomRoutesWithPublicIp: pulumi.Bool(false),
			ImportCustomRoutesWithPublicIp: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}

``` ### Vmware Engine Network Peering Standard

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewNetwork(ctx, "network-peering-vpc", &compute.NetworkArgs{
			Name: pulumi.String("default-vpc"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetwork(ctx, "network-peering-standard-nw", &vmwareengine.NetworkArgs{
			Name:     pulumi.String("default-standard-nw-np"),
			Location: pulumi.String("global"),
			Type:     pulumi.String("STANDARD"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetworkPeering(ctx, "vmw-engine-network-peering", &vmwareengine.NetworkPeeringArgs{
			Name:                pulumi.String("sample-network-peering"),
			Description:         pulumi.String("Sample description"),
			PeerNetwork:         network_peering_vpc.ID(),
			PeerNetworkType:     pulumi.String("STANDARD"),
			VmwareEngineNetwork: network_peering_standard_nw.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

NetworkPeering can be imported using any of these accepted formats:

* `projects/{{project}}/locations/global/networkPeerings/{{name}}`

* `{{project}}/{{name}}`

* `{{name}}`

When using the `pulumi import` command, NetworkPeering can be imported using one of the formats above. For example:

```sh $ pulumi import gcp:vmwareengine/networkPeering:NetworkPeering default projects/{{project}}/locations/global/networkPeerings/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/networkPeering:NetworkPeering default {{project}}/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/networkPeering:NetworkPeering default {{name}} ```

func GetNetworkPeering added in v7.3.0

func GetNetworkPeering(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *NetworkPeeringState, opts ...pulumi.ResourceOption) (*NetworkPeering, error)

GetNetworkPeering gets an existing NetworkPeering resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewNetworkPeering added in v7.3.0

func NewNetworkPeering(ctx *pulumi.Context,
	name string, args *NetworkPeeringArgs, opts ...pulumi.ResourceOption) (*NetworkPeering, error)

NewNetworkPeering registers a new resource with the given unique name, arguments, and options.

func (*NetworkPeering) ElementType added in v7.3.0

func (*NetworkPeering) ElementType() reflect.Type

func (*NetworkPeering) ToNetworkPeeringOutput added in v7.3.0

func (i *NetworkPeering) ToNetworkPeeringOutput() NetworkPeeringOutput

func (*NetworkPeering) ToNetworkPeeringOutputWithContext added in v7.3.0

func (i *NetworkPeering) ToNetworkPeeringOutputWithContext(ctx context.Context) NetworkPeeringOutput

type NetworkPeeringArgs added in v7.3.0

type NetworkPeeringArgs struct {
	// User-provided description for this network peering.
	Description pulumi.StringPtrInput
	// True if custom routes are exported to the peered network; false otherwise.
	ExportCustomRoutes pulumi.BoolPtrInput
	// True if all subnet routes with a public IP address range are exported; false otherwise.
	ExportCustomRoutesWithPublicIp pulumi.BoolPtrInput
	// True if custom routes are imported from the peered network; false otherwise.
	ImportCustomRoutes pulumi.BoolPtrInput
	// True if custom routes are imported from the peered network; false otherwise.
	ImportCustomRoutesWithPublicIp pulumi.BoolPtrInput
	// The ID of the Network Peering.
	//
	// ***
	Name pulumi.StringPtrInput
	// The relative resource name of the network to peer with a standard VMware Engine network.
	// The provided network can be a consumer VPC network or another standard VMware Engine network.
	PeerNetwork pulumi.StringInput
	// The type of the network to peer with the VMware Engine network.
	// Possible values are: `STANDARD`, `VMWARE_ENGINE_NETWORK`, `PRIVATE_SERVICES_ACCESS`, `NETAPP_CLOUD_VOLUMES`, `THIRD_PARTY_SERVICE`, `DELL_POWERSCALE`.
	PeerNetworkType pulumi.StringInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
	// The relative resource name of the VMware Engine network. Specify the name in the following form:
	// projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project}
	// can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringInput
}

The set of arguments for constructing a NetworkPeering resource.

func (NetworkPeeringArgs) ElementType added in v7.3.0

func (NetworkPeeringArgs) ElementType() reflect.Type

type NetworkPeeringArray added in v7.3.0

type NetworkPeeringArray []NetworkPeeringInput

func (NetworkPeeringArray) ElementType added in v7.3.0

func (NetworkPeeringArray) ElementType() reflect.Type

func (NetworkPeeringArray) ToNetworkPeeringArrayOutput added in v7.3.0

func (i NetworkPeeringArray) ToNetworkPeeringArrayOutput() NetworkPeeringArrayOutput

func (NetworkPeeringArray) ToNetworkPeeringArrayOutputWithContext added in v7.3.0

func (i NetworkPeeringArray) ToNetworkPeeringArrayOutputWithContext(ctx context.Context) NetworkPeeringArrayOutput

type NetworkPeeringArrayInput added in v7.3.0

type NetworkPeeringArrayInput interface {
	pulumi.Input

	ToNetworkPeeringArrayOutput() NetworkPeeringArrayOutput
	ToNetworkPeeringArrayOutputWithContext(context.Context) NetworkPeeringArrayOutput
}

NetworkPeeringArrayInput is an input type that accepts NetworkPeeringArray and NetworkPeeringArrayOutput values. You can construct a concrete instance of `NetworkPeeringArrayInput` via:

NetworkPeeringArray{ NetworkPeeringArgs{...} }

type NetworkPeeringArrayOutput added in v7.3.0

type NetworkPeeringArrayOutput struct{ *pulumi.OutputState }

func (NetworkPeeringArrayOutput) ElementType added in v7.3.0

func (NetworkPeeringArrayOutput) ElementType() reflect.Type

func (NetworkPeeringArrayOutput) Index added in v7.3.0

func (NetworkPeeringArrayOutput) ToNetworkPeeringArrayOutput added in v7.3.0

func (o NetworkPeeringArrayOutput) ToNetworkPeeringArrayOutput() NetworkPeeringArrayOutput

func (NetworkPeeringArrayOutput) ToNetworkPeeringArrayOutputWithContext added in v7.3.0

func (o NetworkPeeringArrayOutput) ToNetworkPeeringArrayOutputWithContext(ctx context.Context) NetworkPeeringArrayOutput

type NetworkPeeringInput added in v7.3.0

type NetworkPeeringInput interface {
	pulumi.Input

	ToNetworkPeeringOutput() NetworkPeeringOutput
	ToNetworkPeeringOutputWithContext(ctx context.Context) NetworkPeeringOutput
}

type NetworkPeeringMap added in v7.3.0

type NetworkPeeringMap map[string]NetworkPeeringInput

func (NetworkPeeringMap) ElementType added in v7.3.0

func (NetworkPeeringMap) ElementType() reflect.Type

func (NetworkPeeringMap) ToNetworkPeeringMapOutput added in v7.3.0

func (i NetworkPeeringMap) ToNetworkPeeringMapOutput() NetworkPeeringMapOutput

func (NetworkPeeringMap) ToNetworkPeeringMapOutputWithContext added in v7.3.0

func (i NetworkPeeringMap) ToNetworkPeeringMapOutputWithContext(ctx context.Context) NetworkPeeringMapOutput

type NetworkPeeringMapInput added in v7.3.0

type NetworkPeeringMapInput interface {
	pulumi.Input

	ToNetworkPeeringMapOutput() NetworkPeeringMapOutput
	ToNetworkPeeringMapOutputWithContext(context.Context) NetworkPeeringMapOutput
}

NetworkPeeringMapInput is an input type that accepts NetworkPeeringMap and NetworkPeeringMapOutput values. You can construct a concrete instance of `NetworkPeeringMapInput` via:

NetworkPeeringMap{ "key": NetworkPeeringArgs{...} }

type NetworkPeeringMapOutput added in v7.3.0

type NetworkPeeringMapOutput struct{ *pulumi.OutputState }

func (NetworkPeeringMapOutput) ElementType added in v7.3.0

func (NetworkPeeringMapOutput) ElementType() reflect.Type

func (NetworkPeeringMapOutput) MapIndex added in v7.3.0

func (NetworkPeeringMapOutput) ToNetworkPeeringMapOutput added in v7.3.0

func (o NetworkPeeringMapOutput) ToNetworkPeeringMapOutput() NetworkPeeringMapOutput

func (NetworkPeeringMapOutput) ToNetworkPeeringMapOutputWithContext added in v7.3.0

func (o NetworkPeeringMapOutput) ToNetworkPeeringMapOutputWithContext(ctx context.Context) NetworkPeeringMapOutput

type NetworkPeeringOutput added in v7.3.0

type NetworkPeeringOutput struct{ *pulumi.OutputState }

func (NetworkPeeringOutput) CreateTime added in v7.3.0

func (o NetworkPeeringOutput) CreateTime() pulumi.StringOutput

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".

func (NetworkPeeringOutput) Description added in v7.3.0

User-provided description for this network peering.

func (NetworkPeeringOutput) ElementType added in v7.3.0

func (NetworkPeeringOutput) ElementType() reflect.Type

func (NetworkPeeringOutput) ExportCustomRoutes added in v7.3.0

func (o NetworkPeeringOutput) ExportCustomRoutes() pulumi.BoolPtrOutput

True if custom routes are exported to the peered network; false otherwise.

func (NetworkPeeringOutput) ExportCustomRoutesWithPublicIp added in v7.3.0

func (o NetworkPeeringOutput) ExportCustomRoutesWithPublicIp() pulumi.BoolPtrOutput

True if all subnet routes with a public IP address range are exported; false otherwise.

func (NetworkPeeringOutput) ImportCustomRoutes added in v7.3.0

func (o NetworkPeeringOutput) ImportCustomRoutes() pulumi.BoolPtrOutput

True if custom routes are imported from the peered network; false otherwise.

func (NetworkPeeringOutput) ImportCustomRoutesWithPublicIp added in v7.3.0

func (o NetworkPeeringOutput) ImportCustomRoutesWithPublicIp() pulumi.BoolPtrOutput

True if custom routes are imported from the peered network; false otherwise.

func (NetworkPeeringOutput) Name added in v7.3.0

The ID of the Network Peering.

***

func (NetworkPeeringOutput) PeerNetwork added in v7.3.0

func (o NetworkPeeringOutput) PeerNetwork() pulumi.StringOutput

The relative resource name of the network to peer with a standard VMware Engine network. The provided network can be a consumer VPC network or another standard VMware Engine network.

func (NetworkPeeringOutput) PeerNetworkType added in v7.3.0

func (o NetworkPeeringOutput) PeerNetworkType() pulumi.StringOutput

The type of the network to peer with the VMware Engine network. Possible values are: `STANDARD`, `VMWARE_ENGINE_NETWORK`, `PRIVATE_SERVICES_ACCESS`, `NETAPP_CLOUD_VOLUMES`, `THIRD_PARTY_SERVICE`, `DELL_POWERSCALE`.

func (NetworkPeeringOutput) Project added in v7.3.0

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

func (NetworkPeeringOutput) State added in v7.3.0

State of the network peering. This field has a value of 'ACTIVE' when there's a matching configuration in the peer network. New values may be added to this enum when appropriate.

func (NetworkPeeringOutput) StateDetails added in v7.3.0

func (o NetworkPeeringOutput) StateDetails() pulumi.StringOutput

Details about the current state of the network peering.

func (NetworkPeeringOutput) ToNetworkPeeringOutput added in v7.3.0

func (o NetworkPeeringOutput) ToNetworkPeeringOutput() NetworkPeeringOutput

func (NetworkPeeringOutput) ToNetworkPeeringOutputWithContext added in v7.3.0

func (o NetworkPeeringOutput) ToNetworkPeeringOutputWithContext(ctx context.Context) NetworkPeeringOutput

func (NetworkPeeringOutput) Uid added in v7.3.0

System-generated unique identifier for the resource.

func (NetworkPeeringOutput) UpdateTime added in v7.3.0

func (o NetworkPeeringOutput) UpdateTime() pulumi.StringOutput

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".

func (NetworkPeeringOutput) VmwareEngineNetwork added in v7.3.0

func (o NetworkPeeringOutput) VmwareEngineNetwork() pulumi.StringOutput

The relative resource name of the VMware Engine network. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project} can either be a project number or a project ID.

func (NetworkPeeringOutput) VmwareEngineNetworkCanonical added in v7.3.0

func (o NetworkPeeringOutput) VmwareEngineNetworkCanonical() pulumi.StringOutput

The canonical name of the VMware Engine network in the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}

type NetworkPeeringState added in v7.3.0

type NetworkPeeringState struct {
	// 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".
	CreateTime pulumi.StringPtrInput
	// User-provided description for this network peering.
	Description pulumi.StringPtrInput
	// True if custom routes are exported to the peered network; false otherwise.
	ExportCustomRoutes pulumi.BoolPtrInput
	// True if all subnet routes with a public IP address range are exported; false otherwise.
	ExportCustomRoutesWithPublicIp pulumi.BoolPtrInput
	// True if custom routes are imported from the peered network; false otherwise.
	ImportCustomRoutes pulumi.BoolPtrInput
	// True if custom routes are imported from the peered network; false otherwise.
	ImportCustomRoutesWithPublicIp pulumi.BoolPtrInput
	// The ID of the Network Peering.
	//
	// ***
	Name pulumi.StringPtrInput
	// The relative resource name of the network to peer with a standard VMware Engine network.
	// The provided network can be a consumer VPC network or another standard VMware Engine network.
	PeerNetwork pulumi.StringPtrInput
	// The type of the network to peer with the VMware Engine network.
	// Possible values are: `STANDARD`, `VMWARE_ENGINE_NETWORK`, `PRIVATE_SERVICES_ACCESS`, `NETAPP_CLOUD_VOLUMES`, `THIRD_PARTY_SERVICE`, `DELL_POWERSCALE`.
	PeerNetworkType pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
	// State of the network peering.
	// This field has a value of 'ACTIVE' when there's a matching configuration in the peer network.
	// New values may be added to this enum when appropriate.
	State pulumi.StringPtrInput
	// Details about the current state of the network peering.
	StateDetails pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
	// 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".
	UpdateTime pulumi.StringPtrInput
	// The relative resource name of the VMware Engine network. Specify the name in the following form:
	// projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project}
	// can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringPtrInput
	// The canonical name of the VMware Engine network in the form:
	// projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical pulumi.StringPtrInput
}

func (NetworkPeeringState) ElementType added in v7.3.0

func (NetworkPeeringState) ElementType() reflect.Type

type NetworkPolicy added in v7.3.0

type NetworkPolicy struct {
	pulumi.CustomResourceState

	// 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".
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// User-provided description for this network policy.
	Description pulumi.StringPtrOutput `pulumi:"description"`
	// IP address range in CIDR notation used to create internet access and external IP access.
	// An RFC 1918 CIDR block, with a "/26" prefix, is required. The range cannot overlap with any
	// prefixes either in the consumer VPC network or in use by the private clouds attached to that VPC network.
	EdgeServicesCidr pulumi.StringOutput `pulumi:"edgeServicesCidr"`
	// Network service that allows External IP addresses to be assigned to VMware workloads.
	// This service can only be enabled when internetAccess is also enabled.
	// Structure is documented below.
	ExternalIp NetworkPolicyExternalIpOutput `pulumi:"externalIp"`
	// Network service that allows VMware workloads to access the internet.
	// Structure is documented below.
	InternetAccess NetworkPolicyInternetAccessOutput `pulumi:"internetAccess"`
	// The resource name of the location (region) to create the new network policy 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-central1
	Location pulumi.StringOutput `pulumi:"location"`
	// The ID of the Network Policy.
	//
	// ***
	Name pulumi.StringOutput `pulumi:"name"`
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringOutput `pulumi:"project"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
	// 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".
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
	// The relative resource name of the VMware Engine network. Specify the name in the following form:
	// projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project}
	// can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringOutput `pulumi:"vmwareEngineNetwork"`
	// The canonical name of the VMware Engine network in the form:
	// projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical pulumi.StringOutput `pulumi:"vmwareEngineNetworkCanonical"`
}

Represents a network policy resource. Network policies are regional resources.

To get more information about NetworkPolicy, see:

* [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.networkPolicies)

## Example Usage

### Vmware Engine Network Policy Basic

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "network-policy-nw", &vmwareengine.NetworkArgs{
			Name:        pulumi.String("standard-nw"),
			Location:    pulumi.String("global"),
			Type:        pulumi.String("STANDARD"),
			Description: pulumi.String("VMwareEngine standard network sample"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetworkPolicy(ctx, "vmw-engine-network-policy", &vmwareengine.NetworkPolicyArgs{
			Location:            pulumi.String("us-west1"),
			Name:                pulumi.String("sample-network-policy"),
			EdgeServicesCidr:    pulumi.String("192.168.30.0/26"),
			VmwareEngineNetwork: network_policy_nw.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}

``` ### Vmware Engine Network Policy Full

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "network-policy-nw", &vmwareengine.NetworkArgs{
			Name:        pulumi.String("standard-full-nw"),
			Location:    pulumi.String("global"),
			Type:        pulumi.String("STANDARD"),
			Description: pulumi.String("VMwareEngine standard network sample"),
		})
		if err != nil {
			return err
		}
		_, err = vmwareengine.NewNetworkPolicy(ctx, "vmw-engine-network-policy", &vmwareengine.NetworkPolicyArgs{
			Location:            pulumi.String("us-west1"),
			Name:                pulumi.String("sample-network-policy-full"),
			EdgeServicesCidr:    pulumi.String("192.168.30.0/26"),
			VmwareEngineNetwork: network_policy_nw.ID(),
			Description:         pulumi.String("Sample Network Policy"),
			InternetAccess: &vmwareengine.NetworkPolicyInternetAccessArgs{
				Enabled: pulumi.Bool(true),
			},
			ExternalIp: &vmwareengine.NetworkPolicyExternalIpArgs{
				Enabled: pulumi.Bool(true),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

NetworkPolicy can be imported using any of these accepted formats:

* `projects/{{project}}/locations/{{location}}/networkPolicies/{{name}}`

* `{{project}}/{{location}}/{{name}}`

* `{{location}}/{{name}}`

When using the `pulumi import` command, NetworkPolicy can be imported using one of the formats above. For example:

```sh $ pulumi import gcp:vmwareengine/networkPolicy:NetworkPolicy default projects/{{project}}/locations/{{location}}/networkPolicies/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/networkPolicy:NetworkPolicy default {{project}}/{{location}}/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/networkPolicy:NetworkPolicy default {{location}}/{{name}} ```

func GetNetworkPolicy added in v7.3.0

func GetNetworkPolicy(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *NetworkPolicyState, opts ...pulumi.ResourceOption) (*NetworkPolicy, error)

GetNetworkPolicy gets an existing NetworkPolicy resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewNetworkPolicy added in v7.3.0

func NewNetworkPolicy(ctx *pulumi.Context,
	name string, args *NetworkPolicyArgs, opts ...pulumi.ResourceOption) (*NetworkPolicy, error)

NewNetworkPolicy registers a new resource with the given unique name, arguments, and options.

func (*NetworkPolicy) ElementType added in v7.3.0

func (*NetworkPolicy) ElementType() reflect.Type

func (*NetworkPolicy) ToNetworkPolicyOutput added in v7.3.0

func (i *NetworkPolicy) ToNetworkPolicyOutput() NetworkPolicyOutput

func (*NetworkPolicy) ToNetworkPolicyOutputWithContext added in v7.3.0

func (i *NetworkPolicy) ToNetworkPolicyOutputWithContext(ctx context.Context) NetworkPolicyOutput

type NetworkPolicyArgs added in v7.3.0

type NetworkPolicyArgs struct {
	// User-provided description for this network policy.
	Description pulumi.StringPtrInput
	// IP address range in CIDR notation used to create internet access and external IP access.
	// An RFC 1918 CIDR block, with a "/26" prefix, is required. The range cannot overlap with any
	// prefixes either in the consumer VPC network or in use by the private clouds attached to that VPC network.
	EdgeServicesCidr pulumi.StringInput
	// Network service that allows External IP addresses to be assigned to VMware workloads.
	// This service can only be enabled when internetAccess is also enabled.
	// Structure is documented below.
	ExternalIp NetworkPolicyExternalIpPtrInput
	// Network service that allows VMware workloads to access the internet.
	// Structure is documented below.
	InternetAccess NetworkPolicyInternetAccessPtrInput
	// The resource name of the location (region) to create the new network policy 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-central1
	Location pulumi.StringInput
	// The ID of the Network Policy.
	//
	// ***
	Name pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
	// The relative resource name of the VMware Engine network. Specify the name in the following form:
	// projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project}
	// can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringInput
}

The set of arguments for constructing a NetworkPolicy resource.

func (NetworkPolicyArgs) ElementType added in v7.3.0

func (NetworkPolicyArgs) ElementType() reflect.Type

type NetworkPolicyArray added in v7.3.0

type NetworkPolicyArray []NetworkPolicyInput

func (NetworkPolicyArray) ElementType added in v7.3.0

func (NetworkPolicyArray) ElementType() reflect.Type

func (NetworkPolicyArray) ToNetworkPolicyArrayOutput added in v7.3.0

func (i NetworkPolicyArray) ToNetworkPolicyArrayOutput() NetworkPolicyArrayOutput

func (NetworkPolicyArray) ToNetworkPolicyArrayOutputWithContext added in v7.3.0

func (i NetworkPolicyArray) ToNetworkPolicyArrayOutputWithContext(ctx context.Context) NetworkPolicyArrayOutput

type NetworkPolicyArrayInput added in v7.3.0

type NetworkPolicyArrayInput interface {
	pulumi.Input

	ToNetworkPolicyArrayOutput() NetworkPolicyArrayOutput
	ToNetworkPolicyArrayOutputWithContext(context.Context) NetworkPolicyArrayOutput
}

NetworkPolicyArrayInput is an input type that accepts NetworkPolicyArray and NetworkPolicyArrayOutput values. You can construct a concrete instance of `NetworkPolicyArrayInput` via:

NetworkPolicyArray{ NetworkPolicyArgs{...} }

type NetworkPolicyArrayOutput added in v7.3.0

type NetworkPolicyArrayOutput struct{ *pulumi.OutputState }

func (NetworkPolicyArrayOutput) ElementType added in v7.3.0

func (NetworkPolicyArrayOutput) ElementType() reflect.Type

func (NetworkPolicyArrayOutput) Index added in v7.3.0

func (NetworkPolicyArrayOutput) ToNetworkPolicyArrayOutput added in v7.3.0

func (o NetworkPolicyArrayOutput) ToNetworkPolicyArrayOutput() NetworkPolicyArrayOutput

func (NetworkPolicyArrayOutput) ToNetworkPolicyArrayOutputWithContext added in v7.3.0

func (o NetworkPolicyArrayOutput) ToNetworkPolicyArrayOutputWithContext(ctx context.Context) NetworkPolicyArrayOutput

type NetworkPolicyExternalIp added in v7.3.0

type NetworkPolicyExternalIp struct {
	// True if the service is enabled; false otherwise.
	Enabled *bool `pulumi:"enabled"`
	// (Output)
	// State of the service. New values may be added to this enum when appropriate.
	State *string `pulumi:"state"`
}

type NetworkPolicyExternalIpArgs added in v7.3.0

type NetworkPolicyExternalIpArgs struct {
	// True if the service is enabled; false otherwise.
	Enabled pulumi.BoolPtrInput `pulumi:"enabled"`
	// (Output)
	// State of the service. New values may be added to this enum when appropriate.
	State pulumi.StringPtrInput `pulumi:"state"`
}

func (NetworkPolicyExternalIpArgs) ElementType added in v7.3.0

func (NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpOutput added in v7.3.0

func (i NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpOutput() NetworkPolicyExternalIpOutput

func (NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpOutputWithContext added in v7.3.0

func (i NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpOutputWithContext(ctx context.Context) NetworkPolicyExternalIpOutput

func (NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpPtrOutput added in v7.3.0

func (i NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpPtrOutput() NetworkPolicyExternalIpPtrOutput

func (NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpPtrOutputWithContext added in v7.3.0

func (i NetworkPolicyExternalIpArgs) ToNetworkPolicyExternalIpPtrOutputWithContext(ctx context.Context) NetworkPolicyExternalIpPtrOutput

type NetworkPolicyExternalIpInput added in v7.3.0

type NetworkPolicyExternalIpInput interface {
	pulumi.Input

	ToNetworkPolicyExternalIpOutput() NetworkPolicyExternalIpOutput
	ToNetworkPolicyExternalIpOutputWithContext(context.Context) NetworkPolicyExternalIpOutput
}

NetworkPolicyExternalIpInput is an input type that accepts NetworkPolicyExternalIpArgs and NetworkPolicyExternalIpOutput values. You can construct a concrete instance of `NetworkPolicyExternalIpInput` via:

NetworkPolicyExternalIpArgs{...}

type NetworkPolicyExternalIpOutput added in v7.3.0

type NetworkPolicyExternalIpOutput struct{ *pulumi.OutputState }

func (NetworkPolicyExternalIpOutput) ElementType added in v7.3.0

func (NetworkPolicyExternalIpOutput) Enabled added in v7.3.0

True if the service is enabled; false otherwise.

func (NetworkPolicyExternalIpOutput) State added in v7.3.0

(Output) State of the service. New values may be added to this enum when appropriate.

func (NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpOutput added in v7.3.0

func (o NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpOutput() NetworkPolicyExternalIpOutput

func (NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpOutputWithContext added in v7.3.0

func (o NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpOutputWithContext(ctx context.Context) NetworkPolicyExternalIpOutput

func (NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpPtrOutput added in v7.3.0

func (o NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpPtrOutput() NetworkPolicyExternalIpPtrOutput

func (NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpPtrOutputWithContext added in v7.3.0

func (o NetworkPolicyExternalIpOutput) ToNetworkPolicyExternalIpPtrOutputWithContext(ctx context.Context) NetworkPolicyExternalIpPtrOutput

type NetworkPolicyExternalIpPtrInput added in v7.3.0

type NetworkPolicyExternalIpPtrInput interface {
	pulumi.Input

	ToNetworkPolicyExternalIpPtrOutput() NetworkPolicyExternalIpPtrOutput
	ToNetworkPolicyExternalIpPtrOutputWithContext(context.Context) NetworkPolicyExternalIpPtrOutput
}

NetworkPolicyExternalIpPtrInput is an input type that accepts NetworkPolicyExternalIpArgs, NetworkPolicyExternalIpPtr and NetworkPolicyExternalIpPtrOutput values. You can construct a concrete instance of `NetworkPolicyExternalIpPtrInput` via:

        NetworkPolicyExternalIpArgs{...}

or:

        nil

func NetworkPolicyExternalIpPtr added in v7.3.0

func NetworkPolicyExternalIpPtr(v *NetworkPolicyExternalIpArgs) NetworkPolicyExternalIpPtrInput

type NetworkPolicyExternalIpPtrOutput added in v7.3.0

type NetworkPolicyExternalIpPtrOutput struct{ *pulumi.OutputState }

func (NetworkPolicyExternalIpPtrOutput) Elem added in v7.3.0

func (NetworkPolicyExternalIpPtrOutput) ElementType added in v7.3.0

func (NetworkPolicyExternalIpPtrOutput) Enabled added in v7.3.0

True if the service is enabled; false otherwise.

func (NetworkPolicyExternalIpPtrOutput) State added in v7.3.0

(Output) State of the service. New values may be added to this enum when appropriate.

func (NetworkPolicyExternalIpPtrOutput) ToNetworkPolicyExternalIpPtrOutput added in v7.3.0

func (o NetworkPolicyExternalIpPtrOutput) ToNetworkPolicyExternalIpPtrOutput() NetworkPolicyExternalIpPtrOutput

func (NetworkPolicyExternalIpPtrOutput) ToNetworkPolicyExternalIpPtrOutputWithContext added in v7.3.0

func (o NetworkPolicyExternalIpPtrOutput) ToNetworkPolicyExternalIpPtrOutputWithContext(ctx context.Context) NetworkPolicyExternalIpPtrOutput

type NetworkPolicyInput added in v7.3.0

type NetworkPolicyInput interface {
	pulumi.Input

	ToNetworkPolicyOutput() NetworkPolicyOutput
	ToNetworkPolicyOutputWithContext(ctx context.Context) NetworkPolicyOutput
}

type NetworkPolicyInternetAccess added in v7.3.0

type NetworkPolicyInternetAccess struct {
	// True if the service is enabled; false otherwise.
	Enabled *bool `pulumi:"enabled"`
	// (Output)
	// State of the service. New values may be added to this enum when appropriate.
	State *string `pulumi:"state"`
}

type NetworkPolicyInternetAccessArgs added in v7.3.0

type NetworkPolicyInternetAccessArgs struct {
	// True if the service is enabled; false otherwise.
	Enabled pulumi.BoolPtrInput `pulumi:"enabled"`
	// (Output)
	// State of the service. New values may be added to this enum when appropriate.
	State pulumi.StringPtrInput `pulumi:"state"`
}

func (NetworkPolicyInternetAccessArgs) ElementType added in v7.3.0

func (NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessOutput added in v7.3.0

func (i NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessOutput() NetworkPolicyInternetAccessOutput

func (NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessOutputWithContext added in v7.3.0

func (i NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessOutputWithContext(ctx context.Context) NetworkPolicyInternetAccessOutput

func (NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessPtrOutput added in v7.3.0

func (i NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessPtrOutput() NetworkPolicyInternetAccessPtrOutput

func (NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessPtrOutputWithContext added in v7.3.0

func (i NetworkPolicyInternetAccessArgs) ToNetworkPolicyInternetAccessPtrOutputWithContext(ctx context.Context) NetworkPolicyInternetAccessPtrOutput

type NetworkPolicyInternetAccessInput added in v7.3.0

type NetworkPolicyInternetAccessInput interface {
	pulumi.Input

	ToNetworkPolicyInternetAccessOutput() NetworkPolicyInternetAccessOutput
	ToNetworkPolicyInternetAccessOutputWithContext(context.Context) NetworkPolicyInternetAccessOutput
}

NetworkPolicyInternetAccessInput is an input type that accepts NetworkPolicyInternetAccessArgs and NetworkPolicyInternetAccessOutput values. You can construct a concrete instance of `NetworkPolicyInternetAccessInput` via:

NetworkPolicyInternetAccessArgs{...}

type NetworkPolicyInternetAccessOutput added in v7.3.0

type NetworkPolicyInternetAccessOutput struct{ *pulumi.OutputState }

func (NetworkPolicyInternetAccessOutput) ElementType added in v7.3.0

func (NetworkPolicyInternetAccessOutput) Enabled added in v7.3.0

True if the service is enabled; false otherwise.

func (NetworkPolicyInternetAccessOutput) State added in v7.3.0

(Output) State of the service. New values may be added to this enum when appropriate.

func (NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessOutput added in v7.3.0

func (o NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessOutput() NetworkPolicyInternetAccessOutput

func (NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessOutputWithContext added in v7.3.0

func (o NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessOutputWithContext(ctx context.Context) NetworkPolicyInternetAccessOutput

func (NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessPtrOutput added in v7.3.0

func (o NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessPtrOutput() NetworkPolicyInternetAccessPtrOutput

func (NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessPtrOutputWithContext added in v7.3.0

func (o NetworkPolicyInternetAccessOutput) ToNetworkPolicyInternetAccessPtrOutputWithContext(ctx context.Context) NetworkPolicyInternetAccessPtrOutput

type NetworkPolicyInternetAccessPtrInput added in v7.3.0

type NetworkPolicyInternetAccessPtrInput interface {
	pulumi.Input

	ToNetworkPolicyInternetAccessPtrOutput() NetworkPolicyInternetAccessPtrOutput
	ToNetworkPolicyInternetAccessPtrOutputWithContext(context.Context) NetworkPolicyInternetAccessPtrOutput
}

NetworkPolicyInternetAccessPtrInput is an input type that accepts NetworkPolicyInternetAccessArgs, NetworkPolicyInternetAccessPtr and NetworkPolicyInternetAccessPtrOutput values. You can construct a concrete instance of `NetworkPolicyInternetAccessPtrInput` via:

        NetworkPolicyInternetAccessArgs{...}

or:

        nil

func NetworkPolicyInternetAccessPtr added in v7.3.0

type NetworkPolicyInternetAccessPtrOutput added in v7.3.0

type NetworkPolicyInternetAccessPtrOutput struct{ *pulumi.OutputState }

func (NetworkPolicyInternetAccessPtrOutput) Elem added in v7.3.0

func (NetworkPolicyInternetAccessPtrOutput) ElementType added in v7.3.0

func (NetworkPolicyInternetAccessPtrOutput) Enabled added in v7.3.0

True if the service is enabled; false otherwise.

func (NetworkPolicyInternetAccessPtrOutput) State added in v7.3.0

(Output) State of the service. New values may be added to this enum when appropriate.

func (NetworkPolicyInternetAccessPtrOutput) ToNetworkPolicyInternetAccessPtrOutput added in v7.3.0

func (o NetworkPolicyInternetAccessPtrOutput) ToNetworkPolicyInternetAccessPtrOutput() NetworkPolicyInternetAccessPtrOutput

func (NetworkPolicyInternetAccessPtrOutput) ToNetworkPolicyInternetAccessPtrOutputWithContext added in v7.3.0

func (o NetworkPolicyInternetAccessPtrOutput) ToNetworkPolicyInternetAccessPtrOutputWithContext(ctx context.Context) NetworkPolicyInternetAccessPtrOutput

type NetworkPolicyMap added in v7.3.0

type NetworkPolicyMap map[string]NetworkPolicyInput

func (NetworkPolicyMap) ElementType added in v7.3.0

func (NetworkPolicyMap) ElementType() reflect.Type

func (NetworkPolicyMap) ToNetworkPolicyMapOutput added in v7.3.0

func (i NetworkPolicyMap) ToNetworkPolicyMapOutput() NetworkPolicyMapOutput

func (NetworkPolicyMap) ToNetworkPolicyMapOutputWithContext added in v7.3.0

func (i NetworkPolicyMap) ToNetworkPolicyMapOutputWithContext(ctx context.Context) NetworkPolicyMapOutput

type NetworkPolicyMapInput added in v7.3.0

type NetworkPolicyMapInput interface {
	pulumi.Input

	ToNetworkPolicyMapOutput() NetworkPolicyMapOutput
	ToNetworkPolicyMapOutputWithContext(context.Context) NetworkPolicyMapOutput
}

NetworkPolicyMapInput is an input type that accepts NetworkPolicyMap and NetworkPolicyMapOutput values. You can construct a concrete instance of `NetworkPolicyMapInput` via:

NetworkPolicyMap{ "key": NetworkPolicyArgs{...} }

type NetworkPolicyMapOutput added in v7.3.0

type NetworkPolicyMapOutput struct{ *pulumi.OutputState }

func (NetworkPolicyMapOutput) ElementType added in v7.3.0

func (NetworkPolicyMapOutput) ElementType() reflect.Type

func (NetworkPolicyMapOutput) MapIndex added in v7.3.0

func (NetworkPolicyMapOutput) ToNetworkPolicyMapOutput added in v7.3.0

func (o NetworkPolicyMapOutput) ToNetworkPolicyMapOutput() NetworkPolicyMapOutput

func (NetworkPolicyMapOutput) ToNetworkPolicyMapOutputWithContext added in v7.3.0

func (o NetworkPolicyMapOutput) ToNetworkPolicyMapOutputWithContext(ctx context.Context) NetworkPolicyMapOutput

type NetworkPolicyOutput added in v7.3.0

type NetworkPolicyOutput struct{ *pulumi.OutputState }

func (NetworkPolicyOutput) CreateTime added in v7.3.0

func (o NetworkPolicyOutput) CreateTime() pulumi.StringOutput

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".

func (NetworkPolicyOutput) Description added in v7.3.0

func (o NetworkPolicyOutput) Description() pulumi.StringPtrOutput

User-provided description for this network policy.

func (NetworkPolicyOutput) EdgeServicesCidr added in v7.3.0

func (o NetworkPolicyOutput) EdgeServicesCidr() pulumi.StringOutput

IP address range in CIDR notation used to create internet access and external IP access. An RFC 1918 CIDR block, with a "/26" prefix, is required. The range cannot overlap with any prefixes either in the consumer VPC network or in use by the private clouds attached to that VPC network.

func (NetworkPolicyOutput) ElementType added in v7.3.0

func (NetworkPolicyOutput) ElementType() reflect.Type

func (NetworkPolicyOutput) ExternalIp added in v7.3.0

Network service that allows External IP addresses to be assigned to VMware workloads. This service can only be enabled when internetAccess is also enabled. Structure is documented below.

func (NetworkPolicyOutput) InternetAccess added in v7.3.0

Network service that allows VMware workloads to access the internet. Structure is documented below.

func (NetworkPolicyOutput) Location added in v7.3.0

The resource name of the location (region) to create the new network policy 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-central1

func (NetworkPolicyOutput) Name added in v7.3.0

The ID of the Network Policy.

***

func (NetworkPolicyOutput) Project added in v7.3.0

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

func (NetworkPolicyOutput) ToNetworkPolicyOutput added in v7.3.0

func (o NetworkPolicyOutput) ToNetworkPolicyOutput() NetworkPolicyOutput

func (NetworkPolicyOutput) ToNetworkPolicyOutputWithContext added in v7.3.0

func (o NetworkPolicyOutput) ToNetworkPolicyOutputWithContext(ctx context.Context) NetworkPolicyOutput

func (NetworkPolicyOutput) Uid added in v7.3.0

System-generated unique identifier for the resource.

func (NetworkPolicyOutput) UpdateTime added in v7.3.0

func (o NetworkPolicyOutput) UpdateTime() pulumi.StringOutput

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".

func (NetworkPolicyOutput) VmwareEngineNetwork added in v7.3.0

func (o NetworkPolicyOutput) VmwareEngineNetwork() pulumi.StringOutput

The relative resource name of the VMware Engine network. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project} can either be a project number or a project ID.

func (NetworkPolicyOutput) VmwareEngineNetworkCanonical added in v7.3.0

func (o NetworkPolicyOutput) VmwareEngineNetworkCanonical() pulumi.StringOutput

The canonical name of the VMware Engine network in the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}

type NetworkPolicyState added in v7.3.0

type NetworkPolicyState struct {
	// 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".
	CreateTime pulumi.StringPtrInput
	// User-provided description for this network policy.
	Description pulumi.StringPtrInput
	// IP address range in CIDR notation used to create internet access and external IP access.
	// An RFC 1918 CIDR block, with a "/26" prefix, is required. The range cannot overlap with any
	// prefixes either in the consumer VPC network or in use by the private clouds attached to that VPC network.
	EdgeServicesCidr pulumi.StringPtrInput
	// Network service that allows External IP addresses to be assigned to VMware workloads.
	// This service can only be enabled when internetAccess is also enabled.
	// Structure is documented below.
	ExternalIp NetworkPolicyExternalIpPtrInput
	// Network service that allows VMware workloads to access the internet.
	// Structure is documented below.
	InternetAccess NetworkPolicyInternetAccessPtrInput
	// The resource name of the location (region) to create the new network policy 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-central1
	Location pulumi.StringPtrInput
	// The ID of the Network Policy.
	//
	// ***
	Name pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
	// 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".
	UpdateTime pulumi.StringPtrInput
	// The relative resource name of the VMware Engine network. Specify the name in the following form:
	// projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project}
	// can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringPtrInput
	// The canonical name of the VMware Engine network in the form:
	// projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical pulumi.StringPtrInput
}

func (NetworkPolicyState) ElementType added in v7.3.0

func (NetworkPolicyState) ElementType() reflect.Type

type NetworkState

type NetworkState struct {
	// User-provided description for this VMware Engine network.
	Description pulumi.StringPtrInput
	// The location where the VMwareEngineNetwork should reside.
	Location pulumi.StringPtrInput
	// The ID of the VMwareEngineNetwork.
	//
	// ***
	Name pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
	// State of the VMware Engine network.
	State pulumi.StringPtrInput
	// VMware Engine network type.
	// Possible values are: `LEGACY`, `STANDARD`.
	Type pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
	// VMware Engine service VPC networks that provide connectivity from a private cloud to customer projects,
	// the internet, and other Google Cloud services.
	// Structure is documented below.
	VpcNetworks NetworkVpcNetworkArrayInput
}

func (NetworkState) ElementType

func (NetworkState) ElementType() reflect.Type

type NetworkVpcNetwork

type NetworkVpcNetwork struct {
	// (Output)
	// The relative resource name of the service VPC network this VMware Engine network is attached to.
	// For example: projects/123123/global/networks/my-network
	Network *string `pulumi:"network"`
	// VMware Engine network type.
	// Possible values are: `LEGACY`, `STANDARD`.
	Type *string `pulumi:"type"`
}

type NetworkVpcNetworkArgs

type NetworkVpcNetworkArgs struct {
	// (Output)
	// The relative resource name of the service VPC network this VMware Engine network is attached to.
	// For example: projects/123123/global/networks/my-network
	Network pulumi.StringPtrInput `pulumi:"network"`
	// VMware Engine network type.
	// Possible values are: `LEGACY`, `STANDARD`.
	Type pulumi.StringPtrInput `pulumi:"type"`
}

func (NetworkVpcNetworkArgs) ElementType

func (NetworkVpcNetworkArgs) ElementType() reflect.Type

func (NetworkVpcNetworkArgs) ToNetworkVpcNetworkOutput

func (i NetworkVpcNetworkArgs) ToNetworkVpcNetworkOutput() NetworkVpcNetworkOutput

func (NetworkVpcNetworkArgs) ToNetworkVpcNetworkOutputWithContext

func (i NetworkVpcNetworkArgs) ToNetworkVpcNetworkOutputWithContext(ctx context.Context) NetworkVpcNetworkOutput

type NetworkVpcNetworkArray

type NetworkVpcNetworkArray []NetworkVpcNetworkInput

func (NetworkVpcNetworkArray) ElementType

func (NetworkVpcNetworkArray) ElementType() reflect.Type

func (NetworkVpcNetworkArray) ToNetworkVpcNetworkArrayOutput

func (i NetworkVpcNetworkArray) ToNetworkVpcNetworkArrayOutput() NetworkVpcNetworkArrayOutput

func (NetworkVpcNetworkArray) ToNetworkVpcNetworkArrayOutputWithContext

func (i NetworkVpcNetworkArray) ToNetworkVpcNetworkArrayOutputWithContext(ctx context.Context) NetworkVpcNetworkArrayOutput

type NetworkVpcNetworkArrayInput

type NetworkVpcNetworkArrayInput interface {
	pulumi.Input

	ToNetworkVpcNetworkArrayOutput() NetworkVpcNetworkArrayOutput
	ToNetworkVpcNetworkArrayOutputWithContext(context.Context) NetworkVpcNetworkArrayOutput
}

NetworkVpcNetworkArrayInput is an input type that accepts NetworkVpcNetworkArray and NetworkVpcNetworkArrayOutput values. You can construct a concrete instance of `NetworkVpcNetworkArrayInput` via:

NetworkVpcNetworkArray{ NetworkVpcNetworkArgs{...} }

type NetworkVpcNetworkArrayOutput

type NetworkVpcNetworkArrayOutput struct{ *pulumi.OutputState }

func (NetworkVpcNetworkArrayOutput) ElementType

func (NetworkVpcNetworkArrayOutput) Index

func (NetworkVpcNetworkArrayOutput) ToNetworkVpcNetworkArrayOutput

func (o NetworkVpcNetworkArrayOutput) ToNetworkVpcNetworkArrayOutput() NetworkVpcNetworkArrayOutput

func (NetworkVpcNetworkArrayOutput) ToNetworkVpcNetworkArrayOutputWithContext

func (o NetworkVpcNetworkArrayOutput) ToNetworkVpcNetworkArrayOutputWithContext(ctx context.Context) NetworkVpcNetworkArrayOutput

type NetworkVpcNetworkInput

type NetworkVpcNetworkInput interface {
	pulumi.Input

	ToNetworkVpcNetworkOutput() NetworkVpcNetworkOutput
	ToNetworkVpcNetworkOutputWithContext(context.Context) NetworkVpcNetworkOutput
}

NetworkVpcNetworkInput is an input type that accepts NetworkVpcNetworkArgs and NetworkVpcNetworkOutput values. You can construct a concrete instance of `NetworkVpcNetworkInput` via:

NetworkVpcNetworkArgs{...}

type NetworkVpcNetworkOutput

type NetworkVpcNetworkOutput struct{ *pulumi.OutputState }

func (NetworkVpcNetworkOutput) ElementType

func (NetworkVpcNetworkOutput) ElementType() reflect.Type

func (NetworkVpcNetworkOutput) Network

(Output) The relative resource name of the service VPC network this VMware Engine network is attached to. For example: projects/123123/global/networks/my-network

func (NetworkVpcNetworkOutput) ToNetworkVpcNetworkOutput

func (o NetworkVpcNetworkOutput) ToNetworkVpcNetworkOutput() NetworkVpcNetworkOutput

func (NetworkVpcNetworkOutput) ToNetworkVpcNetworkOutputWithContext

func (o NetworkVpcNetworkOutput) ToNetworkVpcNetworkOutputWithContext(ctx context.Context) NetworkVpcNetworkOutput

func (NetworkVpcNetworkOutput) Type

VMware Engine network type. Possible values are: `LEGACY`, `STANDARD`.

type PrivateCloud

type PrivateCloud struct {
	pulumi.CustomResourceState

	// User-provided description for this private cloud.
	Description pulumi.StringPtrOutput `pulumi:"description"`
	// Details about a HCX Cloud Manager appliance.
	// Structure is documented below.
	Hcxes PrivateCloudHcxArrayOutput `pulumi:"hcxes"`
	// The location where the PrivateCloud should reside.
	Location pulumi.StringOutput `pulumi:"location"`
	// The management cluster for this private cloud. This used for creating and managing the default cluster.
	// Structure is documented below.
	ManagementCluster PrivateCloudManagementClusterOutput `pulumi:"managementCluster"`
	// The ID of the PrivateCloud.
	Name pulumi.StringOutput `pulumi:"name"`
	// Network configuration in the consumer project with which the peering has to be done.
	// Structure is documented below.
	NetworkConfig PrivateCloudNetworkConfigOutput `pulumi:"networkConfig"`
	// Details about a NSX Manager appliance.
	// Structure is documented below.
	Nsxes   PrivateCloudNsxArrayOutput `pulumi:"nsxes"`
	Project pulumi.StringOutput        `pulumi:"project"`
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State pulumi.StringOutput `pulumi:"state"`
	// Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]
	Type pulumi.StringPtrOutput `pulumi:"type"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
	// Details about a vCenter Server management appliance.
	// Structure is documented below.
	Vcenters PrivateCloudVcenterArrayOutput `pulumi:"vcenters"`
}

Represents a private cloud resource. Private clouds are zonal resources.

To get more information about PrivateCloud, see:

* [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds)

## Example Usage

### Vmware Engine Private Cloud Basic

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "pc-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, "vmw-engine-pc", &vmwareengine.PrivateCloudArgs{
			Location:    pulumi.String("us-west1-a"),
			Name:        pulumi.String("sample-pc"),
			Description: pulumi.String("Sample test PC."),
			NetworkConfig: &vmwareengine.PrivateCloudNetworkConfigArgs{
				ManagementCidr:      pulumi.String("192.168.30.0/24"),
				VmwareEngineNetwork: pc_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
		}
		return nil
	})
}

``` ### Vmware Engine Private Cloud Full

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "pc-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, "vmw-engine-pc", &vmwareengine.PrivateCloudArgs{
			Location:    pulumi.String("us-west1-a"),
			Name:        pulumi.String("sample-pc"),
			Description: pulumi.String("Sample test PC."),
			Type:        pulumi.String("TIME_LIMITED"),
			NetworkConfig: &vmwareengine.PrivateCloudNetworkConfigArgs{
				ManagementCidr:      pulumi.String("192.168.30.0/24"),
				VmwareEngineNetwork: pc_nw.ID(),
			},
			ManagementCluster: &vmwareengine.PrivateCloudManagementClusterArgs{
				ClusterId: pulumi.String("sample-mgmt-cluster"),
				NodeTypeConfigs: vmwareengine.PrivateCloudManagementClusterNodeTypeConfigArray{
					&vmwareengine.PrivateCloudManagementClusterNodeTypeConfigArgs{
						NodeTypeId:      pulumi.String("standard-72"),
						NodeCount:       pulumi.Int(1),
						CustomCoreCount: pulumi.Int(32),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

PrivateCloud can be imported using any of these accepted formats:

* `projects/{{project}}/locations/{{location}}/privateClouds/{{name}}`

* `{{project}}/{{location}}/{{name}}`

* `{{location}}/{{name}}`

When using the `pulumi import` command, PrivateCloud can be imported using one of the formats above. For example:

```sh $ pulumi import gcp:vmwareengine/privateCloud:PrivateCloud default projects/{{project}}/locations/{{location}}/privateClouds/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/privateCloud:PrivateCloud default {{project}}/{{location}}/{{name}} ```

```sh $ pulumi import gcp:vmwareengine/privateCloud:PrivateCloud default {{location}}/{{name}} ```

func GetPrivateCloud

func GetPrivateCloud(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *PrivateCloudState, opts ...pulumi.ResourceOption) (*PrivateCloud, error)

GetPrivateCloud gets an existing PrivateCloud resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewPrivateCloud

func NewPrivateCloud(ctx *pulumi.Context,
	name string, args *PrivateCloudArgs, opts ...pulumi.ResourceOption) (*PrivateCloud, error)

NewPrivateCloud registers a new resource with the given unique name, arguments, and options.

func (*PrivateCloud) ElementType

func (*PrivateCloud) ElementType() reflect.Type

func (*PrivateCloud) ToPrivateCloudOutput

func (i *PrivateCloud) ToPrivateCloudOutput() PrivateCloudOutput

func (*PrivateCloud) ToPrivateCloudOutputWithContext

func (i *PrivateCloud) ToPrivateCloudOutputWithContext(ctx context.Context) PrivateCloudOutput

type PrivateCloudArgs

type PrivateCloudArgs struct {
	// User-provided description for this private cloud.
	Description pulumi.StringPtrInput
	// The location where the PrivateCloud should reside.
	Location pulumi.StringInput
	// The management cluster for this private cloud. This used for creating and managing the default cluster.
	// Structure is documented below.
	ManagementCluster PrivateCloudManagementClusterInput
	// The ID of the PrivateCloud.
	Name pulumi.StringPtrInput
	// Network configuration in the consumer project with which the peering has to be done.
	// Structure is documented below.
	NetworkConfig PrivateCloudNetworkConfigInput
	Project       pulumi.StringPtrInput
	// Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]
	Type pulumi.StringPtrInput
}

The set of arguments for constructing a PrivateCloud resource.

func (PrivateCloudArgs) ElementType

func (PrivateCloudArgs) ElementType() reflect.Type

type PrivateCloudArray

type PrivateCloudArray []PrivateCloudInput

func (PrivateCloudArray) ElementType

func (PrivateCloudArray) ElementType() reflect.Type

func (PrivateCloudArray) ToPrivateCloudArrayOutput

func (i PrivateCloudArray) ToPrivateCloudArrayOutput() PrivateCloudArrayOutput

func (PrivateCloudArray) ToPrivateCloudArrayOutputWithContext

func (i PrivateCloudArray) ToPrivateCloudArrayOutputWithContext(ctx context.Context) PrivateCloudArrayOutput

type PrivateCloudArrayInput

type PrivateCloudArrayInput interface {
	pulumi.Input

	ToPrivateCloudArrayOutput() PrivateCloudArrayOutput
	ToPrivateCloudArrayOutputWithContext(context.Context) PrivateCloudArrayOutput
}

PrivateCloudArrayInput is an input type that accepts PrivateCloudArray and PrivateCloudArrayOutput values. You can construct a concrete instance of `PrivateCloudArrayInput` via:

PrivateCloudArray{ PrivateCloudArgs{...} }

type PrivateCloudArrayOutput

type PrivateCloudArrayOutput struct{ *pulumi.OutputState }

func (PrivateCloudArrayOutput) ElementType

func (PrivateCloudArrayOutput) ElementType() reflect.Type

func (PrivateCloudArrayOutput) Index

func (PrivateCloudArrayOutput) ToPrivateCloudArrayOutput

func (o PrivateCloudArrayOutput) ToPrivateCloudArrayOutput() PrivateCloudArrayOutput

func (PrivateCloudArrayOutput) ToPrivateCloudArrayOutputWithContext

func (o PrivateCloudArrayOutput) ToPrivateCloudArrayOutputWithContext(ctx context.Context) PrivateCloudArrayOutput

type PrivateCloudHcx

type PrivateCloudHcx struct {
	// Fully qualified domain name of the appliance.
	Fqdn *string `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp *string `pulumi:"internalIp"`
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State *string `pulumi:"state"`
	// Version of the appliance.
	Version *string `pulumi:"version"`
}

type PrivateCloudHcxArgs

type PrivateCloudHcxArgs struct {
	// Fully qualified domain name of the appliance.
	Fqdn pulumi.StringPtrInput `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp pulumi.StringPtrInput `pulumi:"internalIp"`
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State pulumi.StringPtrInput `pulumi:"state"`
	// Version of the appliance.
	Version pulumi.StringPtrInput `pulumi:"version"`
}

func (PrivateCloudHcxArgs) ElementType

func (PrivateCloudHcxArgs) ElementType() reflect.Type

func (PrivateCloudHcxArgs) ToPrivateCloudHcxOutput

func (i PrivateCloudHcxArgs) ToPrivateCloudHcxOutput() PrivateCloudHcxOutput

func (PrivateCloudHcxArgs) ToPrivateCloudHcxOutputWithContext

func (i PrivateCloudHcxArgs) ToPrivateCloudHcxOutputWithContext(ctx context.Context) PrivateCloudHcxOutput

type PrivateCloudHcxArray

type PrivateCloudHcxArray []PrivateCloudHcxInput

func (PrivateCloudHcxArray) ElementType

func (PrivateCloudHcxArray) ElementType() reflect.Type

func (PrivateCloudHcxArray) ToPrivateCloudHcxArrayOutput

func (i PrivateCloudHcxArray) ToPrivateCloudHcxArrayOutput() PrivateCloudHcxArrayOutput

func (PrivateCloudHcxArray) ToPrivateCloudHcxArrayOutputWithContext

func (i PrivateCloudHcxArray) ToPrivateCloudHcxArrayOutputWithContext(ctx context.Context) PrivateCloudHcxArrayOutput

type PrivateCloudHcxArrayInput

type PrivateCloudHcxArrayInput interface {
	pulumi.Input

	ToPrivateCloudHcxArrayOutput() PrivateCloudHcxArrayOutput
	ToPrivateCloudHcxArrayOutputWithContext(context.Context) PrivateCloudHcxArrayOutput
}

PrivateCloudHcxArrayInput is an input type that accepts PrivateCloudHcxArray and PrivateCloudHcxArrayOutput values. You can construct a concrete instance of `PrivateCloudHcxArrayInput` via:

PrivateCloudHcxArray{ PrivateCloudHcxArgs{...} }

type PrivateCloudHcxArrayOutput

type PrivateCloudHcxArrayOutput struct{ *pulumi.OutputState }

func (PrivateCloudHcxArrayOutput) ElementType

func (PrivateCloudHcxArrayOutput) ElementType() reflect.Type

func (PrivateCloudHcxArrayOutput) Index

func (PrivateCloudHcxArrayOutput) ToPrivateCloudHcxArrayOutput

func (o PrivateCloudHcxArrayOutput) ToPrivateCloudHcxArrayOutput() PrivateCloudHcxArrayOutput

func (PrivateCloudHcxArrayOutput) ToPrivateCloudHcxArrayOutputWithContext

func (o PrivateCloudHcxArrayOutput) ToPrivateCloudHcxArrayOutputWithContext(ctx context.Context) PrivateCloudHcxArrayOutput

type PrivateCloudHcxInput

type PrivateCloudHcxInput interface {
	pulumi.Input

	ToPrivateCloudHcxOutput() PrivateCloudHcxOutput
	ToPrivateCloudHcxOutputWithContext(context.Context) PrivateCloudHcxOutput
}

PrivateCloudHcxInput is an input type that accepts PrivateCloudHcxArgs and PrivateCloudHcxOutput values. You can construct a concrete instance of `PrivateCloudHcxInput` via:

PrivateCloudHcxArgs{...}

type PrivateCloudHcxOutput

type PrivateCloudHcxOutput struct{ *pulumi.OutputState }

func (PrivateCloudHcxOutput) ElementType

func (PrivateCloudHcxOutput) ElementType() reflect.Type

func (PrivateCloudHcxOutput) Fqdn

Fully qualified domain name of the appliance.

func (PrivateCloudHcxOutput) InternalIp

Internal IP address of the appliance.

func (PrivateCloudHcxOutput) State

State of the appliance. Possible values are: `ACTIVE`, `CREATING`.

func (PrivateCloudHcxOutput) ToPrivateCloudHcxOutput

func (o PrivateCloudHcxOutput) ToPrivateCloudHcxOutput() PrivateCloudHcxOutput

func (PrivateCloudHcxOutput) ToPrivateCloudHcxOutputWithContext

func (o PrivateCloudHcxOutput) ToPrivateCloudHcxOutputWithContext(ctx context.Context) PrivateCloudHcxOutput

func (PrivateCloudHcxOutput) Version

Version of the appliance.

type PrivateCloudInput

type PrivateCloudInput interface {
	pulumi.Input

	ToPrivateCloudOutput() PrivateCloudOutput
	ToPrivateCloudOutputWithContext(ctx context.Context) PrivateCloudOutput
}

type PrivateCloudManagementCluster

type PrivateCloudManagementCluster struct {
	// The user-provided identifier of the new Cluster. The identifier must meet the following requirements:
	// * Only contains 1-63 alphanumeric characters and hyphens
	// * Begins with an alphabetical character
	// * Ends with a non-hyphen character
	// * Not formatted as a UUID
	// * Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
	ClusterId string `pulumi:"clusterId"`
	// The map of cluster node types in this cluster,
	// where the key is canonical identifier of the node type (corresponds to the NodeType).
	// Structure is documented below.
	NodeTypeConfigs []PrivateCloudManagementClusterNodeTypeConfig `pulumi:"nodeTypeConfigs"`
	// The stretched cluster configuration for the private cloud.
	// Structure is documented below.
	StretchedClusterConfig *PrivateCloudManagementClusterStretchedClusterConfig `pulumi:"stretchedClusterConfig"`
}

type PrivateCloudManagementClusterArgs

type PrivateCloudManagementClusterArgs struct {
	// The user-provided identifier of the new Cluster. The identifier must meet the following requirements:
	// * Only contains 1-63 alphanumeric characters and hyphens
	// * Begins with an alphabetical character
	// * Ends with a non-hyphen character
	// * Not formatted as a UUID
	// * Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
	ClusterId pulumi.StringInput `pulumi:"clusterId"`
	// The map of cluster node types in this cluster,
	// where the key is canonical identifier of the node type (corresponds to the NodeType).
	// Structure is documented below.
	NodeTypeConfigs PrivateCloudManagementClusterNodeTypeConfigArrayInput `pulumi:"nodeTypeConfigs"`
	// The stretched cluster configuration for the private cloud.
	// Structure is documented below.
	StretchedClusterConfig PrivateCloudManagementClusterStretchedClusterConfigPtrInput `pulumi:"stretchedClusterConfig"`
}

func (PrivateCloudManagementClusterArgs) ElementType

func (PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterOutput

func (i PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterOutput() PrivateCloudManagementClusterOutput

func (PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterOutputWithContext

func (i PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterOutputWithContext(ctx context.Context) PrivateCloudManagementClusterOutput

func (PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterPtrOutput

func (i PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterPtrOutput() PrivateCloudManagementClusterPtrOutput

func (PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterPtrOutputWithContext

func (i PrivateCloudManagementClusterArgs) ToPrivateCloudManagementClusterPtrOutputWithContext(ctx context.Context) PrivateCloudManagementClusterPtrOutput

type PrivateCloudManagementClusterInput

type PrivateCloudManagementClusterInput interface {
	pulumi.Input

	ToPrivateCloudManagementClusterOutput() PrivateCloudManagementClusterOutput
	ToPrivateCloudManagementClusterOutputWithContext(context.Context) PrivateCloudManagementClusterOutput
}

PrivateCloudManagementClusterInput is an input type that accepts PrivateCloudManagementClusterArgs and PrivateCloudManagementClusterOutput values. You can construct a concrete instance of `PrivateCloudManagementClusterInput` via:

PrivateCloudManagementClusterArgs{...}

type PrivateCloudManagementClusterNodeTypeConfig

type PrivateCloudManagementClusterNodeTypeConfig struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of `nodeType.availableCustomCoreCounts`.
	// If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used.
	// This cannot be changed once the PrivateCloud is created.
	CustomCoreCount *int `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount int `pulumi:"nodeCount"`
	// The identifier for this object. Format specified above.
	NodeTypeId string `pulumi:"nodeTypeId"`
}

type PrivateCloudManagementClusterNodeTypeConfigArgs

type PrivateCloudManagementClusterNodeTypeConfigArgs struct {
	// Customized number of cores available to each node of the type.
	// This number must always be one of `nodeType.availableCustomCoreCounts`.
	// If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used.
	// This cannot be changed once the PrivateCloud is created.
	CustomCoreCount pulumi.IntPtrInput `pulumi:"customCoreCount"`
	// The number of nodes of this type in the cluster.
	NodeCount pulumi.IntInput `pulumi:"nodeCount"`
	// The identifier for this object. Format specified above.
	NodeTypeId pulumi.StringInput `pulumi:"nodeTypeId"`
}

func (PrivateCloudManagementClusterNodeTypeConfigArgs) ElementType

func (PrivateCloudManagementClusterNodeTypeConfigArgs) ToPrivateCloudManagementClusterNodeTypeConfigOutput

func (i PrivateCloudManagementClusterNodeTypeConfigArgs) ToPrivateCloudManagementClusterNodeTypeConfigOutput() PrivateCloudManagementClusterNodeTypeConfigOutput

func (PrivateCloudManagementClusterNodeTypeConfigArgs) ToPrivateCloudManagementClusterNodeTypeConfigOutputWithContext

func (i PrivateCloudManagementClusterNodeTypeConfigArgs) ToPrivateCloudManagementClusterNodeTypeConfigOutputWithContext(ctx context.Context) PrivateCloudManagementClusterNodeTypeConfigOutput

type PrivateCloudManagementClusterNodeTypeConfigArray

type PrivateCloudManagementClusterNodeTypeConfigArray []PrivateCloudManagementClusterNodeTypeConfigInput

func (PrivateCloudManagementClusterNodeTypeConfigArray) ElementType

func (PrivateCloudManagementClusterNodeTypeConfigArray) ToPrivateCloudManagementClusterNodeTypeConfigArrayOutput

func (i PrivateCloudManagementClusterNodeTypeConfigArray) ToPrivateCloudManagementClusterNodeTypeConfigArrayOutput() PrivateCloudManagementClusterNodeTypeConfigArrayOutput

func (PrivateCloudManagementClusterNodeTypeConfigArray) ToPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext

func (i PrivateCloudManagementClusterNodeTypeConfigArray) ToPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) PrivateCloudManagementClusterNodeTypeConfigArrayOutput

type PrivateCloudManagementClusterNodeTypeConfigArrayInput

type PrivateCloudManagementClusterNodeTypeConfigArrayInput interface {
	pulumi.Input

	ToPrivateCloudManagementClusterNodeTypeConfigArrayOutput() PrivateCloudManagementClusterNodeTypeConfigArrayOutput
	ToPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext(context.Context) PrivateCloudManagementClusterNodeTypeConfigArrayOutput
}

PrivateCloudManagementClusterNodeTypeConfigArrayInput is an input type that accepts PrivateCloudManagementClusterNodeTypeConfigArray and PrivateCloudManagementClusterNodeTypeConfigArrayOutput values. You can construct a concrete instance of `PrivateCloudManagementClusterNodeTypeConfigArrayInput` via:

PrivateCloudManagementClusterNodeTypeConfigArray{ PrivateCloudManagementClusterNodeTypeConfigArgs{...} }

type PrivateCloudManagementClusterNodeTypeConfigArrayOutput

type PrivateCloudManagementClusterNodeTypeConfigArrayOutput struct{ *pulumi.OutputState }

func (PrivateCloudManagementClusterNodeTypeConfigArrayOutput) ElementType

func (PrivateCloudManagementClusterNodeTypeConfigArrayOutput) Index

func (PrivateCloudManagementClusterNodeTypeConfigArrayOutput) ToPrivateCloudManagementClusterNodeTypeConfigArrayOutput

func (PrivateCloudManagementClusterNodeTypeConfigArrayOutput) ToPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext

func (o PrivateCloudManagementClusterNodeTypeConfigArrayOutput) ToPrivateCloudManagementClusterNodeTypeConfigArrayOutputWithContext(ctx context.Context) PrivateCloudManagementClusterNodeTypeConfigArrayOutput

type PrivateCloudManagementClusterNodeTypeConfigInput

type PrivateCloudManagementClusterNodeTypeConfigInput interface {
	pulumi.Input

	ToPrivateCloudManagementClusterNodeTypeConfigOutput() PrivateCloudManagementClusterNodeTypeConfigOutput
	ToPrivateCloudManagementClusterNodeTypeConfigOutputWithContext(context.Context) PrivateCloudManagementClusterNodeTypeConfigOutput
}

PrivateCloudManagementClusterNodeTypeConfigInput is an input type that accepts PrivateCloudManagementClusterNodeTypeConfigArgs and PrivateCloudManagementClusterNodeTypeConfigOutput values. You can construct a concrete instance of `PrivateCloudManagementClusterNodeTypeConfigInput` via:

PrivateCloudManagementClusterNodeTypeConfigArgs{...}

type PrivateCloudManagementClusterNodeTypeConfigOutput

type PrivateCloudManagementClusterNodeTypeConfigOutput struct{ *pulumi.OutputState }

func (PrivateCloudManagementClusterNodeTypeConfigOutput) CustomCoreCount

Customized number of cores available to each node of the type. This number must always be one of `nodeType.availableCustomCoreCounts`. If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used. This cannot be changed once the PrivateCloud is created.

func (PrivateCloudManagementClusterNodeTypeConfigOutput) ElementType

func (PrivateCloudManagementClusterNodeTypeConfigOutput) NodeCount

The number of nodes of this type in the cluster.

func (PrivateCloudManagementClusterNodeTypeConfigOutput) NodeTypeId

The identifier for this object. Format specified above.

func (PrivateCloudManagementClusterNodeTypeConfigOutput) ToPrivateCloudManagementClusterNodeTypeConfigOutput

func (o PrivateCloudManagementClusterNodeTypeConfigOutput) ToPrivateCloudManagementClusterNodeTypeConfigOutput() PrivateCloudManagementClusterNodeTypeConfigOutput

func (PrivateCloudManagementClusterNodeTypeConfigOutput) ToPrivateCloudManagementClusterNodeTypeConfigOutputWithContext

func (o PrivateCloudManagementClusterNodeTypeConfigOutput) ToPrivateCloudManagementClusterNodeTypeConfigOutputWithContext(ctx context.Context) PrivateCloudManagementClusterNodeTypeConfigOutput

type PrivateCloudManagementClusterOutput

type PrivateCloudManagementClusterOutput struct{ *pulumi.OutputState }

func (PrivateCloudManagementClusterOutput) ClusterId

The user-provided identifier of the new Cluster. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)

func (PrivateCloudManagementClusterOutput) ElementType

func (PrivateCloudManagementClusterOutput) NodeTypeConfigs

The map of cluster node types in this cluster, where the key is canonical identifier of the node type (corresponds to the NodeType). Structure is documented below.

func (PrivateCloudManagementClusterOutput) StretchedClusterConfig added in v7.20.0

The stretched cluster configuration for the private cloud. Structure is documented below.

func (PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterOutput

func (o PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterOutput() PrivateCloudManagementClusterOutput

func (PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterOutputWithContext

func (o PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterOutputWithContext(ctx context.Context) PrivateCloudManagementClusterOutput

func (PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterPtrOutput

func (o PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterPtrOutput() PrivateCloudManagementClusterPtrOutput

func (PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterPtrOutputWithContext

func (o PrivateCloudManagementClusterOutput) ToPrivateCloudManagementClusterPtrOutputWithContext(ctx context.Context) PrivateCloudManagementClusterPtrOutput

type PrivateCloudManagementClusterPtrInput

type PrivateCloudManagementClusterPtrInput interface {
	pulumi.Input

	ToPrivateCloudManagementClusterPtrOutput() PrivateCloudManagementClusterPtrOutput
	ToPrivateCloudManagementClusterPtrOutputWithContext(context.Context) PrivateCloudManagementClusterPtrOutput
}

PrivateCloudManagementClusterPtrInput is an input type that accepts PrivateCloudManagementClusterArgs, PrivateCloudManagementClusterPtr and PrivateCloudManagementClusterPtrOutput values. You can construct a concrete instance of `PrivateCloudManagementClusterPtrInput` via:

        PrivateCloudManagementClusterArgs{...}

or:

        nil

type PrivateCloudManagementClusterPtrOutput

type PrivateCloudManagementClusterPtrOutput struct{ *pulumi.OutputState }

func (PrivateCloudManagementClusterPtrOutput) ClusterId

The user-provided identifier of the new Cluster. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)

func (PrivateCloudManagementClusterPtrOutput) Elem

func (PrivateCloudManagementClusterPtrOutput) ElementType

func (PrivateCloudManagementClusterPtrOutput) NodeTypeConfigs

The map of cluster node types in this cluster, where the key is canonical identifier of the node type (corresponds to the NodeType). Structure is documented below.

func (PrivateCloudManagementClusterPtrOutput) StretchedClusterConfig added in v7.20.0

The stretched cluster configuration for the private cloud. Structure is documented below.

func (PrivateCloudManagementClusterPtrOutput) ToPrivateCloudManagementClusterPtrOutput

func (o PrivateCloudManagementClusterPtrOutput) ToPrivateCloudManagementClusterPtrOutput() PrivateCloudManagementClusterPtrOutput

func (PrivateCloudManagementClusterPtrOutput) ToPrivateCloudManagementClusterPtrOutputWithContext

func (o PrivateCloudManagementClusterPtrOutput) ToPrivateCloudManagementClusterPtrOutputWithContext(ctx context.Context) PrivateCloudManagementClusterPtrOutput

type PrivateCloudManagementClusterStretchedClusterConfig added in v7.20.0

type PrivateCloudManagementClusterStretchedClusterConfig struct {
	// Zone that will remain operational when connection between the two zones is lost.
	PreferredLocation *string `pulumi:"preferredLocation"`
	// Additional zone for a higher level of availability and load balancing.
	//
	// ***
	SecondaryLocation *string `pulumi:"secondaryLocation"`
}

type PrivateCloudManagementClusterStretchedClusterConfigArgs added in v7.20.0

type PrivateCloudManagementClusterStretchedClusterConfigArgs struct {
	// Zone that will remain operational when connection between the two zones is lost.
	PreferredLocation pulumi.StringPtrInput `pulumi:"preferredLocation"`
	// Additional zone for a higher level of availability and load balancing.
	//
	// ***
	SecondaryLocation pulumi.StringPtrInput `pulumi:"secondaryLocation"`
}

func (PrivateCloudManagementClusterStretchedClusterConfigArgs) ElementType added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigArgs) ToPrivateCloudManagementClusterStretchedClusterConfigOutput added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigArgs) ToPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext added in v7.20.0

func (i PrivateCloudManagementClusterStretchedClusterConfigArgs) ToPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext(ctx context.Context) PrivateCloudManagementClusterStretchedClusterConfigOutput

func (PrivateCloudManagementClusterStretchedClusterConfigArgs) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutput added in v7.20.0

func (i PrivateCloudManagementClusterStretchedClusterConfigArgs) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutput() PrivateCloudManagementClusterStretchedClusterConfigPtrOutput

func (PrivateCloudManagementClusterStretchedClusterConfigArgs) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutputWithContext added in v7.20.0

func (i PrivateCloudManagementClusterStretchedClusterConfigArgs) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutputWithContext(ctx context.Context) PrivateCloudManagementClusterStretchedClusterConfigPtrOutput

type PrivateCloudManagementClusterStretchedClusterConfigInput added in v7.20.0

type PrivateCloudManagementClusterStretchedClusterConfigInput interface {
	pulumi.Input

	ToPrivateCloudManagementClusterStretchedClusterConfigOutput() PrivateCloudManagementClusterStretchedClusterConfigOutput
	ToPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext(context.Context) PrivateCloudManagementClusterStretchedClusterConfigOutput
}

PrivateCloudManagementClusterStretchedClusterConfigInput is an input type that accepts PrivateCloudManagementClusterStretchedClusterConfigArgs and PrivateCloudManagementClusterStretchedClusterConfigOutput values. You can construct a concrete instance of `PrivateCloudManagementClusterStretchedClusterConfigInput` via:

PrivateCloudManagementClusterStretchedClusterConfigArgs{...}

type PrivateCloudManagementClusterStretchedClusterConfigOutput added in v7.20.0

type PrivateCloudManagementClusterStretchedClusterConfigOutput struct{ *pulumi.OutputState }

func (PrivateCloudManagementClusterStretchedClusterConfigOutput) ElementType added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigOutput) PreferredLocation added in v7.20.0

Zone that will remain operational when connection between the two zones is lost.

func (PrivateCloudManagementClusterStretchedClusterConfigOutput) SecondaryLocation added in v7.20.0

Additional zone for a higher level of availability and load balancing.

***

func (PrivateCloudManagementClusterStretchedClusterConfigOutput) ToPrivateCloudManagementClusterStretchedClusterConfigOutput added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigOutput) ToPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext added in v7.20.0

func (o PrivateCloudManagementClusterStretchedClusterConfigOutput) ToPrivateCloudManagementClusterStretchedClusterConfigOutputWithContext(ctx context.Context) PrivateCloudManagementClusterStretchedClusterConfigOutput

func (PrivateCloudManagementClusterStretchedClusterConfigOutput) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutput added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigOutput) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutputWithContext added in v7.20.0

func (o PrivateCloudManagementClusterStretchedClusterConfigOutput) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutputWithContext(ctx context.Context) PrivateCloudManagementClusterStretchedClusterConfigPtrOutput

type PrivateCloudManagementClusterStretchedClusterConfigPtrInput added in v7.20.0

type PrivateCloudManagementClusterStretchedClusterConfigPtrInput interface {
	pulumi.Input

	ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutput() PrivateCloudManagementClusterStretchedClusterConfigPtrOutput
	ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutputWithContext(context.Context) PrivateCloudManagementClusterStretchedClusterConfigPtrOutput
}

PrivateCloudManagementClusterStretchedClusterConfigPtrInput is an input type that accepts PrivateCloudManagementClusterStretchedClusterConfigArgs, PrivateCloudManagementClusterStretchedClusterConfigPtr and PrivateCloudManagementClusterStretchedClusterConfigPtrOutput values. You can construct a concrete instance of `PrivateCloudManagementClusterStretchedClusterConfigPtrInput` via:

        PrivateCloudManagementClusterStretchedClusterConfigArgs{...}

or:

        nil

type PrivateCloudManagementClusterStretchedClusterConfigPtrOutput added in v7.20.0

type PrivateCloudManagementClusterStretchedClusterConfigPtrOutput struct{ *pulumi.OutputState }

func (PrivateCloudManagementClusterStretchedClusterConfigPtrOutput) Elem added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigPtrOutput) ElementType added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigPtrOutput) PreferredLocation added in v7.20.0

Zone that will remain operational when connection between the two zones is lost.

func (PrivateCloudManagementClusterStretchedClusterConfigPtrOutput) SecondaryLocation added in v7.20.0

Additional zone for a higher level of availability and load balancing.

***

func (PrivateCloudManagementClusterStretchedClusterConfigPtrOutput) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutput added in v7.20.0

func (PrivateCloudManagementClusterStretchedClusterConfigPtrOutput) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutputWithContext added in v7.20.0

func (o PrivateCloudManagementClusterStretchedClusterConfigPtrOutput) ToPrivateCloudManagementClusterStretchedClusterConfigPtrOutputWithContext(ctx context.Context) PrivateCloudManagementClusterStretchedClusterConfigPtrOutput

type PrivateCloudMap

type PrivateCloudMap map[string]PrivateCloudInput

func (PrivateCloudMap) ElementType

func (PrivateCloudMap) ElementType() reflect.Type

func (PrivateCloudMap) ToPrivateCloudMapOutput

func (i PrivateCloudMap) ToPrivateCloudMapOutput() PrivateCloudMapOutput

func (PrivateCloudMap) ToPrivateCloudMapOutputWithContext

func (i PrivateCloudMap) ToPrivateCloudMapOutputWithContext(ctx context.Context) PrivateCloudMapOutput

type PrivateCloudMapInput

type PrivateCloudMapInput interface {
	pulumi.Input

	ToPrivateCloudMapOutput() PrivateCloudMapOutput
	ToPrivateCloudMapOutputWithContext(context.Context) PrivateCloudMapOutput
}

PrivateCloudMapInput is an input type that accepts PrivateCloudMap and PrivateCloudMapOutput values. You can construct a concrete instance of `PrivateCloudMapInput` via:

PrivateCloudMap{ "key": PrivateCloudArgs{...} }

type PrivateCloudMapOutput

type PrivateCloudMapOutput struct{ *pulumi.OutputState }

func (PrivateCloudMapOutput) ElementType

func (PrivateCloudMapOutput) ElementType() reflect.Type

func (PrivateCloudMapOutput) MapIndex

func (PrivateCloudMapOutput) ToPrivateCloudMapOutput

func (o PrivateCloudMapOutput) ToPrivateCloudMapOutput() PrivateCloudMapOutput

func (PrivateCloudMapOutput) ToPrivateCloudMapOutputWithContext

func (o PrivateCloudMapOutput) ToPrivateCloudMapOutputWithContext(ctx context.Context) PrivateCloudMapOutput

type PrivateCloudNetworkConfig

type PrivateCloudNetworkConfig struct {
	// (Output)
	// DNS Server IP of the Private Cloud.
	DnsServerIp *string `pulumi:"dnsServerIp"`
	// Management CIDR used by VMware management appliances.
	ManagementCidr string `pulumi:"managementCidr"`
	// (Output)
	// The IP address layout version of the management IP address range.
	// Possible versions include:
	// * managementIpAddressLayoutVersion=1: Indicates the legacy IP address layout used by some existing private clouds. This is no longer supported for new private clouds
	//   as it does not support all features.
	// * managementIpAddressLayoutVersion=2: Indicates the latest IP address layout
	//   used by all newly created private clouds. This version supports all current features.
	ManagementIpAddressLayoutVersion *int `pulumi:"managementIpAddressLayoutVersion"`
	// The relative resource name of the VMware Engine network attached to the private cloud.
	// Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	// where {project} can either be a project number or a project ID.
	VmwareEngineNetwork *string `pulumi:"vmwareEngineNetwork"`
	// (Output)
	// The canonical name of the VMware Engine network in
	// the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical *string `pulumi:"vmwareEngineNetworkCanonical"`
}

type PrivateCloudNetworkConfigArgs

type PrivateCloudNetworkConfigArgs struct {
	// (Output)
	// DNS Server IP of the Private Cloud.
	DnsServerIp pulumi.StringPtrInput `pulumi:"dnsServerIp"`
	// Management CIDR used by VMware management appliances.
	ManagementCidr pulumi.StringInput `pulumi:"managementCidr"`
	// (Output)
	// The IP address layout version of the management IP address range.
	// Possible versions include:
	// * managementIpAddressLayoutVersion=1: Indicates the legacy IP address layout used by some existing private clouds. This is no longer supported for new private clouds
	//   as it does not support all features.
	// * managementIpAddressLayoutVersion=2: Indicates the latest IP address layout
	//   used by all newly created private clouds. This version supports all current features.
	ManagementIpAddressLayoutVersion pulumi.IntPtrInput `pulumi:"managementIpAddressLayoutVersion"`
	// The relative resource name of the VMware Engine network attached to the private cloud.
	// Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	// where {project} can either be a project number or a project ID.
	VmwareEngineNetwork pulumi.StringPtrInput `pulumi:"vmwareEngineNetwork"`
	// (Output)
	// The canonical name of the VMware Engine network in
	// the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}
	VmwareEngineNetworkCanonical pulumi.StringPtrInput `pulumi:"vmwareEngineNetworkCanonical"`
}

func (PrivateCloudNetworkConfigArgs) ElementType

func (PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigOutput

func (i PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigOutput() PrivateCloudNetworkConfigOutput

func (PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigOutputWithContext

func (i PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigOutputWithContext(ctx context.Context) PrivateCloudNetworkConfigOutput

func (PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigPtrOutput

func (i PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigPtrOutput() PrivateCloudNetworkConfigPtrOutput

func (PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigPtrOutputWithContext

func (i PrivateCloudNetworkConfigArgs) ToPrivateCloudNetworkConfigPtrOutputWithContext(ctx context.Context) PrivateCloudNetworkConfigPtrOutput

type PrivateCloudNetworkConfigInput

type PrivateCloudNetworkConfigInput interface {
	pulumi.Input

	ToPrivateCloudNetworkConfigOutput() PrivateCloudNetworkConfigOutput
	ToPrivateCloudNetworkConfigOutputWithContext(context.Context) PrivateCloudNetworkConfigOutput
}

PrivateCloudNetworkConfigInput is an input type that accepts PrivateCloudNetworkConfigArgs and PrivateCloudNetworkConfigOutput values. You can construct a concrete instance of `PrivateCloudNetworkConfigInput` via:

PrivateCloudNetworkConfigArgs{...}

type PrivateCloudNetworkConfigOutput

type PrivateCloudNetworkConfigOutput struct{ *pulumi.OutputState }

func (PrivateCloudNetworkConfigOutput) DnsServerIp added in v7.3.0

(Output) DNS Server IP of the Private Cloud.

func (PrivateCloudNetworkConfigOutput) ElementType

func (PrivateCloudNetworkConfigOutput) ManagementCidr

Management CIDR used by VMware management appliances.

func (PrivateCloudNetworkConfigOutput) ManagementIpAddressLayoutVersion

func (o PrivateCloudNetworkConfigOutput) ManagementIpAddressLayoutVersion() pulumi.IntPtrOutput

(Output) The IP address layout version of the management IP address range. Possible versions include:

  • managementIpAddressLayoutVersion=1: Indicates the legacy IP address layout used by some existing private clouds. This is no longer supported for new private clouds as it does not support all features.
  • managementIpAddressLayoutVersion=2: Indicates the latest IP address layout used by all newly created private clouds. This version supports all current features.

func (PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigOutput

func (o PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigOutput() PrivateCloudNetworkConfigOutput

func (PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigOutputWithContext

func (o PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigOutputWithContext(ctx context.Context) PrivateCloudNetworkConfigOutput

func (PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigPtrOutput

func (o PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigPtrOutput() PrivateCloudNetworkConfigPtrOutput

func (PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigPtrOutputWithContext

func (o PrivateCloudNetworkConfigOutput) ToPrivateCloudNetworkConfigPtrOutputWithContext(ctx context.Context) PrivateCloudNetworkConfigPtrOutput

func (PrivateCloudNetworkConfigOutput) VmwareEngineNetwork

func (o PrivateCloudNetworkConfigOutput) VmwareEngineNetwork() pulumi.StringPtrOutput

The relative resource name of the VMware Engine network attached to the private cloud. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project} can either be a project number or a project ID.

func (PrivateCloudNetworkConfigOutput) VmwareEngineNetworkCanonical

func (o PrivateCloudNetworkConfigOutput) VmwareEngineNetworkCanonical() pulumi.StringPtrOutput

(Output) The canonical name of the VMware Engine network in the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}

type PrivateCloudNetworkConfigPtrInput

type PrivateCloudNetworkConfigPtrInput interface {
	pulumi.Input

	ToPrivateCloudNetworkConfigPtrOutput() PrivateCloudNetworkConfigPtrOutput
	ToPrivateCloudNetworkConfigPtrOutputWithContext(context.Context) PrivateCloudNetworkConfigPtrOutput
}

PrivateCloudNetworkConfigPtrInput is an input type that accepts PrivateCloudNetworkConfigArgs, PrivateCloudNetworkConfigPtr and PrivateCloudNetworkConfigPtrOutput values. You can construct a concrete instance of `PrivateCloudNetworkConfigPtrInput` via:

        PrivateCloudNetworkConfigArgs{...}

or:

        nil

type PrivateCloudNetworkConfigPtrOutput

type PrivateCloudNetworkConfigPtrOutput struct{ *pulumi.OutputState }

func (PrivateCloudNetworkConfigPtrOutput) DnsServerIp added in v7.3.0

(Output) DNS Server IP of the Private Cloud.

func (PrivateCloudNetworkConfigPtrOutput) Elem

func (PrivateCloudNetworkConfigPtrOutput) ElementType

func (PrivateCloudNetworkConfigPtrOutput) ManagementCidr

Management CIDR used by VMware management appliances.

func (PrivateCloudNetworkConfigPtrOutput) ManagementIpAddressLayoutVersion

func (o PrivateCloudNetworkConfigPtrOutput) ManagementIpAddressLayoutVersion() pulumi.IntPtrOutput

(Output) The IP address layout version of the management IP address range. Possible versions include:

  • managementIpAddressLayoutVersion=1: Indicates the legacy IP address layout used by some existing private clouds. This is no longer supported for new private clouds as it does not support all features.
  • managementIpAddressLayoutVersion=2: Indicates the latest IP address layout used by all newly created private clouds. This version supports all current features.

func (PrivateCloudNetworkConfigPtrOutput) ToPrivateCloudNetworkConfigPtrOutput

func (o PrivateCloudNetworkConfigPtrOutput) ToPrivateCloudNetworkConfigPtrOutput() PrivateCloudNetworkConfigPtrOutput

func (PrivateCloudNetworkConfigPtrOutput) ToPrivateCloudNetworkConfigPtrOutputWithContext

func (o PrivateCloudNetworkConfigPtrOutput) ToPrivateCloudNetworkConfigPtrOutputWithContext(ctx context.Context) PrivateCloudNetworkConfigPtrOutput

func (PrivateCloudNetworkConfigPtrOutput) VmwareEngineNetwork

The relative resource name of the VMware Engine network attached to the private cloud. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId} where {project} can either be a project number or a project ID.

func (PrivateCloudNetworkConfigPtrOutput) VmwareEngineNetworkCanonical

func (o PrivateCloudNetworkConfigPtrOutput) VmwareEngineNetworkCanonical() pulumi.StringPtrOutput

(Output) The canonical name of the VMware Engine network in the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmwareEngineNetworkId}

type PrivateCloudNsx

type PrivateCloudNsx struct {
	// Fully qualified domain name of the appliance.
	Fqdn *string `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp *string `pulumi:"internalIp"`
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State *string `pulumi:"state"`
	// Version of the appliance.
	Version *string `pulumi:"version"`
}

type PrivateCloudNsxArgs

type PrivateCloudNsxArgs struct {
	// Fully qualified domain name of the appliance.
	Fqdn pulumi.StringPtrInput `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp pulumi.StringPtrInput `pulumi:"internalIp"`
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State pulumi.StringPtrInput `pulumi:"state"`
	// Version of the appliance.
	Version pulumi.StringPtrInput `pulumi:"version"`
}

func (PrivateCloudNsxArgs) ElementType

func (PrivateCloudNsxArgs) ElementType() reflect.Type

func (PrivateCloudNsxArgs) ToPrivateCloudNsxOutput

func (i PrivateCloudNsxArgs) ToPrivateCloudNsxOutput() PrivateCloudNsxOutput

func (PrivateCloudNsxArgs) ToPrivateCloudNsxOutputWithContext

func (i PrivateCloudNsxArgs) ToPrivateCloudNsxOutputWithContext(ctx context.Context) PrivateCloudNsxOutput

type PrivateCloudNsxArray

type PrivateCloudNsxArray []PrivateCloudNsxInput

func (PrivateCloudNsxArray) ElementType

func (PrivateCloudNsxArray) ElementType() reflect.Type

func (PrivateCloudNsxArray) ToPrivateCloudNsxArrayOutput

func (i PrivateCloudNsxArray) ToPrivateCloudNsxArrayOutput() PrivateCloudNsxArrayOutput

func (PrivateCloudNsxArray) ToPrivateCloudNsxArrayOutputWithContext

func (i PrivateCloudNsxArray) ToPrivateCloudNsxArrayOutputWithContext(ctx context.Context) PrivateCloudNsxArrayOutput

type PrivateCloudNsxArrayInput

type PrivateCloudNsxArrayInput interface {
	pulumi.Input

	ToPrivateCloudNsxArrayOutput() PrivateCloudNsxArrayOutput
	ToPrivateCloudNsxArrayOutputWithContext(context.Context) PrivateCloudNsxArrayOutput
}

PrivateCloudNsxArrayInput is an input type that accepts PrivateCloudNsxArray and PrivateCloudNsxArrayOutput values. You can construct a concrete instance of `PrivateCloudNsxArrayInput` via:

PrivateCloudNsxArray{ PrivateCloudNsxArgs{...} }

type PrivateCloudNsxArrayOutput

type PrivateCloudNsxArrayOutput struct{ *pulumi.OutputState }

func (PrivateCloudNsxArrayOutput) ElementType

func (PrivateCloudNsxArrayOutput) ElementType() reflect.Type

func (PrivateCloudNsxArrayOutput) Index

func (PrivateCloudNsxArrayOutput) ToPrivateCloudNsxArrayOutput

func (o PrivateCloudNsxArrayOutput) ToPrivateCloudNsxArrayOutput() PrivateCloudNsxArrayOutput

func (PrivateCloudNsxArrayOutput) ToPrivateCloudNsxArrayOutputWithContext

func (o PrivateCloudNsxArrayOutput) ToPrivateCloudNsxArrayOutputWithContext(ctx context.Context) PrivateCloudNsxArrayOutput

type PrivateCloudNsxInput

type PrivateCloudNsxInput interface {
	pulumi.Input

	ToPrivateCloudNsxOutput() PrivateCloudNsxOutput
	ToPrivateCloudNsxOutputWithContext(context.Context) PrivateCloudNsxOutput
}

PrivateCloudNsxInput is an input type that accepts PrivateCloudNsxArgs and PrivateCloudNsxOutput values. You can construct a concrete instance of `PrivateCloudNsxInput` via:

PrivateCloudNsxArgs{...}

type PrivateCloudNsxOutput

type PrivateCloudNsxOutput struct{ *pulumi.OutputState }

func (PrivateCloudNsxOutput) ElementType

func (PrivateCloudNsxOutput) ElementType() reflect.Type

func (PrivateCloudNsxOutput) Fqdn

Fully qualified domain name of the appliance.

func (PrivateCloudNsxOutput) InternalIp

Internal IP address of the appliance.

func (PrivateCloudNsxOutput) State

State of the appliance. Possible values are: `ACTIVE`, `CREATING`.

func (PrivateCloudNsxOutput) ToPrivateCloudNsxOutput

func (o PrivateCloudNsxOutput) ToPrivateCloudNsxOutput() PrivateCloudNsxOutput

func (PrivateCloudNsxOutput) ToPrivateCloudNsxOutputWithContext

func (o PrivateCloudNsxOutput) ToPrivateCloudNsxOutputWithContext(ctx context.Context) PrivateCloudNsxOutput

func (PrivateCloudNsxOutput) Version

Version of the appliance.

type PrivateCloudOutput

type PrivateCloudOutput struct{ *pulumi.OutputState }

func (PrivateCloudOutput) Description

func (o PrivateCloudOutput) Description() pulumi.StringPtrOutput

User-provided description for this private cloud.

func (PrivateCloudOutput) ElementType

func (PrivateCloudOutput) ElementType() reflect.Type

func (PrivateCloudOutput) Hcxes

Details about a HCX Cloud Manager appliance. Structure is documented below.

func (PrivateCloudOutput) Location

func (o PrivateCloudOutput) Location() pulumi.StringOutput

The location where the PrivateCloud should reside.

func (PrivateCloudOutput) ManagementCluster

The management cluster for this private cloud. This used for creating and managing the default cluster. Structure is documented below.

func (PrivateCloudOutput) Name

The ID of the PrivateCloud.

func (PrivateCloudOutput) NetworkConfig

Network configuration in the consumer project with which the peering has to be done. Structure is documented below.

func (PrivateCloudOutput) Nsxes

Details about a NSX Manager appliance. Structure is documented below.

func (PrivateCloudOutput) Project

func (PrivateCloudOutput) State

State of the appliance. Possible values are: `ACTIVE`, `CREATING`.

func (PrivateCloudOutput) ToPrivateCloudOutput

func (o PrivateCloudOutput) ToPrivateCloudOutput() PrivateCloudOutput

func (PrivateCloudOutput) ToPrivateCloudOutputWithContext

func (o PrivateCloudOutput) ToPrivateCloudOutputWithContext(ctx context.Context) PrivateCloudOutput

func (PrivateCloudOutput) Type added in v7.4.0

Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]

func (PrivateCloudOutput) Uid

System-generated unique identifier for the resource.

func (PrivateCloudOutput) Vcenters

Details about a vCenter Server management appliance. Structure is documented below.

type PrivateCloudState

type PrivateCloudState struct {
	// User-provided description for this private cloud.
	Description pulumi.StringPtrInput
	// Details about a HCX Cloud Manager appliance.
	// Structure is documented below.
	Hcxes PrivateCloudHcxArrayInput
	// The location where the PrivateCloud should reside.
	Location pulumi.StringPtrInput
	// The management cluster for this private cloud. This used for creating and managing the default cluster.
	// Structure is documented below.
	ManagementCluster PrivateCloudManagementClusterPtrInput
	// The ID of the PrivateCloud.
	Name pulumi.StringPtrInput
	// Network configuration in the consumer project with which the peering has to be done.
	// Structure is documented below.
	NetworkConfig PrivateCloudNetworkConfigPtrInput
	// Details about a NSX Manager appliance.
	// Structure is documented below.
	Nsxes   PrivateCloudNsxArrayInput
	Project pulumi.StringPtrInput
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State pulumi.StringPtrInput
	// Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]
	Type pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
	// Details about a vCenter Server management appliance.
	// Structure is documented below.
	Vcenters PrivateCloudVcenterArrayInput
}

func (PrivateCloudState) ElementType

func (PrivateCloudState) ElementType() reflect.Type

type PrivateCloudVcenter

type PrivateCloudVcenter struct {
	// Fully qualified domain name of the appliance.
	Fqdn *string `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp *string `pulumi:"internalIp"`
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State *string `pulumi:"state"`
	// Version of the appliance.
	Version *string `pulumi:"version"`
}

type PrivateCloudVcenterArgs

type PrivateCloudVcenterArgs struct {
	// Fully qualified domain name of the appliance.
	Fqdn pulumi.StringPtrInput `pulumi:"fqdn"`
	// Internal IP address of the appliance.
	InternalIp pulumi.StringPtrInput `pulumi:"internalIp"`
	// State of the appliance.
	// Possible values are: `ACTIVE`, `CREATING`.
	State pulumi.StringPtrInput `pulumi:"state"`
	// Version of the appliance.
	Version pulumi.StringPtrInput `pulumi:"version"`
}

func (PrivateCloudVcenterArgs) ElementType

func (PrivateCloudVcenterArgs) ElementType() reflect.Type

func (PrivateCloudVcenterArgs) ToPrivateCloudVcenterOutput

func (i PrivateCloudVcenterArgs) ToPrivateCloudVcenterOutput() PrivateCloudVcenterOutput

func (PrivateCloudVcenterArgs) ToPrivateCloudVcenterOutputWithContext

func (i PrivateCloudVcenterArgs) ToPrivateCloudVcenterOutputWithContext(ctx context.Context) PrivateCloudVcenterOutput

type PrivateCloudVcenterArray

type PrivateCloudVcenterArray []PrivateCloudVcenterInput

func (PrivateCloudVcenterArray) ElementType

func (PrivateCloudVcenterArray) ElementType() reflect.Type

func (PrivateCloudVcenterArray) ToPrivateCloudVcenterArrayOutput

func (i PrivateCloudVcenterArray) ToPrivateCloudVcenterArrayOutput() PrivateCloudVcenterArrayOutput

func (PrivateCloudVcenterArray) ToPrivateCloudVcenterArrayOutputWithContext

func (i PrivateCloudVcenterArray) ToPrivateCloudVcenterArrayOutputWithContext(ctx context.Context) PrivateCloudVcenterArrayOutput

type PrivateCloudVcenterArrayInput

type PrivateCloudVcenterArrayInput interface {
	pulumi.Input

	ToPrivateCloudVcenterArrayOutput() PrivateCloudVcenterArrayOutput
	ToPrivateCloudVcenterArrayOutputWithContext(context.Context) PrivateCloudVcenterArrayOutput
}

PrivateCloudVcenterArrayInput is an input type that accepts PrivateCloudVcenterArray and PrivateCloudVcenterArrayOutput values. You can construct a concrete instance of `PrivateCloudVcenterArrayInput` via:

PrivateCloudVcenterArray{ PrivateCloudVcenterArgs{...} }

type PrivateCloudVcenterArrayOutput

type PrivateCloudVcenterArrayOutput struct{ *pulumi.OutputState }

func (PrivateCloudVcenterArrayOutput) ElementType

func (PrivateCloudVcenterArrayOutput) Index

func (PrivateCloudVcenterArrayOutput) ToPrivateCloudVcenterArrayOutput

func (o PrivateCloudVcenterArrayOutput) ToPrivateCloudVcenterArrayOutput() PrivateCloudVcenterArrayOutput

func (PrivateCloudVcenterArrayOutput) ToPrivateCloudVcenterArrayOutputWithContext

func (o PrivateCloudVcenterArrayOutput) ToPrivateCloudVcenterArrayOutputWithContext(ctx context.Context) PrivateCloudVcenterArrayOutput

type PrivateCloudVcenterInput

type PrivateCloudVcenterInput interface {
	pulumi.Input

	ToPrivateCloudVcenterOutput() PrivateCloudVcenterOutput
	ToPrivateCloudVcenterOutputWithContext(context.Context) PrivateCloudVcenterOutput
}

PrivateCloudVcenterInput is an input type that accepts PrivateCloudVcenterArgs and PrivateCloudVcenterOutput values. You can construct a concrete instance of `PrivateCloudVcenterInput` via:

PrivateCloudVcenterArgs{...}

type PrivateCloudVcenterOutput

type PrivateCloudVcenterOutput struct{ *pulumi.OutputState }

func (PrivateCloudVcenterOutput) ElementType

func (PrivateCloudVcenterOutput) ElementType() reflect.Type

func (PrivateCloudVcenterOutput) Fqdn

Fully qualified domain name of the appliance.

func (PrivateCloudVcenterOutput) InternalIp

Internal IP address of the appliance.

func (PrivateCloudVcenterOutput) State

State of the appliance. Possible values are: `ACTIVE`, `CREATING`.

func (PrivateCloudVcenterOutput) ToPrivateCloudVcenterOutput

func (o PrivateCloudVcenterOutput) ToPrivateCloudVcenterOutput() PrivateCloudVcenterOutput

func (PrivateCloudVcenterOutput) ToPrivateCloudVcenterOutputWithContext

func (o PrivateCloudVcenterOutput) ToPrivateCloudVcenterOutputWithContext(ctx context.Context) PrivateCloudVcenterOutput

func (PrivateCloudVcenterOutput) Version

Version of the appliance.

type Subnet added in v7.4.0

type Subnet struct {
	pulumi.CustomResourceState

	// 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".
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// DHCP address ranges.
	// Structure is documented below.
	DhcpAddressRanges SubnetDhcpAddressRangeArrayOutput `pulumi:"dhcpAddressRanges"`
	// The canonical identifier of the logical router that this subnet is attached to.
	GatewayId pulumi.StringOutput `pulumi:"gatewayId"`
	// The IP address of the gateway of this subnet. Must fall within the IP prefix defined above.
	GatewayIp pulumi.StringOutput `pulumi:"gatewayIp"`
	// The IP address range of the subnet in CIDR format.
	IpCidrRange pulumi.StringOutput `pulumi:"ipCidrRange"`
	// The ID of the subnet. For userDefined subnets, this name should be in the format of "service-n",
	// where n ranges from 1 to 5.
	//
	// ***
	Name pulumi.StringOutput `pulumi:"name"`
	// The resource name of the private cloud to create a new subnet 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
	Parent pulumi.StringOutput `pulumi:"parent"`
	// Whether the NSX-T configuration in the backend follows the standard configuration supported by Google Cloud.
	// If false, the subnet cannot be modified through Google Cloud, only through NSX-T directly.
	StandardConfig pulumi.BoolOutput `pulumi:"standardConfig"`
	// State of the subnet.
	State pulumi.StringOutput `pulumi:"state"`
	// The type of the subnet.
	Type pulumi.StringOutput `pulumi:"type"`
	// System-generated unique identifier for the resource.
	Uid pulumi.StringOutput `pulumi:"uid"`
	// 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".
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
	// VLAN ID of the VLAN on which the subnet is configured.
	VlanId pulumi.IntOutput `pulumi:"vlanId"`
}

Subnet in a private cloud. A Private Cloud contains two types of subnets: `management` subnets (such as vMotion) that are read-only,and `userDefined`, which can also be updated. This resource should be used to read and update `userDefined` subnets. To read `management` subnets, please utilize the subnet data source.

To get more information about Subnet, see:

* [API documentation](https://cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.privateClouds.subnets)

## Example Usage

### Vmware Engine Subnet User Defined

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vmwareengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwareengine.NewNetwork(ctx, "subnet-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, "subnet-pc", &vmwareengine.PrivateCloudArgs{
			Location:    pulumi.String("us-west1-a"),
			Name:        pulumi.String("sample-pc"),
			Description: pulumi.String("Sample test PC."),
			NetworkConfig: &vmwareengine.PrivateCloudNetworkConfigArgs{
				ManagementCidr:      pulumi.String("192.168.50.0/24"),
				VmwareEngineNetwork: subnet_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.NewSubnet(ctx, "vmw-engine-subnet", &vmwareengine.SubnetArgs{
			Name:        pulumi.String("service-1"),
			Parent:      subnet_pc.ID(),
			IpCidrRange: pulumi.String("192.168.100.0/26"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

Subnet can be imported using any of these accepted formats:

* `{{parent}}/subnets/{{name}}`

When using the `pulumi import` command, Subnet can be imported using one of the formats above. For example:

```sh $ pulumi import gcp:vmwareengine/subnet:Subnet default {{parent}}/subnets/{{name}} ```

func GetSubnet added in v7.4.0

func GetSubnet(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *SubnetState, opts ...pulumi.ResourceOption) (*Subnet, error)

GetSubnet gets an existing Subnet resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewSubnet added in v7.4.0

func NewSubnet(ctx *pulumi.Context,
	name string, args *SubnetArgs, opts ...pulumi.ResourceOption) (*Subnet, error)

NewSubnet registers a new resource with the given unique name, arguments, and options.

func (*Subnet) ElementType added in v7.4.0

func (*Subnet) ElementType() reflect.Type

func (*Subnet) ToSubnetOutput added in v7.4.0

func (i *Subnet) ToSubnetOutput() SubnetOutput

func (*Subnet) ToSubnetOutputWithContext added in v7.4.0

func (i *Subnet) ToSubnetOutputWithContext(ctx context.Context) SubnetOutput

type SubnetArgs added in v7.4.0

type SubnetArgs struct {
	// The IP address range of the subnet in CIDR format.
	IpCidrRange pulumi.StringInput
	// The ID of the subnet. For userDefined subnets, this name should be in the format of "service-n",
	// where n ranges from 1 to 5.
	//
	// ***
	Name pulumi.StringPtrInput
	// The resource name of the private cloud to create a new subnet 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
	Parent pulumi.StringInput
}

The set of arguments for constructing a Subnet resource.

func (SubnetArgs) ElementType added in v7.4.0

func (SubnetArgs) ElementType() reflect.Type

type SubnetArray added in v7.4.0

type SubnetArray []SubnetInput

func (SubnetArray) ElementType added in v7.4.0

func (SubnetArray) ElementType() reflect.Type

func (SubnetArray) ToSubnetArrayOutput added in v7.4.0

func (i SubnetArray) ToSubnetArrayOutput() SubnetArrayOutput

func (SubnetArray) ToSubnetArrayOutputWithContext added in v7.4.0

func (i SubnetArray) ToSubnetArrayOutputWithContext(ctx context.Context) SubnetArrayOutput

type SubnetArrayInput added in v7.4.0

type SubnetArrayInput interface {
	pulumi.Input

	ToSubnetArrayOutput() SubnetArrayOutput
	ToSubnetArrayOutputWithContext(context.Context) SubnetArrayOutput
}

SubnetArrayInput is an input type that accepts SubnetArray and SubnetArrayOutput values. You can construct a concrete instance of `SubnetArrayInput` via:

SubnetArray{ SubnetArgs{...} }

type SubnetArrayOutput added in v7.4.0

type SubnetArrayOutput struct{ *pulumi.OutputState }

func (SubnetArrayOutput) ElementType added in v7.4.0

func (SubnetArrayOutput) ElementType() reflect.Type

func (SubnetArrayOutput) Index added in v7.4.0

func (SubnetArrayOutput) ToSubnetArrayOutput added in v7.4.0

func (o SubnetArrayOutput) ToSubnetArrayOutput() SubnetArrayOutput

func (SubnetArrayOutput) ToSubnetArrayOutputWithContext added in v7.4.0

func (o SubnetArrayOutput) ToSubnetArrayOutputWithContext(ctx context.Context) SubnetArrayOutput

type SubnetDhcpAddressRange added in v7.4.0

type SubnetDhcpAddressRange struct {
	// (Output)
	// The first IP address of the range.
	FirstAddress *string `pulumi:"firstAddress"`
	// (Output)
	// The last IP address of the range.
	LastAddress *string `pulumi:"lastAddress"`
}

type SubnetDhcpAddressRangeArgs added in v7.4.0

type SubnetDhcpAddressRangeArgs struct {
	// (Output)
	// The first IP address of the range.
	FirstAddress pulumi.StringPtrInput `pulumi:"firstAddress"`
	// (Output)
	// The last IP address of the range.
	LastAddress pulumi.StringPtrInput `pulumi:"lastAddress"`
}

func (SubnetDhcpAddressRangeArgs) ElementType added in v7.4.0

func (SubnetDhcpAddressRangeArgs) ElementType() reflect.Type

func (SubnetDhcpAddressRangeArgs) ToSubnetDhcpAddressRangeOutput added in v7.4.0

func (i SubnetDhcpAddressRangeArgs) ToSubnetDhcpAddressRangeOutput() SubnetDhcpAddressRangeOutput

func (SubnetDhcpAddressRangeArgs) ToSubnetDhcpAddressRangeOutputWithContext added in v7.4.0

func (i SubnetDhcpAddressRangeArgs) ToSubnetDhcpAddressRangeOutputWithContext(ctx context.Context) SubnetDhcpAddressRangeOutput

type SubnetDhcpAddressRangeArray added in v7.4.0

type SubnetDhcpAddressRangeArray []SubnetDhcpAddressRangeInput

func (SubnetDhcpAddressRangeArray) ElementType added in v7.4.0

func (SubnetDhcpAddressRangeArray) ToSubnetDhcpAddressRangeArrayOutput added in v7.4.0

func (i SubnetDhcpAddressRangeArray) ToSubnetDhcpAddressRangeArrayOutput() SubnetDhcpAddressRangeArrayOutput

func (SubnetDhcpAddressRangeArray) ToSubnetDhcpAddressRangeArrayOutputWithContext added in v7.4.0

func (i SubnetDhcpAddressRangeArray) ToSubnetDhcpAddressRangeArrayOutputWithContext(ctx context.Context) SubnetDhcpAddressRangeArrayOutput

type SubnetDhcpAddressRangeArrayInput added in v7.4.0

type SubnetDhcpAddressRangeArrayInput interface {
	pulumi.Input

	ToSubnetDhcpAddressRangeArrayOutput() SubnetDhcpAddressRangeArrayOutput
	ToSubnetDhcpAddressRangeArrayOutputWithContext(context.Context) SubnetDhcpAddressRangeArrayOutput
}

SubnetDhcpAddressRangeArrayInput is an input type that accepts SubnetDhcpAddressRangeArray and SubnetDhcpAddressRangeArrayOutput values. You can construct a concrete instance of `SubnetDhcpAddressRangeArrayInput` via:

SubnetDhcpAddressRangeArray{ SubnetDhcpAddressRangeArgs{...} }

type SubnetDhcpAddressRangeArrayOutput added in v7.4.0

type SubnetDhcpAddressRangeArrayOutput struct{ *pulumi.OutputState }

func (SubnetDhcpAddressRangeArrayOutput) ElementType added in v7.4.0

func (SubnetDhcpAddressRangeArrayOutput) Index added in v7.4.0

func (SubnetDhcpAddressRangeArrayOutput) ToSubnetDhcpAddressRangeArrayOutput added in v7.4.0

func (o SubnetDhcpAddressRangeArrayOutput) ToSubnetDhcpAddressRangeArrayOutput() SubnetDhcpAddressRangeArrayOutput

func (SubnetDhcpAddressRangeArrayOutput) ToSubnetDhcpAddressRangeArrayOutputWithContext added in v7.4.0

func (o SubnetDhcpAddressRangeArrayOutput) ToSubnetDhcpAddressRangeArrayOutputWithContext(ctx context.Context) SubnetDhcpAddressRangeArrayOutput

type SubnetDhcpAddressRangeInput added in v7.4.0

type SubnetDhcpAddressRangeInput interface {
	pulumi.Input

	ToSubnetDhcpAddressRangeOutput() SubnetDhcpAddressRangeOutput
	ToSubnetDhcpAddressRangeOutputWithContext(context.Context) SubnetDhcpAddressRangeOutput
}

SubnetDhcpAddressRangeInput is an input type that accepts SubnetDhcpAddressRangeArgs and SubnetDhcpAddressRangeOutput values. You can construct a concrete instance of `SubnetDhcpAddressRangeInput` via:

SubnetDhcpAddressRangeArgs{...}

type SubnetDhcpAddressRangeOutput added in v7.4.0

type SubnetDhcpAddressRangeOutput struct{ *pulumi.OutputState }

func (SubnetDhcpAddressRangeOutput) ElementType added in v7.4.0

func (SubnetDhcpAddressRangeOutput) FirstAddress added in v7.4.0

(Output) The first IP address of the range.

func (SubnetDhcpAddressRangeOutput) LastAddress added in v7.4.0

(Output) The last IP address of the range.

func (SubnetDhcpAddressRangeOutput) ToSubnetDhcpAddressRangeOutput added in v7.4.0

func (o SubnetDhcpAddressRangeOutput) ToSubnetDhcpAddressRangeOutput() SubnetDhcpAddressRangeOutput

func (SubnetDhcpAddressRangeOutput) ToSubnetDhcpAddressRangeOutputWithContext added in v7.4.0

func (o SubnetDhcpAddressRangeOutput) ToSubnetDhcpAddressRangeOutputWithContext(ctx context.Context) SubnetDhcpAddressRangeOutput

type SubnetInput added in v7.4.0

type SubnetInput interface {
	pulumi.Input

	ToSubnetOutput() SubnetOutput
	ToSubnetOutputWithContext(ctx context.Context) SubnetOutput
}

type SubnetMap added in v7.4.0

type SubnetMap map[string]SubnetInput

func (SubnetMap) ElementType added in v7.4.0

func (SubnetMap) ElementType() reflect.Type

func (SubnetMap) ToSubnetMapOutput added in v7.4.0

func (i SubnetMap) ToSubnetMapOutput() SubnetMapOutput

func (SubnetMap) ToSubnetMapOutputWithContext added in v7.4.0

func (i SubnetMap) ToSubnetMapOutputWithContext(ctx context.Context) SubnetMapOutput

type SubnetMapInput added in v7.4.0

type SubnetMapInput interface {
	pulumi.Input

	ToSubnetMapOutput() SubnetMapOutput
	ToSubnetMapOutputWithContext(context.Context) SubnetMapOutput
}

SubnetMapInput is an input type that accepts SubnetMap and SubnetMapOutput values. You can construct a concrete instance of `SubnetMapInput` via:

SubnetMap{ "key": SubnetArgs{...} }

type SubnetMapOutput added in v7.4.0

type SubnetMapOutput struct{ *pulumi.OutputState }

func (SubnetMapOutput) ElementType added in v7.4.0

func (SubnetMapOutput) ElementType() reflect.Type

func (SubnetMapOutput) MapIndex added in v7.4.0

func (SubnetMapOutput) ToSubnetMapOutput added in v7.4.0

func (o SubnetMapOutput) ToSubnetMapOutput() SubnetMapOutput

func (SubnetMapOutput) ToSubnetMapOutputWithContext added in v7.4.0

func (o SubnetMapOutput) ToSubnetMapOutputWithContext(ctx context.Context) SubnetMapOutput

type SubnetOutput added in v7.4.0

type SubnetOutput struct{ *pulumi.OutputState }

func (SubnetOutput) CreateTime added in v7.4.0

func (o SubnetOutput) CreateTime() pulumi.StringOutput

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".

func (SubnetOutput) DhcpAddressRanges added in v7.4.0

func (o SubnetOutput) DhcpAddressRanges() SubnetDhcpAddressRangeArrayOutput

DHCP address ranges. Structure is documented below.

func (SubnetOutput) ElementType added in v7.4.0

func (SubnetOutput) ElementType() reflect.Type

func (SubnetOutput) GatewayId added in v7.4.0

func (o SubnetOutput) GatewayId() pulumi.StringOutput

The canonical identifier of the logical router that this subnet is attached to.

func (SubnetOutput) GatewayIp added in v7.4.0

func (o SubnetOutput) GatewayIp() pulumi.StringOutput

The IP address of the gateway of this subnet. Must fall within the IP prefix defined above.

func (SubnetOutput) IpCidrRange added in v7.4.0

func (o SubnetOutput) IpCidrRange() pulumi.StringOutput

The IP address range of the subnet in CIDR format.

func (SubnetOutput) Name added in v7.4.0

func (o SubnetOutput) Name() pulumi.StringOutput

The ID of the subnet. For userDefined subnets, this name should be in the format of "service-n", where n ranges from 1 to 5.

***

func (SubnetOutput) Parent added in v7.4.0

func (o SubnetOutput) Parent() pulumi.StringOutput

The resource name of the private cloud to create a new subnet 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

func (SubnetOutput) StandardConfig added in v7.4.0

func (o SubnetOutput) StandardConfig() pulumi.BoolOutput

Whether the NSX-T configuration in the backend follows the standard configuration supported by Google Cloud. If false, the subnet cannot be modified through Google Cloud, only through NSX-T directly.

func (SubnetOutput) State added in v7.4.0

func (o SubnetOutput) State() pulumi.StringOutput

State of the subnet.

func (SubnetOutput) ToSubnetOutput added in v7.4.0

func (o SubnetOutput) ToSubnetOutput() SubnetOutput

func (SubnetOutput) ToSubnetOutputWithContext added in v7.4.0

func (o SubnetOutput) ToSubnetOutputWithContext(ctx context.Context) SubnetOutput

func (SubnetOutput) Type added in v7.4.0

func (o SubnetOutput) Type() pulumi.StringOutput

The type of the subnet.

func (SubnetOutput) Uid added in v7.4.0

System-generated unique identifier for the resource.

func (SubnetOutput) UpdateTime added in v7.4.0

func (o SubnetOutput) UpdateTime() pulumi.StringOutput

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".

func (SubnetOutput) VlanId added in v7.4.0

func (o SubnetOutput) VlanId() pulumi.IntOutput

VLAN ID of the VLAN on which the subnet is configured.

type SubnetState added in v7.4.0

type SubnetState struct {
	// 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".
	CreateTime pulumi.StringPtrInput
	// DHCP address ranges.
	// Structure is documented below.
	DhcpAddressRanges SubnetDhcpAddressRangeArrayInput
	// The canonical identifier of the logical router that this subnet is attached to.
	GatewayId pulumi.StringPtrInput
	// The IP address of the gateway of this subnet. Must fall within the IP prefix defined above.
	GatewayIp pulumi.StringPtrInput
	// The IP address range of the subnet in CIDR format.
	IpCidrRange pulumi.StringPtrInput
	// The ID of the subnet. For userDefined subnets, this name should be in the format of "service-n",
	// where n ranges from 1 to 5.
	//
	// ***
	Name pulumi.StringPtrInput
	// The resource name of the private cloud to create a new subnet 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
	Parent pulumi.StringPtrInput
	// Whether the NSX-T configuration in the backend follows the standard configuration supported by Google Cloud.
	// If false, the subnet cannot be modified through Google Cloud, only through NSX-T directly.
	StandardConfig pulumi.BoolPtrInput
	// State of the subnet.
	State pulumi.StringPtrInput
	// The type of the subnet.
	Type pulumi.StringPtrInput
	// System-generated unique identifier for the resource.
	Uid pulumi.StringPtrInput
	// 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".
	UpdateTime pulumi.StringPtrInput
	// VLAN ID of the VLAN on which the subnet is configured.
	VlanId pulumi.IntPtrInput
}

func (SubnetState) ElementType added in v7.4.0

func (SubnetState) ElementType() reflect.Type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL