All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.apigee.kotlin.NatAddress.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.apigee.kotlin

import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit

/**
 * Builder for [NatAddress].
 */
@PulumiTagMarker
public class NatAddressResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: NatAddressArgs = NatAddressArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend NatAddressArgsBuilder.() -> Unit) {
        val builder = NatAddressArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): NatAddress {
        val builtJavaResource = com.pulumi.gcp.apigee.NatAddress(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return NatAddress(builtJavaResource)
    }
}

/**
 * Apigee NAT (network address translation) address. A NAT address is a static external IP address used for Internet egress traffic. This is not avaible for Apigee hybrid.
 * Apigee NAT addresses are not automatically activated because they might require explicit allow entries on the target systems first. See https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations.instances.natAddresses/activate
 * To get more information about NatAddress, see:
 * * [API documentation](https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations.instances.natAddresses)
 * * How-to Guides
 *     * [Provisioning NAT IPs](https://cloud.google.com/apigee/docs/api-platform/security/nat-provisioning)
 * ## Example Usage
 * ### Apigee Nat Address Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const current = gcp.organizations.getClientConfig({});
 * const apigeeNetwork = new gcp.compute.Network("apigee_network", {name: "apigee-network"});
 * const apigeeRange = new gcp.compute.GlobalAddress("apigee_range", {
 *     name: "apigee-range",
 *     purpose: "VPC_PEERING",
 *     addressType: "INTERNAL",
 *     prefixLength: 21,
 *     network: apigeeNetwork.id,
 * });
 * const apigeeVpcConnection = new gcp.servicenetworking.Connection("apigee_vpc_connection", {
 *     network: apigeeNetwork.id,
 *     service: "servicenetworking.googleapis.com",
 *     reservedPeeringRanges: [apigeeRange.name],
 * });
 * const apigeeKeyring = new gcp.kms.KeyRing("apigee_keyring", {
 *     name: "apigee-keyring",
 *     location: "us-central1",
 * });
 * const apigeeKey = new gcp.kms.CryptoKey("apigee_key", {
 *     name: "apigee-key",
 *     keyRing: apigeeKeyring.id,
 * });
 * const apigeeSa = new gcp.projects.ServiceIdentity("apigee_sa", {
 *     project: project.projectId,
 *     service: apigee.service,
 * });
 * const apigeeSaKeyuser = new gcp.kms.CryptoKeyIAMMember("apigee_sa_keyuser", {
 *     cryptoKeyId: apigeeKey.id,
 *     role: "roles/cloudkms.cryptoKeyEncrypterDecrypter",
 *     member: apigeeSa.member,
 * });
 * const apigeeOrg = new gcp.apigee.Organization("apigee_org", {
 *     analyticsRegion: "us-central1",
 *     displayName: "apigee-org",
 *     description: "Terraform-provisioned Apigee Org.",
 *     projectId: current.then(current => current.project),
 *     authorizedNetwork: apigeeNetwork.id,
 *     runtimeDatabaseEncryptionKeyName: apigeeKey.id,
 * }, {
 *     dependsOn: [
 *         apigeeVpcConnection,
 *         apigeeSaKeyuser,
 *     ],
 * });
 * const apigeeInstance = new gcp.apigee.Instance("apigee_instance", {
 *     name: "apigee-instance",
 *     location: "us-central1",
 *     description: "Terraform-managed Apigee Runtime Instance",
 *     displayName: "apigee-instance",
 *     orgId: apigeeOrg.id,
 *     diskEncryptionKeyName: apigeeKey.id,
 * });
 * const apigee_nat = new gcp.apigee.NatAddress("apigee-nat", {
 *     name: "my-nat-address",
 *     instanceId: apigeeInstance.id,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * current = gcp.organizations.get_client_config()
 * apigee_network = gcp.compute.Network("apigee_network", name="apigee-network")
 * apigee_range = gcp.compute.GlobalAddress("apigee_range",
 *     name="apigee-range",
 *     purpose="VPC_PEERING",
 *     address_type="INTERNAL",
 *     prefix_length=21,
 *     network=apigee_network.id)
 * apigee_vpc_connection = gcp.servicenetworking.Connection("apigee_vpc_connection",
 *     network=apigee_network.id,
 *     service="servicenetworking.googleapis.com",
 *     reserved_peering_ranges=[apigee_range.name])
 * apigee_keyring = gcp.kms.KeyRing("apigee_keyring",
 *     name="apigee-keyring",
 *     location="us-central1")
 * apigee_key = gcp.kms.CryptoKey("apigee_key",
 *     name="apigee-key",
 *     key_ring=apigee_keyring.id)
 * apigee_sa = gcp.projects.ServiceIdentity("apigee_sa",
 *     project=project["projectId"],
 *     service=apigee["service"])
 * apigee_sa_keyuser = gcp.kms.CryptoKeyIAMMember("apigee_sa_keyuser",
 *     crypto_key_id=apigee_key.id,
 *     role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
 *     member=apigee_sa.member)
 * apigee_org = gcp.apigee.Organization("apigee_org",
 *     analytics_region="us-central1",
 *     display_name="apigee-org",
 *     description="Terraform-provisioned Apigee Org.",
 *     project_id=current.project,
 *     authorized_network=apigee_network.id,
 *     runtime_database_encryption_key_name=apigee_key.id,
 *     opts = pulumi.ResourceOptions(depends_on=[
 *             apigee_vpc_connection,
 *             apigee_sa_keyuser,
 *         ]))
 * apigee_instance = gcp.apigee.Instance("apigee_instance",
 *     name="apigee-instance",
 *     location="us-central1",
 *     description="Terraform-managed Apigee Runtime Instance",
 *     display_name="apigee-instance",
 *     org_id=apigee_org.id,
 *     disk_encryption_key_name=apigee_key.id)
 * apigee_nat = gcp.apigee.NatAddress("apigee-nat",
 *     name="my-nat-address",
 *     instance_id=apigee_instance.id)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var current = Gcp.Organizations.GetClientConfig.Invoke();
 *     var apigeeNetwork = new Gcp.Compute.Network("apigee_network", new()
 *     {
 *         Name = "apigee-network",
 *     });
 *     var apigeeRange = new Gcp.Compute.GlobalAddress("apigee_range", new()
 *     {
 *         Name = "apigee-range",
 *         Purpose = "VPC_PEERING",
 *         AddressType = "INTERNAL",
 *         PrefixLength = 21,
 *         Network = apigeeNetwork.Id,
 *     });
 *     var apigeeVpcConnection = new Gcp.ServiceNetworking.Connection("apigee_vpc_connection", new()
 *     {
 *         Network = apigeeNetwork.Id,
 *         Service = "servicenetworking.googleapis.com",
 *         ReservedPeeringRanges = new[]
 *         {
 *             apigeeRange.Name,
 *         },
 *     });
 *     var apigeeKeyring = new Gcp.Kms.KeyRing("apigee_keyring", new()
 *     {
 *         Name = "apigee-keyring",
 *         Location = "us-central1",
 *     });
 *     var apigeeKey = new Gcp.Kms.CryptoKey("apigee_key", new()
 *     {
 *         Name = "apigee-key",
 *         KeyRing = apigeeKeyring.Id,
 *     });
 *     var apigeeSa = new Gcp.Projects.ServiceIdentity("apigee_sa", new()
 *     {
 *         Project = project.ProjectId,
 *         Service = apigee.Service,
 *     });
 *     var apigeeSaKeyuser = new Gcp.Kms.CryptoKeyIAMMember("apigee_sa_keyuser", new()
 *     {
 *         CryptoKeyId = apigeeKey.Id,
 *         Role = "roles/cloudkms.cryptoKeyEncrypterDecrypter",
 *         Member = apigeeSa.Member,
 *     });
 *     var apigeeOrg = new Gcp.Apigee.Organization("apigee_org", new()
 *     {
 *         AnalyticsRegion = "us-central1",
 *         DisplayName = "apigee-org",
 *         Description = "Terraform-provisioned Apigee Org.",
 *         ProjectId = current.Apply(getClientConfigResult => getClientConfigResult.Project),
 *         AuthorizedNetwork = apigeeNetwork.Id,
 *         RuntimeDatabaseEncryptionKeyName = apigeeKey.Id,
 *     }, new CustomResourceOptions
 *     {
 *         DependsOn =
 *         {
 *             apigeeVpcConnection,
 *             apigeeSaKeyuser,
 *         },
 *     });
 *     var apigeeInstance = new Gcp.Apigee.Instance("apigee_instance", new()
 *     {
 *         Name = "apigee-instance",
 *         Location = "us-central1",
 *         Description = "Terraform-managed Apigee Runtime Instance",
 *         DisplayName = "apigee-instance",
 *         OrgId = apigeeOrg.Id,
 *         DiskEncryptionKeyName = apigeeKey.Id,
 *     });
 *     var apigee_nat = new Gcp.Apigee.NatAddress("apigee-nat", new()
 *     {
 *         Name = "my-nat-address",
 *         InstanceId = apigeeInstance.Id,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/apigee"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/kms"
 * 	"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/servicenetworking"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		current, err := organizations.GetClientConfig(ctx, nil, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeNetwork, err := compute.NewNetwork(ctx, "apigee_network", &compute.NetworkArgs{
 * 			Name: pulumi.String("apigee-network"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeRange, err := compute.NewGlobalAddress(ctx, "apigee_range", &compute.GlobalAddressArgs{
 * 			Name:         pulumi.String("apigee-range"),
 * 			Purpose:      pulumi.String("VPC_PEERING"),
 * 			AddressType:  pulumi.String("INTERNAL"),
 * 			PrefixLength: pulumi.Int(21),
 * 			Network:      apigeeNetwork.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeVpcConnection, err := servicenetworking.NewConnection(ctx, "apigee_vpc_connection", &servicenetworking.ConnectionArgs{
 * 			Network: apigeeNetwork.ID(),
 * 			Service: pulumi.String("servicenetworking.googleapis.com"),
 * 			ReservedPeeringRanges: pulumi.StringArray{
 * 				apigeeRange.Name,
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeKeyring, err := kms.NewKeyRing(ctx, "apigee_keyring", &kms.KeyRingArgs{
 * 			Name:     pulumi.String("apigee-keyring"),
 * 			Location: pulumi.String("us-central1"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeKey, err := kms.NewCryptoKey(ctx, "apigee_key", &kms.CryptoKeyArgs{
 * 			Name:    pulumi.String("apigee-key"),
 * 			KeyRing: apigeeKeyring.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeSa, err := projects.NewServiceIdentity(ctx, "apigee_sa", &projects.ServiceIdentityArgs{
 * 			Project: pulumi.Any(project.ProjectId),
 * 			Service: pulumi.Any(apigee.Service),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeSaKeyuser, err := kms.NewCryptoKeyIAMMember(ctx, "apigee_sa_keyuser", &kms.CryptoKeyIAMMemberArgs{
 * 			CryptoKeyId: apigeeKey.ID(),
 * 			Role:        pulumi.String("roles/cloudkms.cryptoKeyEncrypterDecrypter"),
 * 			Member:      apigeeSa.Member,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeOrg, err := apigee.NewOrganization(ctx, "apigee_org", &apigee.OrganizationArgs{
 * 			AnalyticsRegion:                  pulumi.String("us-central1"),
 * 			DisplayName:                      pulumi.String("apigee-org"),
 * 			Description:                      pulumi.String("Terraform-provisioned Apigee Org."),
 * 			ProjectId:                        pulumi.String(current.Project),
 * 			AuthorizedNetwork:                apigeeNetwork.ID(),
 * 			RuntimeDatabaseEncryptionKeyName: apigeeKey.ID(),
 * 		}, pulumi.DependsOn([]pulumi.Resource{
 * 			apigeeVpcConnection,
 * 			apigeeSaKeyuser,
 * 		}))
 * 		if err != nil {
 * 			return err
 * 		}
 * 		apigeeInstance, err := apigee.NewInstance(ctx, "apigee_instance", &apigee.InstanceArgs{
 * 			Name:                  pulumi.String("apigee-instance"),
 * 			Location:              pulumi.String("us-central1"),
 * 			Description:           pulumi.String("Terraform-managed Apigee Runtime Instance"),
 * 			DisplayName:           pulumi.String("apigee-instance"),
 * 			OrgId:                 apigeeOrg.ID(),
 * 			DiskEncryptionKeyName: apigeeKey.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = apigee.NewNatAddress(ctx, "apigee-nat", &apigee.NatAddressArgs{
 * 			Name:       pulumi.String("my-nat-address"),
 * 			InstanceId: apigeeInstance.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.gcp.organizations.OrganizationsFunctions;
 * import com.pulumi.gcp.compute.Network;
 * import com.pulumi.gcp.compute.NetworkArgs;
 * import com.pulumi.gcp.compute.GlobalAddress;
 * import com.pulumi.gcp.compute.GlobalAddressArgs;
 * import com.pulumi.gcp.servicenetworking.Connection;
 * import com.pulumi.gcp.servicenetworking.ConnectionArgs;
 * import com.pulumi.gcp.kms.KeyRing;
 * import com.pulumi.gcp.kms.KeyRingArgs;
 * import com.pulumi.gcp.kms.CryptoKey;
 * import com.pulumi.gcp.kms.CryptoKeyArgs;
 * import com.pulumi.gcp.projects.ServiceIdentity;
 * import com.pulumi.gcp.projects.ServiceIdentityArgs;
 * import com.pulumi.gcp.kms.CryptoKeyIAMMember;
 * import com.pulumi.gcp.kms.CryptoKeyIAMMemberArgs;
 * import com.pulumi.gcp.apigee.Organization;
 * import com.pulumi.gcp.apigee.OrganizationArgs;
 * import com.pulumi.gcp.apigee.Instance;
 * import com.pulumi.gcp.apigee.InstanceArgs;
 * import com.pulumi.gcp.apigee.NatAddress;
 * import com.pulumi.gcp.apigee.NatAddressArgs;
 * import com.pulumi.resources.CustomResourceOptions;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 *     public static void stack(Context ctx) {
 *         final var current = OrganizationsFunctions.getClientConfig();
 *         var apigeeNetwork = new Network("apigeeNetwork", NetworkArgs.builder()
 *             .name("apigee-network")
 *             .build());
 *         var apigeeRange = new GlobalAddress("apigeeRange", GlobalAddressArgs.builder()
 *             .name("apigee-range")
 *             .purpose("VPC_PEERING")
 *             .addressType("INTERNAL")
 *             .prefixLength(21)
 *             .network(apigeeNetwork.id())
 *             .build());
 *         var apigeeVpcConnection = new Connection("apigeeVpcConnection", ConnectionArgs.builder()
 *             .network(apigeeNetwork.id())
 *             .service("servicenetworking.googleapis.com")
 *             .reservedPeeringRanges(apigeeRange.name())
 *             .build());
 *         var apigeeKeyring = new KeyRing("apigeeKeyring", KeyRingArgs.builder()
 *             .name("apigee-keyring")
 *             .location("us-central1")
 *             .build());
 *         var apigeeKey = new CryptoKey("apigeeKey", CryptoKeyArgs.builder()
 *             .name("apigee-key")
 *             .keyRing(apigeeKeyring.id())
 *             .build());
 *         var apigeeSa = new ServiceIdentity("apigeeSa", ServiceIdentityArgs.builder()
 *             .project(project.projectId())
 *             .service(apigee.service())
 *             .build());
 *         var apigeeSaKeyuser = new CryptoKeyIAMMember("apigeeSaKeyuser", CryptoKeyIAMMemberArgs.builder()
 *             .cryptoKeyId(apigeeKey.id())
 *             .role("roles/cloudkms.cryptoKeyEncrypterDecrypter")
 *             .member(apigeeSa.member())
 *             .build());
 *         var apigeeOrg = new Organization("apigeeOrg", OrganizationArgs.builder()
 *             .analyticsRegion("us-central1")
 *             .displayName("apigee-org")
 *             .description("Terraform-provisioned Apigee Org.")
 *             .projectId(current.applyValue(getClientConfigResult -> getClientConfigResult.project()))
 *             .authorizedNetwork(apigeeNetwork.id())
 *             .runtimeDatabaseEncryptionKeyName(apigeeKey.id())
 *             .build(), CustomResourceOptions.builder()
 *                 .dependsOn(
 *                     apigeeVpcConnection,
 *                     apigeeSaKeyuser)
 *                 .build());
 *         var apigeeInstance = new Instance("apigeeInstance", InstanceArgs.builder()
 *             .name("apigee-instance")
 *             .location("us-central1")
 *             .description("Terraform-managed Apigee Runtime Instance")
 *             .displayName("apigee-instance")
 *             .orgId(apigeeOrg.id())
 *             .diskEncryptionKeyName(apigeeKey.id())
 *             .build());
 *         var apigee_nat = new NatAddress("apigee-nat", NatAddressArgs.builder()
 *             .name("my-nat-address")
 *             .instanceId(apigeeInstance.id())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   apigeeNetwork:
 *     type: gcp:compute:Network
 *     name: apigee_network
 *     properties:
 *       name: apigee-network
 *   apigeeRange:
 *     type: gcp:compute:GlobalAddress
 *     name: apigee_range
 *     properties:
 *       name: apigee-range
 *       purpose: VPC_PEERING
 *       addressType: INTERNAL
 *       prefixLength: 21
 *       network: ${apigeeNetwork.id}
 *   apigeeVpcConnection:
 *     type: gcp:servicenetworking:Connection
 *     name: apigee_vpc_connection
 *     properties:
 *       network: ${apigeeNetwork.id}
 *       service: servicenetworking.googleapis.com
 *       reservedPeeringRanges:
 *         - ${apigeeRange.name}
 *   apigeeKeyring:
 *     type: gcp:kms:KeyRing
 *     name: apigee_keyring
 *     properties:
 *       name: apigee-keyring
 *       location: us-central1
 *   apigeeKey:
 *     type: gcp:kms:CryptoKey
 *     name: apigee_key
 *     properties:
 *       name: apigee-key
 *       keyRing: ${apigeeKeyring.id}
 *   apigeeSa:
 *     type: gcp:projects:ServiceIdentity
 *     name: apigee_sa
 *     properties:
 *       project: ${project.projectId}
 *       service: ${apigee.service}
 *   apigeeSaKeyuser:
 *     type: gcp:kms:CryptoKeyIAMMember
 *     name: apigee_sa_keyuser
 *     properties:
 *       cryptoKeyId: ${apigeeKey.id}
 *       role: roles/cloudkms.cryptoKeyEncrypterDecrypter
 *       member: ${apigeeSa.member}
 *   apigeeOrg:
 *     type: gcp:apigee:Organization
 *     name: apigee_org
 *     properties:
 *       analyticsRegion: us-central1
 *       displayName: apigee-org
 *       description: Terraform-provisioned Apigee Org.
 *       projectId: ${current.project}
 *       authorizedNetwork: ${apigeeNetwork.id}
 *       runtimeDatabaseEncryptionKeyName: ${apigeeKey.id}
 *     options:
 *       dependson:
 *         - ${apigeeVpcConnection}
 *         - ${apigeeSaKeyuser}
 *   apigeeInstance:
 *     type: gcp:apigee:Instance
 *     name: apigee_instance
 *     properties:
 *       name: apigee-instance
 *       location: us-central1
 *       description: Terraform-managed Apigee Runtime Instance
 *       displayName: apigee-instance
 *       orgId: ${apigeeOrg.id}
 *       diskEncryptionKeyName: ${apigeeKey.id}
 *   apigee-nat:
 *     type: gcp:apigee:NatAddress
 *     properties:
 *       name: my-nat-address
 *       instanceId: ${apigeeInstance.id}
 * variables:
 *   current:
 *     fn::invoke:
 *       Function: gcp:organizations:getClientConfig
 *       Arguments: {}
 * ```
 * 
 * ## Import
 * NatAddress can be imported using any of these accepted formats:
 * * `{{instance_id}}/natAddresses/{{name}}`
 * * `{{instance_id}}/{{name}}`
 * When using the `pulumi import` command, NatAddress can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:apigee/natAddress:NatAddress default {{instance_id}}/natAddresses/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:apigee/natAddress:NatAddress default {{instance_id}}/{{name}}
 * ```
 */
public class NatAddress internal constructor(
    override val javaResource: com.pulumi.gcp.apigee.NatAddress,
) : KotlinCustomResource(javaResource, NatAddressMapper) {
    /**
     * The Apigee instance associated with the Apigee environment,
     * in the format `organizations/{{org_name}}/instances/{{instance_name}}`.
     * - - -
     */
    public val instanceId: Output
        get() = javaResource.instanceId().applyValue({ args0 -> args0 })

    /**
     * The allocated NAT IP address.
     */
    public val ipAddress: Output
        get() = javaResource.ipAddress().applyValue({ args0 -> args0 })

    /**
     * Resource ID of the NAT address.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * State of the NAT IP address.
     */
    public val state: Output
        get() = javaResource.state().applyValue({ args0 -> args0 })
}

public object NatAddressMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.gcp.apigee.NatAddress::class == javaResource::class

    override fun map(javaResource: Resource): NatAddress = NatAddress(
        javaResource as
            com.pulumi.gcp.apigee.NatAddress,
    )
}

/**
 * @see [NatAddress].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [NatAddress].
 */
public suspend fun natAddress(name: String, block: suspend NatAddressResourceBuilder.() -> Unit): NatAddress {
    val builder = NatAddressResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [NatAddress].
 * @param name The _unique_ name of the resulting resource.
 */
public fun natAddress(name: String): NatAddress {
    val builder = NatAddressResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy