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

com.pulumi.gcp.apigateway.kotlin.ApiConfigArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.apigateway.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.apigateway.ApiConfigArgs.builder
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigGatewayConfigArgs
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigGatewayConfigArgsBuilder
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigGrpcServiceArgs
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigGrpcServiceArgsBuilder
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigManagedServiceConfigArgs
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigManagedServiceConfigArgsBuilder
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigOpenapiDocumentArgs
import com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigOpenapiDocumentArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * An API Configuration is an association of an API Controller Config and a Gateway Config
 * To get more information about ApiConfig, see:
 * * [API documentation](https://cloud.google.com/api-gateway/docs/reference/rest/v1beta/projects.locations.apis.configs)
 * * How-to Guides
 *     * [Official Documentation](https://cloud.google.com/api-gateway/docs/creating-api-config)
 * ## Example Usage
 * ### Apigateway Api Config Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * import * as std from "@pulumi/std";
 * const apiCfg = new gcp.apigateway.Api("api_cfg", {apiId: "my-api"});
 * const apiCfgApiConfig = new gcp.apigateway.ApiConfig("api_cfg", {
 *     api: apiCfg.apiId,
 *     apiConfigId: "my-config",
 *     openapiDocuments: [{
 *         document: {
 *             path: "spec.yaml",
 *             contents: std.filebase64({
 *                 input: "test-fixtures/openapi.yaml",
 *             }).then(invoke => invoke.result),
 *         },
 *     }],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * import pulumi_std as std
 * api_cfg = gcp.apigateway.Api("api_cfg", api_id="my-api")
 * api_cfg_api_config = gcp.apigateway.ApiConfig("api_cfg",
 *     api=api_cfg.api_id,
 *     api_config_id="my-config",
 *     openapi_documents=[gcp.apigateway.ApiConfigOpenapiDocumentArgs(
 *         document=gcp.apigateway.ApiConfigOpenapiDocumentDocumentArgs(
 *             path="spec.yaml",
 *             contents=std.filebase64(input="test-fixtures/openapi.yaml").result,
 *         ),
 *     )])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * using Std = Pulumi.Std;
 * return await Deployment.RunAsync(() =>
 * {
 *     var apiCfg = new Gcp.ApiGateway.Api("api_cfg", new()
 *     {
 *         ApiId = "my-api",
 *     });
 *     var apiCfgApiConfig = new Gcp.ApiGateway.ApiConfig("api_cfg", new()
 *     {
 *         Api = apiCfg.ApiId,
 *         ApiConfigId = "my-config",
 *         OpenapiDocuments = new[]
 *         {
 *             new Gcp.ApiGateway.Inputs.ApiConfigOpenapiDocumentArgs
 *             {
 *                 Document = new Gcp.ApiGateway.Inputs.ApiConfigOpenapiDocumentDocumentArgs
 *                 {
 *                     Path = "spec.yaml",
 *                     Contents = Std.Filebase64.Invoke(new()
 *                     {
 *                         Input = "test-fixtures/openapi.yaml",
 *                     }).Apply(invoke => invoke.Result),
 *                 },
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/apigateway"
 * 	"github.com/pulumi/pulumi-std/sdk/go/std"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		apiCfg, err := apigateway.NewApi(ctx, "api_cfg", &apigateway.ApiArgs{
 * 			ApiId: pulumi.String("my-api"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		invokeFilebase64, err := std.Filebase64(ctx, &std.Filebase64Args{
 * 			Input: "test-fixtures/openapi.yaml",
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = apigateway.NewApiConfig(ctx, "api_cfg", &apigateway.ApiConfigArgs{
 * 			Api:         apiCfg.ApiId,
 * 			ApiConfigId: pulumi.String("my-config"),
 * 			OpenapiDocuments: apigateway.ApiConfigOpenapiDocumentArray{
 * 				&apigateway.ApiConfigOpenapiDocumentArgs{
 * 					Document: &apigateway.ApiConfigOpenapiDocumentDocumentArgs{
 * 						Path:     pulumi.String("spec.yaml"),
 * 						Contents: invokeFilebase64.Result,
 * 					},
 * 				},
 * 			},
 * 		})
 * 		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.apigateway.Api;
 * import com.pulumi.gcp.apigateway.ApiArgs;
 * import com.pulumi.gcp.apigateway.ApiConfig;
 * import com.pulumi.gcp.apigateway.ApiConfigArgs;
 * import com.pulumi.gcp.apigateway.inputs.ApiConfigOpenapiDocumentArgs;
 * import com.pulumi.gcp.apigateway.inputs.ApiConfigOpenapiDocumentDocumentArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 *     public static void stack(Context ctx) {
 *         var apiCfg = new Api("apiCfg", ApiArgs.builder()
 *             .apiId("my-api")
 *             .build());
 *         var apiCfgApiConfig = new ApiConfig("apiCfgApiConfig", ApiConfigArgs.builder()
 *             .api(apiCfg.apiId())
 *             .apiConfigId("my-config")
 *             .openapiDocuments(ApiConfigOpenapiDocumentArgs.builder()
 *                 .document(ApiConfigOpenapiDocumentDocumentArgs.builder()
 *                     .path("spec.yaml")
 *                     .contents(StdFunctions.filebase64(Filebase64Args.builder()
 *                         .input("test-fixtures/openapi.yaml")
 *                         .build()).result())
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   apiCfg:
 *     type: gcp:apigateway:Api
 *     name: api_cfg
 *     properties:
 *       apiId: my-api
 *   apiCfgApiConfig:
 *     type: gcp:apigateway:ApiConfig
 *     name: api_cfg
 *     properties:
 *       api: ${apiCfg.apiId}
 *       apiConfigId: my-config
 *       openapiDocuments:
 *         - document:
 *             path: spec.yaml
 *             contents:
 *               fn::invoke:
 *                 Function: std:filebase64
 *                 Arguments:
 *                   input: test-fixtures/openapi.yaml
 *                 Return: result
 * ```
 * 
 * ### Apigateway Api Config Grpc
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * import * as std from "@pulumi/std";
 * const apiCfg = new gcp.apigateway.Api("api_cfg", {apiId: "my-api"});
 * const apiCfgApiConfig = new gcp.apigateway.ApiConfig("api_cfg", {
 *     api: apiCfg.apiId,
 *     apiConfigId: "my-config",
 *     grpcServices: [{
 *         fileDescriptorSet: {
 *             path: "api_descriptor.pb",
 *             contents: std.filebase64({
 *                 input: "test-fixtures/api_descriptor.pb",
 *             }).then(invoke => invoke.result),
 *         },
 *     }],
 *     managedServiceConfigs: [{
 *         path: "api_config.yaml",
 *         contents: std.base64encodeOutput({
 *             input: pulumi.interpolate`type: google.api.Service
 * config_version: 3
 * name: ${apiCfg.managedService}
 * title: gRPC API example
 * apis:
 *   - name: endpoints.examples.bookstore.Bookstore
 * usage:
 *   rules:
 *   - selector: endpoints.examples.bookstore.Bookstore.ListShelves
 *     allow_unregistered_calls: true
 * backend:
 *   rules:
 *     - selector: "*"
 *       address: grpcs://example.com
 *       disable_auth: true
 * `,
 *         }).apply(invoke => invoke.result),
 *     }],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * import pulumi_std as std
 * api_cfg = gcp.apigateway.Api("api_cfg", api_id="my-api")
 * api_cfg_api_config = gcp.apigateway.ApiConfig("api_cfg",
 *     api=api_cfg.api_id,
 *     api_config_id="my-config",
 *     grpc_services=[gcp.apigateway.ApiConfigGrpcServiceArgs(
 *         file_descriptor_set=gcp.apigateway.ApiConfigGrpcServiceFileDescriptorSetArgs(
 *             path="api_descriptor.pb",
 *             contents=std.filebase64(input="test-fixtures/api_descriptor.pb").result,
 *         ),
 *     )],
 *     managed_service_configs=[gcp.apigateway.ApiConfigManagedServiceConfigArgs(
 *         path="api_config.yaml",
 *         contents=std.base64encode_output(input=api_cfg.managed_service.apply(lambda managed_service: f"""type: google.api.Service
 * config_version: 3
 * name: {managed_service}
 * title: gRPC API example
 * apis:
 *   - name: endpoints.examples.bookstore.Bookstore
 * usage:
 *   rules:
 *   - selector: endpoints.examples.bookstore.Bookstore.ListShelves
 *     allow_unregistered_calls: true
 * backend:
 *   rules:
 *     - selector: "*"
 *       address: grpcs://example.com
 *       disable_auth: true
 * """)).apply(lambda invoke: invoke.result),
 *     )])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * using Std = Pulumi.Std;
 * return await Deployment.RunAsync(() =>
 * {
 *     var apiCfg = new Gcp.ApiGateway.Api("api_cfg", new()
 *     {
 *         ApiId = "my-api",
 *     });
 *     var apiCfgApiConfig = new Gcp.ApiGateway.ApiConfig("api_cfg", new()
 *     {
 *         Api = apiCfg.ApiId,
 *         ApiConfigId = "my-config",
 *         GrpcServices = new[]
 *         {
 *             new Gcp.ApiGateway.Inputs.ApiConfigGrpcServiceArgs
 *             {
 *                 FileDescriptorSet = new Gcp.ApiGateway.Inputs.ApiConfigGrpcServiceFileDescriptorSetArgs
 *                 {
 *                     Path = "api_descriptor.pb",
 *                     Contents = Std.Filebase64.Invoke(new()
 *                     {
 *                         Input = "test-fixtures/api_descriptor.pb",
 *                     }).Apply(invoke => invoke.Result),
 *                 },
 *             },
 *         },
 *         ManagedServiceConfigs = new[]
 *         {
 *             new Gcp.ApiGateway.Inputs.ApiConfigManagedServiceConfigArgs
 *             {
 *                 Path = "api_config.yaml",
 *                 Contents = Std.Base64encode.Invoke(new()
 *                 {
 *                     Input = apiCfg.ManagedService.Apply(managedService => @$"type: google.api.Service
 * config_version: 3
 * name: {managedService}
 * title: gRPC API example
 * apis:
 *   - name: endpoints.examples.bookstore.Bookstore
 * usage:
 *   rules:
 *   - selector: endpoints.examples.bookstore.Bookstore.ListShelves
 *     allow_unregistered_calls: true
 * backend:
 *   rules:
 *     - selector: ""*""
 *       address: grpcs://example.com
 *       disable_auth: true
 * "),
 *                 }).Apply(invoke => invoke.Result),
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"fmt"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/apigateway"
 * 	"github.com/pulumi/pulumi-std/sdk/go/std"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		apiCfg, err := apigateway.NewApi(ctx, "api_cfg", &apigateway.ApiArgs{
 * 			ApiId: pulumi.String("my-api"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		invokeFilebase64, err := std.Filebase64(ctx, &std.Filebase64Args{
 * 			Input: "test-fixtures/api_descriptor.pb",
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = apigateway.NewApiConfig(ctx, "api_cfg", &apigateway.ApiConfigArgs{
 * 			Api:         apiCfg.ApiId,
 * 			ApiConfigId: pulumi.String("my-config"),
 * 			GrpcServices: apigateway.ApiConfigGrpcServiceArray{
 * 				&apigateway.ApiConfigGrpcServiceArgs{
 * 					FileDescriptorSet: &apigateway.ApiConfigGrpcServiceFileDescriptorSetArgs{
 * 						Path:     pulumi.String("api_descriptor.pb"),
 * 						Contents: invokeFilebase64.Result,
 * 					},
 * 				},
 * 			},
 * 			ManagedServiceConfigs: apigateway.ApiConfigManagedServiceConfigArray{
 * 				&apigateway.ApiConfigManagedServiceConfigArgs{
 * 					Path: pulumi.String("api_config.yaml"),
 * 					Contents: std.Base64encodeOutput(ctx, std.Base64encodeOutputArgs{
 * 						Input: apiCfg.ManagedService.ApplyT(func(managedService string) (string, error) {
 * 							return fmt.Sprintf(`type: google.api.Service
 * config_version: 3
 * name: %v
 * title: gRPC API example
 * apis:
 *   - name: endpoints.examples.bookstore.Bookstore
 * usage:
 *   rules:
 *   - selector: endpoints.examples.bookstore.Bookstore.ListShelves
 *     allow_unregistered_calls: true
 * backend:
 *   rules:
 *     - selector: "*"
 *       address: grpcs://example.com
 *       disable_auth: true
 * `, managedService), nil
 * 						}).(pulumi.StringOutput),
 * 					}, nil).ApplyT(func(invoke std.Base64encodeResult) (*string, error) {
 * 						return invoke.Result, nil
 * 					}).(pulumi.StringPtrOutput),
 * 				},
 * 			},
 * 		})
 * 		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.apigateway.Api;
 * import com.pulumi.gcp.apigateway.ApiArgs;
 * import com.pulumi.gcp.apigateway.ApiConfig;
 * import com.pulumi.gcp.apigateway.ApiConfigArgs;
 * import com.pulumi.gcp.apigateway.inputs.ApiConfigGrpcServiceArgs;
 * import com.pulumi.gcp.apigateway.inputs.ApiConfigGrpcServiceFileDescriptorSetArgs;
 * import com.pulumi.gcp.apigateway.inputs.ApiConfigManagedServiceConfigArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 *     public static void stack(Context ctx) {
 *         var apiCfg = new Api("apiCfg", ApiArgs.builder()
 *             .apiId("my-api")
 *             .build());
 *         var apiCfgApiConfig = new ApiConfig("apiCfgApiConfig", ApiConfigArgs.builder()
 *             .api(apiCfg.apiId())
 *             .apiConfigId("my-config")
 *             .grpcServices(ApiConfigGrpcServiceArgs.builder()
 *                 .fileDescriptorSet(ApiConfigGrpcServiceFileDescriptorSetArgs.builder()
 *                     .path("api_descriptor.pb")
 *                     .contents(StdFunctions.filebase64(Filebase64Args.builder()
 *                         .input("test-fixtures/api_descriptor.pb")
 *                         .build()).result())
 *                     .build())
 *                 .build())
 *             .managedServiceConfigs(ApiConfigManagedServiceConfigArgs.builder()
 *                 .path("api_config.yaml")
 *                 .contents(StdFunctions.base64encode().applyValue(invoke -> invoke.result()))
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   apiCfg:
 *     type: gcp:apigateway:Api
 *     name: api_cfg
 *     properties:
 *       apiId: my-api
 *   apiCfgApiConfig:
 *     type: gcp:apigateway:ApiConfig
 *     name: api_cfg
 *     properties:
 *       api: ${apiCfg.apiId}
 *       apiConfigId: my-config
 *       grpcServices:
 *         - fileDescriptorSet:
 *             path: api_descriptor.pb
 *             contents:
 *               fn::invoke:
 *                 Function: std:filebase64
 *                 Arguments:
 *                   input: test-fixtures/api_descriptor.pb
 *                 Return: result
 *       managedServiceConfigs:
 *         - path: api_config.yaml
 *           contents:
 *             fn::invoke:
 *               Function: std:base64encode
 *               Arguments:
 *                 input: |+
 *                   type: google.api.Service
 *                   config_version: 3
 *                   name: ${apiCfg.managedService}
 *                   title: gRPC API example
 *                   apis:
 *                     - name: endpoints.examples.bookstore.Bookstore
 *                   usage:
 *                     rules:
 *                     - selector: endpoints.examples.bookstore.Bookstore.ListShelves
 *                       allow_unregistered_calls: true
 *                   backend:
 *                     rules:
 *                       - selector: "*"
 *                         address: grpcs://example.com
 *                         disable_auth: true
 *               Return: result
 * ```
 * 
 * ## Import
 * ApiConfig can be imported using any of these accepted formats:
 * * `projects/{{project}}/locations/global/apis/{{api}}/configs/{{api_config_id}}`
 * * `{{project}}/{{api}}/{{api_config_id}}`
 * * `{{api}}/{{api_config_id}}`
 * When using the `pulumi import` command, ApiConfig can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:apigateway/apiConfig:ApiConfig default projects/{{project}}/locations/global/apis/{{api}}/configs/{{api_config_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:apigateway/apiConfig:ApiConfig default {{project}}/{{api}}/{{api_config_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:apigateway/apiConfig:ApiConfig default {{api}}/{{api_config_id}}
 * ```
 * @property api The API to attach the config to.
 * - - -
 * @property apiConfigId Identifier to assign to the API Config. Must be unique within scope of the parent resource(api).
 * @property apiConfigIdPrefix Creates a unique name beginning with the
 * specified prefix. If this and api_config_id are unspecified, a random value is chosen for the name.
 * @property displayName A user-visible name for the API.
 * @property gatewayConfig Immutable. Gateway specific configuration.
 * If not specified, backend authentication will be set to use OIDC authentication using the default compute service account
 * Structure is documented below.
 * @property grpcServices gRPC service definition files. If specified, openapiDocuments must not be included.
 * Structure is documented below.
 * @property labels Resource labels to represent user-provided metadata.
 * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
 * Please refer to the field `effective_labels` for all of the labels present on the resource.
 * @property managedServiceConfigs Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
 * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
 * Structure is documented below.
 * @property openapiDocuments OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
 * Structure is documented below.
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 */
public data class ApiConfigArgs(
    public val api: Output? = null,
    public val apiConfigId: Output? = null,
    public val apiConfigIdPrefix: Output? = null,
    public val displayName: Output? = null,
    public val gatewayConfig: Output? = null,
    public val grpcServices: Output>? = null,
    public val labels: Output>? = null,
    public val managedServiceConfigs: Output>? = null,
    public val openapiDocuments: Output>? = null,
    public val project: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.apigateway.ApiConfigArgs =
        com.pulumi.gcp.apigateway.ApiConfigArgs.builder()
            .api(api?.applyValue({ args0 -> args0 }))
            .apiConfigId(apiConfigId?.applyValue({ args0 -> args0 }))
            .apiConfigIdPrefix(apiConfigIdPrefix?.applyValue({ args0 -> args0 }))
            .displayName(displayName?.applyValue({ args0 -> args0 }))
            .gatewayConfig(gatewayConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .grpcServices(
                grpcServices?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .managedServiceConfigs(
                managedServiceConfigs?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 -> args0.toJava() })
                    })
                }),
            )
            .openapiDocuments(
                openapiDocuments?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .project(project?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ApiConfigArgs].
 */
@PulumiTagMarker
public class ApiConfigArgsBuilder internal constructor() {
    private var api: Output? = null

    private var apiConfigId: Output? = null

    private var apiConfigIdPrefix: Output? = null

    private var displayName: Output? = null

    private var gatewayConfig: Output? = null

    private var grpcServices: Output>? = null

    private var labels: Output>? = null

    private var managedServiceConfigs: Output>? = null

    private var openapiDocuments: Output>? = null

    private var project: Output? = null

    /**
     * @param value The API to attach the config to.
     * - - -
     */
    @JvmName("cskhrfqaxpjsmksa")
    public suspend fun api(`value`: Output) {
        this.api = value
    }

    /**
     * @param value Identifier to assign to the API Config. Must be unique within scope of the parent resource(api).
     */
    @JvmName("ggoollnmsbmpwigt")
    public suspend fun apiConfigId(`value`: Output) {
        this.apiConfigId = value
    }

    /**
     * @param value Creates a unique name beginning with the
     * specified prefix. If this and api_config_id are unspecified, a random value is chosen for the name.
     */
    @JvmName("aavfmxpxmadiuela")
    public suspend fun apiConfigIdPrefix(`value`: Output) {
        this.apiConfigIdPrefix = value
    }

    /**
     * @param value A user-visible name for the API.
     */
    @JvmName("hpamrwsipwswldhp")
    public suspend fun displayName(`value`: Output) {
        this.displayName = value
    }

    /**
     * @param value Immutable. Gateway specific configuration.
     * If not specified, backend authentication will be set to use OIDC authentication using the default compute service account
     * Structure is documented below.
     */
    @JvmName("tcfbxgrralqaqfcf")
    public suspend fun gatewayConfig(`value`: Output) {
        this.gatewayConfig = value
    }

    /**
     * @param value gRPC service definition files. If specified, openapiDocuments must not be included.
     * Structure is documented below.
     */
    @JvmName("nnjepvbsnrhtddsk")
    public suspend fun grpcServices(`value`: Output>) {
        this.grpcServices = value
    }

    @JvmName("gxsmumkjsefxtejn")
    public suspend fun grpcServices(vararg values: Output) {
        this.grpcServices = Output.all(values.asList())
    }

    /**
     * @param values gRPC service definition files. If specified, openapiDocuments must not be included.
     * Structure is documented below.
     */
    @JvmName("tjwwxsytwnqhxdtf")
    public suspend fun grpcServices(values: List>) {
        this.grpcServices = Output.all(values)
    }

    /**
     * @param value Resource labels to represent user-provided metadata.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("oetlxsvckhjelvpd")
    public suspend fun labels(`value`: Output>) {
        this.labels = value
    }

    /**
     * @param value Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
     * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
     * Structure is documented below.
     */
    @JvmName("uglawfmtmitmfgqi")
    public suspend fun managedServiceConfigs(`value`: Output>) {
        this.managedServiceConfigs = value
    }

    @JvmName("iywwopsrmxgmldrf")
    public suspend fun managedServiceConfigs(vararg values: Output) {
        this.managedServiceConfigs = Output.all(values.asList())
    }

    /**
     * @param values Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
     * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
     * Structure is documented below.
     */
    @JvmName("afcsmwbrbduksgcg")
    public suspend fun managedServiceConfigs(values: List>) {
        this.managedServiceConfigs = Output.all(values)
    }

    /**
     * @param value OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
     * Structure is documented below.
     */
    @JvmName("pfvhwaqrwcfxjxyj")
    public suspend fun openapiDocuments(`value`: Output>) {
        this.openapiDocuments = value
    }

    @JvmName("ydmpjgynjgclfykq")
    public suspend fun openapiDocuments(vararg values: Output) {
        this.openapiDocuments = Output.all(values.asList())
    }

    /**
     * @param values OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
     * Structure is documented below.
     */
    @JvmName("wtgccixmopmjbhcn")
    public suspend fun openapiDocuments(values: List>) {
        this.openapiDocuments = Output.all(values)
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("xkacxabghwsquhoq")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value The API to attach the config to.
     * - - -
     */
    @JvmName("otlhvaurhqfxnruk")
    public suspend fun api(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.api = mapped
    }

    /**
     * @param value Identifier to assign to the API Config. Must be unique within scope of the parent resource(api).
     */
    @JvmName("wfcyernqeeydnpnm")
    public suspend fun apiConfigId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.apiConfigId = mapped
    }

    /**
     * @param value Creates a unique name beginning with the
     * specified prefix. If this and api_config_id are unspecified, a random value is chosen for the name.
     */
    @JvmName("qjqixkoreerabfeu")
    public suspend fun apiConfigIdPrefix(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.apiConfigIdPrefix = mapped
    }

    /**
     * @param value A user-visible name for the API.
     */
    @JvmName("odeiljqatvcdeogf")
    public suspend fun displayName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.displayName = mapped
    }

    /**
     * @param value Immutable. Gateway specific configuration.
     * If not specified, backend authentication will be set to use OIDC authentication using the default compute service account
     * Structure is documented below.
     */
    @JvmName("qxlcpebuaeqecnyp")
    public suspend fun gatewayConfig(`value`: ApiConfigGatewayConfigArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.gatewayConfig = mapped
    }

    /**
     * @param argument Immutable. Gateway specific configuration.
     * If not specified, backend authentication will be set to use OIDC authentication using the default compute service account
     * Structure is documented below.
     */
    @JvmName("rayqcskhyerreefu")
    public suspend fun gatewayConfig(argument: suspend ApiConfigGatewayConfigArgsBuilder.() -> Unit) {
        val toBeMapped = ApiConfigGatewayConfigArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.gatewayConfig = mapped
    }

    /**
     * @param value gRPC service definition files. If specified, openapiDocuments must not be included.
     * Structure is documented below.
     */
    @JvmName("netqwjifpqrswpjl")
    public suspend fun grpcServices(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.grpcServices = mapped
    }

    /**
     * @param argument gRPC service definition files. If specified, openapiDocuments must not be included.
     * Structure is documented below.
     */
    @JvmName("orrmgleoesvcllfs")
    public suspend fun grpcServices(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            ApiConfigGrpcServiceArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.grpcServices = mapped
    }

    /**
     * @param argument gRPC service definition files. If specified, openapiDocuments must not be included.
     * Structure is documented below.
     */
    @JvmName("fuqcaymsvlmspkfl")
    public suspend fun grpcServices(vararg argument: suspend ApiConfigGrpcServiceArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            ApiConfigGrpcServiceArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.grpcServices = mapped
    }

    /**
     * @param argument gRPC service definition files. If specified, openapiDocuments must not be included.
     * Structure is documented below.
     */
    @JvmName("sxuqdgypxfdgvltb")
    public suspend fun grpcServices(argument: suspend ApiConfigGrpcServiceArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(ApiConfigGrpcServiceArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.grpcServices = mapped
    }

    /**
     * @param values gRPC service definition files. If specified, openapiDocuments must not be included.
     * Structure is documented below.
     */
    @JvmName("ewldyumqrwjoeenm")
    public suspend fun grpcServices(vararg values: ApiConfigGrpcServiceArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.grpcServices = mapped
    }

    /**
     * @param value Resource labels to represent user-provided metadata.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("nsfpiyjafgfxbsot")
    public suspend fun labels(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param values Resource labels to represent user-provided metadata.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("geffijkobvhsmnsh")
    public fun labels(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param value Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
     * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
     * Structure is documented below.
     */
    @JvmName("dfsypampdrnuqkyu")
    public suspend fun managedServiceConfigs(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.managedServiceConfigs = mapped
    }

    /**
     * @param argument Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
     * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
     * Structure is documented below.
     */
    @JvmName("plegklyljgvtrscd")
    public suspend fun managedServiceConfigs(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            ApiConfigManagedServiceConfigArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.managedServiceConfigs = mapped
    }

    /**
     * @param argument Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
     * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
     * Structure is documented below.
     */
    @JvmName("gcsujavyqcigxgxk")
    public suspend fun managedServiceConfigs(vararg argument: suspend ApiConfigManagedServiceConfigArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            ApiConfigManagedServiceConfigArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.managedServiceConfigs = mapped
    }

    /**
     * @param argument Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
     * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
     * Structure is documented below.
     */
    @JvmName("ksimamcqsoqhgapg")
    public suspend fun managedServiceConfigs(argument: suspend ApiConfigManagedServiceConfigArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            ApiConfigManagedServiceConfigArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.managedServiceConfigs = mapped
    }

    /**
     * @param values Optional. Service Configuration files. At least one must be included when using gRPC service definitions. See https://cloud.google.com/endpoints/docs/grpc/grpc-service-config#service_configuration_overview for the expected file contents.
     * If multiple files are specified, the files are merged with the following rules: * All singular scalar fields are merged using "last one wins" semantics in the order of the files uploaded. * Repeated fields are concatenated. * Singular embedded messages are merged using these rules for nested fields.
     * Structure is documented below.
     */
    @JvmName("jruhgxessuuujrbg")
    public suspend fun managedServiceConfigs(vararg values: ApiConfigManagedServiceConfigArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.managedServiceConfigs = mapped
    }

    /**
     * @param value OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
     * Structure is documented below.
     */
    @JvmName("crfhgiarrpclhmos")
    public suspend fun openapiDocuments(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.openapiDocuments = mapped
    }

    /**
     * @param argument OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
     * Structure is documented below.
     */
    @JvmName("gehnftwatplxcdnb")
    public suspend fun openapiDocuments(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            ApiConfigOpenapiDocumentArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.openapiDocuments = mapped
    }

    /**
     * @param argument OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
     * Structure is documented below.
     */
    @JvmName("kyeyhtcliurprvwc")
    public suspend fun openapiDocuments(vararg argument: suspend ApiConfigOpenapiDocumentArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            ApiConfigOpenapiDocumentArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.openapiDocuments = mapped
    }

    /**
     * @param argument OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
     * Structure is documented below.
     */
    @JvmName("poqldgxolfuynpjf")
    public suspend fun openapiDocuments(argument: suspend ApiConfigOpenapiDocumentArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            ApiConfigOpenapiDocumentArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.openapiDocuments = mapped
    }

    /**
     * @param values OpenAPI specification documents. If specified, grpcServices and managedServiceConfigs must not be included.
     * Structure is documented below.
     */
    @JvmName("rmnpumnmgabtdpaj")
    public suspend fun openapiDocuments(vararg values: ApiConfigOpenapiDocumentArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.openapiDocuments = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("tttmisrfodtbsmly")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    internal fun build(): ApiConfigArgs = ApiConfigArgs(
        api = api,
        apiConfigId = apiConfigId,
        apiConfigIdPrefix = apiConfigIdPrefix,
        displayName = displayName,
        gatewayConfig = gatewayConfig,
        grpcServices = grpcServices,
        labels = labels,
        managedServiceConfigs = managedServiceConfigs,
        openapiDocuments = openapiDocuments,
        project = project,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy