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

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

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

package com.pulumi.gcp.apigee.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.apigee.OrganizationArgs.builder
import com.pulumi.gcp.apigee.kotlin.inputs.OrganizationPropertiesArgs
import com.pulumi.gcp.apigee.kotlin.inputs.OrganizationPropertiesArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 * An `Organization` is the top-level container in Apigee.
 * To get more information about Organization, see:
 * * [API documentation](https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations)
 * * How-to Guides
 *     * [Creating an API organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org)
 * ## Example Usage
 * ### Apigee Organization Cloud 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: 16,
 *     network: apigeeNetwork.id,
 * });
 * const apigeeVpcConnection = new gcp.servicenetworking.Connection("apigee_vpc_connection", {
 *     network: apigeeNetwork.id,
 *     service: "servicenetworking.googleapis.com",
 *     reservedPeeringRanges: [apigeeRange.name],
 * });
 * const org = new gcp.apigee.Organization("org", {
 *     analyticsRegion: "us-central1",
 *     projectId: current.then(current => current.project),
 *     authorizedNetwork: apigeeNetwork.id,
 * }, {
 *     dependsOn: [apigeeVpcConnection],
 * });
 * ```
 * ```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=16,
 *     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])
 * org = gcp.apigee.Organization("org",
 *     analytics_region="us-central1",
 *     project_id=current.project,
 *     authorized_network=apigee_network.id,
 *     opts = pulumi.ResourceOptions(depends_on=[apigee_vpc_connection]))
 * ```
 * ```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 = 16,
 *         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 org = new Gcp.Apigee.Organization("org", new()
 *     {
 *         AnalyticsRegion = "us-central1",
 *         ProjectId = current.Apply(getClientConfigResult => getClientConfigResult.Project),
 *         AuthorizedNetwork = apigeeNetwork.Id,
 *     }, new CustomResourceOptions
 *     {
 *         DependsOn =
 *         {
 *             apigeeVpcConnection,
 *         },
 *     });
 * });
 * ```
 * ```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/organizations"
 * 	"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(16),
 * 			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
 * 		}
 * 		_, err = apigee.NewOrganization(ctx, "org", &apigee.OrganizationArgs{
 * 			AnalyticsRegion:   pulumi.String("us-central1"),
 * 			ProjectId:         pulumi.String(current.Project),
 * 			AuthorizedNetwork: apigeeNetwork.ID(),
 * 		}, pulumi.DependsOn([]pulumi.Resource{
 * 			apigeeVpcConnection,
 * 		}))
 * 		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.apigee.Organization;
 * import com.pulumi.gcp.apigee.OrganizationArgs;
 * 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(16)
 *             .network(apigeeNetwork.id())
 *             .build());
 *         var apigeeVpcConnection = new Connection("apigeeVpcConnection", ConnectionArgs.builder()
 *             .network(apigeeNetwork.id())
 *             .service("servicenetworking.googleapis.com")
 *             .reservedPeeringRanges(apigeeRange.name())
 *             .build());
 *         var org = new Organization("org", OrganizationArgs.builder()
 *             .analyticsRegion("us-central1")
 *             .projectId(current.applyValue(getClientConfigResult -> getClientConfigResult.project()))
 *             .authorizedNetwork(apigeeNetwork.id())
 *             .build(), CustomResourceOptions.builder()
 *                 .dependsOn(apigeeVpcConnection)
 *                 .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: 16
 *       network: ${apigeeNetwork.id}
 *   apigeeVpcConnection:
 *     type: gcp:servicenetworking:Connection
 *     name: apigee_vpc_connection
 *     properties:
 *       network: ${apigeeNetwork.id}
 *       service: servicenetworking.googleapis.com
 *       reservedPeeringRanges:
 *         - ${apigeeRange.name}
 *   org:
 *     type: gcp:apigee:Organization
 *     properties:
 *       analyticsRegion: us-central1
 *       projectId: ${current.project}
 *       authorizedNetwork: ${apigeeNetwork.id}
 *     options:
 *       dependson:
 *         - ${apigeeVpcConnection}
 * variables:
 *   current:
 *     fn::invoke:
 *       Function: gcp:organizations:getClientConfig
 *       Arguments: {}
 * ```
 * 
 * ### Apigee Organization Cloud Basic Disable Vpc Peering
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const current = gcp.organizations.getClientConfig({});
 * const org = new gcp.apigee.Organization("org", {
 *     description: "Terraform-provisioned basic Apigee Org without VPC Peering.",
 *     analyticsRegion: "us-central1",
 *     projectId: current.then(current => current.project),
 *     disableVpcPeering: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * current = gcp.organizations.get_client_config()
 * org = gcp.apigee.Organization("org",
 *     description="Terraform-provisioned basic Apigee Org without VPC Peering.",
 *     analytics_region="us-central1",
 *     project_id=current.project,
 *     disable_vpc_peering=True)
 * ```
 * ```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 org = new Gcp.Apigee.Organization("org", new()
 *     {
 *         Description = "Terraform-provisioned basic Apigee Org without VPC Peering.",
 *         AnalyticsRegion = "us-central1",
 *         ProjectId = current.Apply(getClientConfigResult => getClientConfigResult.Project),
 *         DisableVpcPeering = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/apigee"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
 * 	"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
 * 		}
 * 		_, err = apigee.NewOrganization(ctx, "org", &apigee.OrganizationArgs{
 * 			Description:       pulumi.String("Terraform-provisioned basic Apigee Org without VPC Peering."),
 * 			AnalyticsRegion:   pulumi.String("us-central1"),
 * 			ProjectId:         pulumi.String(current.Project),
 * 			DisableVpcPeering: pulumi.Bool(true),
 * 		})
 * 		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.apigee.Organization;
 * import com.pulumi.gcp.apigee.OrganizationArgs;
 * 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 org = new Organization("org", OrganizationArgs.builder()
 *             .description("Terraform-provisioned basic Apigee Org without VPC Peering.")
 *             .analyticsRegion("us-central1")
 *             .projectId(current.applyValue(getClientConfigResult -> getClientConfigResult.project()))
 *             .disableVpcPeering(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   org:
 *     type: gcp:apigee:Organization
 *     properties:
 *       description: Terraform-provisioned basic Apigee Org without VPC Peering.
 *       analyticsRegion: us-central1
 *       projectId: ${current.project}
 *       disableVpcPeering: true
 * variables:
 *   current:
 *     fn::invoke:
 *       Function: gcp:organizations:getClientConfig
 *       Arguments: {}
 * ```
 * 
 * ### Apigee Organization Cloud Full
 * 
 * ```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: 16,
 *     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 org = new gcp.apigee.Organization("org", {
 *     analyticsRegion: "us-central1",
 *     displayName: "apigee-org",
 *     description: "Auto-provisioned Apigee Org.",
 *     projectId: current.then(current => current.project),
 *     authorizedNetwork: apigeeNetwork.id,
 *     runtimeDatabaseEncryptionKeyName: apigeeKey.id,
 * }, {
 *     dependsOn: [
 *         apigeeVpcConnection,
 *         apigeeSaKeyuser,
 *     ],
 * });
 * ```
 * ```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=16,
 *     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)
 * org = gcp.apigee.Organization("org",
 *     analytics_region="us-central1",
 *     display_name="apigee-org",
 *     description="Auto-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,
 *         ]))
 * ```
 * ```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 = 16,
 *         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 org = new Gcp.Apigee.Organization("org", new()
 *     {
 *         AnalyticsRegion = "us-central1",
 *         DisplayName = "apigee-org",
 *         Description = "Auto-provisioned Apigee Org.",
 *         ProjectId = current.Apply(getClientConfigResult => getClientConfigResult.Project),
 *         AuthorizedNetwork = apigeeNetwork.Id,
 *         RuntimeDatabaseEncryptionKeyName = apigeeKey.Id,
 *     }, new CustomResourceOptions
 *     {
 *         DependsOn =
 *         {
 *             apigeeVpcConnection,
 *             apigeeSaKeyuser,
 *         },
 *     });
 * });
 * ```
 * ```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(16),
 * 			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
 * 		}
 * 		_, err = apigee.NewOrganization(ctx, "org", &apigee.OrganizationArgs{
 * 			AnalyticsRegion:                  pulumi.String("us-central1"),
 * 			DisplayName:                      pulumi.String("apigee-org"),
 * 			Description:                      pulumi.String("Auto-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
 * 		}
 * 		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.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(16)
 *             .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 org = new Organization("org", OrganizationArgs.builder()
 *             .analyticsRegion("us-central1")
 *             .displayName("apigee-org")
 *             .description("Auto-provisioned Apigee Org.")
 *             .projectId(current.applyValue(getClientConfigResult -> getClientConfigResult.project()))
 *             .authorizedNetwork(apigeeNetwork.id())
 *             .runtimeDatabaseEncryptionKeyName(apigeeKey.id())
 *             .build(), CustomResourceOptions.builder()
 *                 .dependsOn(
 *                     apigeeVpcConnection,
 *                     apigeeSaKeyuser)
 *                 .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: 16
 *       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}
 *   org:
 *     type: gcp:apigee:Organization
 *     properties:
 *       analyticsRegion: us-central1
 *       displayName: apigee-org
 *       description: Auto-provisioned Apigee Org.
 *       projectId: ${current.project}
 *       authorizedNetwork: ${apigeeNetwork.id}
 *       runtimeDatabaseEncryptionKeyName: ${apigeeKey.id}
 *     options:
 *       dependson:
 *         - ${apigeeVpcConnection}
 *         - ${apigeeSaKeyuser}
 * variables:
 *   current:
 *     fn::invoke:
 *       Function: gcp:organizations:getClientConfig
 *       Arguments: {}
 * ```
 * 
 * ### Apigee Organization Cloud Full Disable Vpc Peering
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const current = gcp.organizations.getClientConfig({});
 * 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 org = new gcp.apigee.Organization("org", {
 *     analyticsRegion: "us-central1",
 *     displayName: "apigee-org",
 *     description: "Terraform-provisioned Apigee Org without VPC Peering.",
 *     projectId: current.then(current => current.project),
 *     disableVpcPeering: true,
 *     runtimeDatabaseEncryptionKeyName: apigeeKey.id,
 * }, {
 *     dependsOn: [apigeeSaKeyuser],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * current = gcp.organizations.get_client_config()
 * 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)
 * org = gcp.apigee.Organization("org",
 *     analytics_region="us-central1",
 *     display_name="apigee-org",
 *     description="Terraform-provisioned Apigee Org without VPC Peering.",
 *     project_id=current.project,
 *     disable_vpc_peering=True,
 *     runtime_database_encryption_key_name=apigee_key.id,
 *     opts = pulumi.ResourceOptions(depends_on=[apigee_sa_keyuser]))
 * ```
 * ```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 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 org = new Gcp.Apigee.Organization("org", new()
 *     {
 *         AnalyticsRegion = "us-central1",
 *         DisplayName = "apigee-org",
 *         Description = "Terraform-provisioned Apigee Org without VPC Peering.",
 *         ProjectId = current.Apply(getClientConfigResult => getClientConfigResult.Project),
 *         DisableVpcPeering = true,
 *         RuntimeDatabaseEncryptionKeyName = apigeeKey.Id,
 *     }, new CustomResourceOptions
 *     {
 *         DependsOn =
 *         {
 *             apigeeSaKeyuser,
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/apigee"
 * 	"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/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
 * 		}
 * 		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
 * 		}
 * 		_, err = apigee.NewOrganization(ctx, "org", &apigee.OrganizationArgs{
 * 			AnalyticsRegion:                  pulumi.String("us-central1"),
 * 			DisplayName:                      pulumi.String("apigee-org"),
 * 			Description:                      pulumi.String("Terraform-provisioned Apigee Org without VPC Peering."),
 * 			ProjectId:                        pulumi.String(current.Project),
 * 			DisableVpcPeering:                pulumi.Bool(true),
 * 			RuntimeDatabaseEncryptionKeyName: apigeeKey.ID(),
 * 		}, pulumi.DependsOn([]pulumi.Resource{
 * 			apigeeSaKeyuser,
 * 		}))
 * 		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.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.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 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 org = new Organization("org", OrganizationArgs.builder()
 *             .analyticsRegion("us-central1")
 *             .displayName("apigee-org")
 *             .description("Terraform-provisioned Apigee Org without VPC Peering.")
 *             .projectId(current.applyValue(getClientConfigResult -> getClientConfigResult.project()))
 *             .disableVpcPeering(true)
 *             .runtimeDatabaseEncryptionKeyName(apigeeKey.id())
 *             .build(), CustomResourceOptions.builder()
 *                 .dependsOn(apigeeSaKeyuser)
 *                 .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   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}
 *   org:
 *     type: gcp:apigee:Organization
 *     properties:
 *       analyticsRegion: us-central1
 *       displayName: apigee-org
 *       description: Terraform-provisioned Apigee Org without VPC Peering.
 *       projectId: ${current.project}
 *       disableVpcPeering: true
 *       runtimeDatabaseEncryptionKeyName: ${apigeeKey.id}
 *     options:
 *       dependson:
 *         - ${apigeeSaKeyuser}
 * variables:
 *   current:
 *     fn::invoke:
 *       Function: gcp:organizations:getClientConfig
 *       Arguments: {}
 * ```
 * 
 * ## Import
 * Organization can be imported using any of these accepted formats:
 * * `organizations/{{name}}`
 * * `{{name}}`
 * When using the `pulumi import` command, Organization can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:apigee/organization:Organization default organizations/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:apigee/organization:Organization default {{name}}
 * ```
 * @property analyticsRegion Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).
 * @property apiConsumerDataEncryptionKeyName Cloud KMS key name used for encrypting API consumer data.
 * @property apiConsumerDataLocation This field is needed only for customers using non-default data residency regions.
 * Apigee stores some control plane data only in single region.
 * This field determines which single region Apigee should use.
 * @property authorizedNetwork Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
 * See [Getting started with the Service Networking API](https://cloud.google.com/service-infrastructure/docs/service-networking/getting-started).
 * Valid only when `RuntimeType` is set to CLOUD. The value can be updated only when there are no runtime instances. For example: "default".
 * @property billingType Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing).
 * @property controlPlaneEncryptionKeyName Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
 * Only used for the data residency region "US" or "EU".
 * @property description Description of the Apigee organization.
 * @property disableVpcPeering Flag that specifies whether the VPC Peering through Private Google Access should be
 * disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
 * on the consumer project is not provided, in which case the flag should be set to `true`.
 * Valid only when `RuntimeType` is set to CLOUD. The value must be set before the creation
 * of any Apigee runtime instance and can be updated only when there are no runtime instances.
 * @property displayName The display name of the Apigee organization.
 * @property projectId The project ID associated with the Apigee organization.
 * - - -
 * @property properties Properties defined in the Apigee organization profile.
 * Structure is documented below.
 * @property retention Optional. This setting is applicable only for organizations that are soft-deleted (i.e., BillingType
 * is not EVALUATION). It controls how long Organization data will be retained after the initial delete
 * operation completes. During this period, the Organization may be restored to its last known state.
 * After this period, the Organization will no longer be able to be restored.
 * Default value is `DELETION_RETENTION_UNSPECIFIED`.
 * Possible values are: `DELETION_RETENTION_UNSPECIFIED`, `MINIMUM`.
 * @property runtimeDatabaseEncryptionKeyName Cloud KMS key name used for encrypting the data that is stored and replicated across runtime instances.
 * Update is not allowed after the organization is created.
 * If not specified, a Google-Managed encryption key will be used.
 * Valid only when `RuntimeType` is CLOUD. For example: `projects/foo/locations/us/keyRings/bar/cryptoKeys/baz`.
 * @property runtimeType Runtime type of the Apigee organization based on the Apigee subscription purchased.
 * Default value is `CLOUD`.
 * Possible values are: `CLOUD`, `HYBRID`.
 */
public data class OrganizationArgs(
    public val analyticsRegion: Output? = null,
    public val apiConsumerDataEncryptionKeyName: Output? = null,
    public val apiConsumerDataLocation: Output? = null,
    public val authorizedNetwork: Output? = null,
    public val billingType: Output? = null,
    public val controlPlaneEncryptionKeyName: Output? = null,
    public val description: Output? = null,
    public val disableVpcPeering: Output? = null,
    public val displayName: Output? = null,
    public val projectId: Output? = null,
    public val properties: Output? = null,
    public val retention: Output? = null,
    public val runtimeDatabaseEncryptionKeyName: Output? = null,
    public val runtimeType: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.apigee.OrganizationArgs =
        com.pulumi.gcp.apigee.OrganizationArgs.builder()
            .analyticsRegion(analyticsRegion?.applyValue({ args0 -> args0 }))
            .apiConsumerDataEncryptionKeyName(apiConsumerDataEncryptionKeyName?.applyValue({ args0 -> args0 }))
            .apiConsumerDataLocation(apiConsumerDataLocation?.applyValue({ args0 -> args0 }))
            .authorizedNetwork(authorizedNetwork?.applyValue({ args0 -> args0 }))
            .billingType(billingType?.applyValue({ args0 -> args0 }))
            .controlPlaneEncryptionKeyName(controlPlaneEncryptionKeyName?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .disableVpcPeering(disableVpcPeering?.applyValue({ args0 -> args0 }))
            .displayName(displayName?.applyValue({ args0 -> args0 }))
            .projectId(projectId?.applyValue({ args0 -> args0 }))
            .properties(properties?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .retention(retention?.applyValue({ args0 -> args0 }))
            .runtimeDatabaseEncryptionKeyName(runtimeDatabaseEncryptionKeyName?.applyValue({ args0 -> args0 }))
            .runtimeType(runtimeType?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [OrganizationArgs].
 */
@PulumiTagMarker
public class OrganizationArgsBuilder internal constructor() {
    private var analyticsRegion: Output? = null

    private var apiConsumerDataEncryptionKeyName: Output? = null

    private var apiConsumerDataLocation: Output? = null

    private var authorizedNetwork: Output? = null

    private var billingType: Output? = null

    private var controlPlaneEncryptionKeyName: Output? = null

    private var description: Output? = null

    private var disableVpcPeering: Output? = null

    private var displayName: Output? = null

    private var projectId: Output? = null

    private var properties: Output? = null

    private var retention: Output? = null

    private var runtimeDatabaseEncryptionKeyName: Output? = null

    private var runtimeType: Output? = null

    /**
     * @param value Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).
     */
    @JvmName("trchucsrptxamhfx")
    public suspend fun analyticsRegion(`value`: Output) {
        this.analyticsRegion = value
    }

    /**
     * @param value Cloud KMS key name used for encrypting API consumer data.
     */
    @JvmName("ugdmxjfceccrdopf")
    public suspend fun apiConsumerDataEncryptionKeyName(`value`: Output) {
        this.apiConsumerDataEncryptionKeyName = value
    }

    /**
     * @param value This field is needed only for customers using non-default data residency regions.
     * Apigee stores some control plane data only in single region.
     * This field determines which single region Apigee should use.
     */
    @JvmName("dsbortwwetugfscm")
    public suspend fun apiConsumerDataLocation(`value`: Output) {
        this.apiConsumerDataLocation = value
    }

    /**
     * @param value Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
     * See [Getting started with the Service Networking API](https://cloud.google.com/service-infrastructure/docs/service-networking/getting-started).
     * Valid only when `RuntimeType` is set to CLOUD. The value can be updated only when there are no runtime instances. For example: "default".
     */
    @JvmName("mgtisicevsibpoca")
    public suspend fun authorizedNetwork(`value`: Output) {
        this.authorizedNetwork = value
    }

    /**
     * @param value Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing).
     */
    @JvmName("egerugqhdkbqnyoh")
    public suspend fun billingType(`value`: Output) {
        this.billingType = value
    }

    /**
     * @param value Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
     * Only used for the data residency region "US" or "EU".
     */
    @JvmName("illaxwojwixpvflm")
    public suspend fun controlPlaneEncryptionKeyName(`value`: Output) {
        this.controlPlaneEncryptionKeyName = value
    }

    /**
     * @param value Description of the Apigee organization.
     */
    @JvmName("leckmrhnbynxlxrh")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value Flag that specifies whether the VPC Peering through Private Google Access should be
     * disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
     * on the consumer project is not provided, in which case the flag should be set to `true`.
     * Valid only when `RuntimeType` is set to CLOUD. The value must be set before the creation
     * of any Apigee runtime instance and can be updated only when there are no runtime instances.
     */
    @JvmName("ujerwsdxoqbfasfy")
    public suspend fun disableVpcPeering(`value`: Output) {
        this.disableVpcPeering = value
    }

    /**
     * @param value The display name of the Apigee organization.
     */
    @JvmName("aabdgwcuhfvhpfgu")
    public suspend fun displayName(`value`: Output) {
        this.displayName = value
    }

    /**
     * @param value The project ID associated with the Apigee organization.
     * - - -
     */
    @JvmName("awwgwnqnhwgdfjfp")
    public suspend fun projectId(`value`: Output) {
        this.projectId = value
    }

    /**
     * @param value Properties defined in the Apigee organization profile.
     * Structure is documented below.
     */
    @JvmName("nqleslbpsybwkdih")
    public suspend fun properties(`value`: Output) {
        this.properties = value
    }

    /**
     * @param value Optional. This setting is applicable only for organizations that are soft-deleted (i.e., BillingType
     * is not EVALUATION). It controls how long Organization data will be retained after the initial delete
     * operation completes. During this period, the Organization may be restored to its last known state.
     * After this period, the Organization will no longer be able to be restored.
     * Default value is `DELETION_RETENTION_UNSPECIFIED`.
     * Possible values are: `DELETION_RETENTION_UNSPECIFIED`, `MINIMUM`.
     */
    @JvmName("jgicialddwbqsqqx")
    public suspend fun retention(`value`: Output) {
        this.retention = value
    }

    /**
     * @param value Cloud KMS key name used for encrypting the data that is stored and replicated across runtime instances.
     * Update is not allowed after the organization is created.
     * If not specified, a Google-Managed encryption key will be used.
     * Valid only when `RuntimeType` is CLOUD. For example: `projects/foo/locations/us/keyRings/bar/cryptoKeys/baz`.
     */
    @JvmName("enmhcevlylrkftrb")
    public suspend fun runtimeDatabaseEncryptionKeyName(`value`: Output) {
        this.runtimeDatabaseEncryptionKeyName = value
    }

    /**
     * @param value Runtime type of the Apigee organization based on the Apigee subscription purchased.
     * Default value is `CLOUD`.
     * Possible values are: `CLOUD`, `HYBRID`.
     */
    @JvmName("kavvuuwjlaexophr")
    public suspend fun runtimeType(`value`: Output) {
        this.runtimeType = value
    }

    /**
     * @param value Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).
     */
    @JvmName("ntbgudbadqtycfux")
    public suspend fun analyticsRegion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.analyticsRegion = mapped
    }

    /**
     * @param value Cloud KMS key name used for encrypting API consumer data.
     */
    @JvmName("ebtysruosmssbqyi")
    public suspend fun apiConsumerDataEncryptionKeyName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.apiConsumerDataEncryptionKeyName = mapped
    }

    /**
     * @param value This field is needed only for customers using non-default data residency regions.
     * Apigee stores some control plane data only in single region.
     * This field determines which single region Apigee should use.
     */
    @JvmName("btpcoqraykasimpu")
    public suspend fun apiConsumerDataLocation(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.apiConsumerDataLocation = mapped
    }

    /**
     * @param value Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
     * See [Getting started with the Service Networking API](https://cloud.google.com/service-infrastructure/docs/service-networking/getting-started).
     * Valid only when `RuntimeType` is set to CLOUD. The value can be updated only when there are no runtime instances. For example: "default".
     */
    @JvmName("uwexrlvohcjsdcbp")
    public suspend fun authorizedNetwork(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.authorizedNetwork = mapped
    }

    /**
     * @param value Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing).
     */
    @JvmName("slalrhnwdrbnchvn")
    public suspend fun billingType(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.billingType = mapped
    }

    /**
     * @param value Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
     * Only used for the data residency region "US" or "EU".
     */
    @JvmName("axjsstscnaludcyl")
    public suspend fun controlPlaneEncryptionKeyName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.controlPlaneEncryptionKeyName = mapped
    }

    /**
     * @param value Description of the Apigee organization.
     */
    @JvmName("mmdummgktickimcr")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value Flag that specifies whether the VPC Peering through Private Google Access should be
     * disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
     * on the consumer project is not provided, in which case the flag should be set to `true`.
     * Valid only when `RuntimeType` is set to CLOUD. The value must be set before the creation
     * of any Apigee runtime instance and can be updated only when there are no runtime instances.
     */
    @JvmName("xwrrjavvmjkohmlf")
    public suspend fun disableVpcPeering(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.disableVpcPeering = mapped
    }

    /**
     * @param value The display name of the Apigee organization.
     */
    @JvmName("upoebuhnqxlxrnkp")
    public suspend fun displayName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.displayName = mapped
    }

    /**
     * @param value The project ID associated with the Apigee organization.
     * - - -
     */
    @JvmName("rvxaehyabcwwhncx")
    public suspend fun projectId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.projectId = mapped
    }

    /**
     * @param value Properties defined in the Apigee organization profile.
     * Structure is documented below.
     */
    @JvmName("aixhahkidruetkrg")
    public suspend fun properties(`value`: OrganizationPropertiesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.properties = mapped
    }

    /**
     * @param argument Properties defined in the Apigee organization profile.
     * Structure is documented below.
     */
    @JvmName("bdldpybmuhswndfg")
    public suspend fun properties(argument: suspend OrganizationPropertiesArgsBuilder.() -> Unit) {
        val toBeMapped = OrganizationPropertiesArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.properties = mapped
    }

    /**
     * @param value Optional. This setting is applicable only for organizations that are soft-deleted (i.e., BillingType
     * is not EVALUATION). It controls how long Organization data will be retained after the initial delete
     * operation completes. During this period, the Organization may be restored to its last known state.
     * After this period, the Organization will no longer be able to be restored.
     * Default value is `DELETION_RETENTION_UNSPECIFIED`.
     * Possible values are: `DELETION_RETENTION_UNSPECIFIED`, `MINIMUM`.
     */
    @JvmName("dsaamtpoamwsrhia")
    public suspend fun retention(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.retention = mapped
    }

    /**
     * @param value Cloud KMS key name used for encrypting the data that is stored and replicated across runtime instances.
     * Update is not allowed after the organization is created.
     * If not specified, a Google-Managed encryption key will be used.
     * Valid only when `RuntimeType` is CLOUD. For example: `projects/foo/locations/us/keyRings/bar/cryptoKeys/baz`.
     */
    @JvmName("nnudqmmlvhbltnfu")
    public suspend fun runtimeDatabaseEncryptionKeyName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.runtimeDatabaseEncryptionKeyName = mapped
    }

    /**
     * @param value Runtime type of the Apigee organization based on the Apigee subscription purchased.
     * Default value is `CLOUD`.
     * Possible values are: `CLOUD`, `HYBRID`.
     */
    @JvmName("vdmjktbnigeakfqq")
    public suspend fun runtimeType(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.runtimeType = mapped
    }

    internal fun build(): OrganizationArgs = OrganizationArgs(
        analyticsRegion = analyticsRegion,
        apiConsumerDataEncryptionKeyName = apiConsumerDataEncryptionKeyName,
        apiConsumerDataLocation = apiConsumerDataLocation,
        authorizedNetwork = authorizedNetwork,
        billingType = billingType,
        controlPlaneEncryptionKeyName = controlPlaneEncryptionKeyName,
        description = description,
        disableVpcPeering = disableVpcPeering,
        displayName = displayName,
        projectId = projectId,
        properties = properties,
        retention = retention,
        runtimeDatabaseEncryptionKeyName = runtimeDatabaseEncryptionKeyName,
        runtimeType = runtimeType,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy