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

com.pulumi.gcp.networkservices.kotlin.TlsRouteArgs.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.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.networkservices.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.networkservices.TlsRouteArgs.builder
import com.pulumi.gcp.networkservices.kotlin.inputs.TlsRouteRuleArgs
import com.pulumi.gcp.networkservices.kotlin.inputs.TlsRouteRuleArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * ## Example Usage
 * ### Network Services Tls Route Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const defaultHttpHealthCheck = new gcp.compute.HttpHealthCheck("default", {
 *     name: "backend-service-health-check",
 *     requestPath: "/",
 *     checkIntervalSec: 1,
 *     timeoutSec: 1,
 * });
 * const _default = new gcp.compute.BackendService("default", {
 *     name: "my-backend-service",
 *     healthChecks: defaultHttpHealthCheck.id,
 * });
 * const defaultTlsRoute = new gcp.networkservices.TlsRoute("default", {
 *     name: "my-tls-route",
 *     description: "my description",
 *     rules: [{
 *         matches: [{
 *             sniHosts: ["example.com"],
 *             alpns: ["http/1.1"],
 *         }],
 *         action: {
 *             destinations: [{
 *                 serviceName: _default.id,
 *                 weight: 1,
 *             }],
 *         },
 *     }],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * default_http_health_check = gcp.compute.HttpHealthCheck("default",
 *     name="backend-service-health-check",
 *     request_path="/",
 *     check_interval_sec=1,
 *     timeout_sec=1)
 * default = gcp.compute.BackendService("default",
 *     name="my-backend-service",
 *     health_checks=default_http_health_check.id)
 * default_tls_route = gcp.networkservices.TlsRoute("default",
 *     name="my-tls-route",
 *     description="my description",
 *     rules=[gcp.networkservices.TlsRouteRuleArgs(
 *         matches=[gcp.networkservices.TlsRouteRuleMatchArgs(
 *             sni_hosts=["example.com"],
 *             alpns=["http/1.1"],
 *         )],
 *         action=gcp.networkservices.TlsRouteRuleActionArgs(
 *             destinations=[gcp.networkservices.TlsRouteRuleActionDestinationArgs(
 *                 service_name=default.id,
 *                 weight=1,
 *             )],
 *         ),
 *     )])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var defaultHttpHealthCheck = new Gcp.Compute.HttpHealthCheck("default", new()
 *     {
 *         Name = "backend-service-health-check",
 *         RequestPath = "/",
 *         CheckIntervalSec = 1,
 *         TimeoutSec = 1,
 *     });
 *     var @default = new Gcp.Compute.BackendService("default", new()
 *     {
 *         Name = "my-backend-service",
 *         HealthChecks = defaultHttpHealthCheck.Id,
 *     });
 *     var defaultTlsRoute = new Gcp.NetworkServices.TlsRoute("default", new()
 *     {
 *         Name = "my-tls-route",
 *         Description = "my description",
 *         Rules = new[]
 *         {
 *             new Gcp.NetworkServices.Inputs.TlsRouteRuleArgs
 *             {
 *                 Matches = new[]
 *                 {
 *                     new Gcp.NetworkServices.Inputs.TlsRouteRuleMatchArgs
 *                     {
 *                         SniHosts = new[]
 *                         {
 *                             "example.com",
 *                         },
 *                         Alpns = new[]
 *                         {
 *                             "http/1.1",
 *                         },
 *                     },
 *                 },
 *                 Action = new Gcp.NetworkServices.Inputs.TlsRouteRuleActionArgs
 *                 {
 *                     Destinations = new[]
 *                     {
 *                         new Gcp.NetworkServices.Inputs.TlsRouteRuleActionDestinationArgs
 *                         {
 *                             ServiceName = @default.Id,
 *                             Weight = 1,
 *                         },
 *                     },
 *                 },
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networkservices"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		defaultHttpHealthCheck, err := compute.NewHttpHealthCheck(ctx, "default", &compute.HttpHealthCheckArgs{
 * 			Name:             pulumi.String("backend-service-health-check"),
 * 			RequestPath:      pulumi.String("/"),
 * 			CheckIntervalSec: pulumi.Int(1),
 * 			TimeoutSec:       pulumi.Int(1),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewBackendService(ctx, "default", &compute.BackendServiceArgs{
 * 			Name:         pulumi.String("my-backend-service"),
 * 			HealthChecks: defaultHttpHealthCheck.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = networkservices.NewTlsRoute(ctx, "default", &networkservices.TlsRouteArgs{
 * 			Name:        pulumi.String("my-tls-route"),
 * 			Description: pulumi.String("my description"),
 * 			Rules: networkservices.TlsRouteRuleArray{
 * 				&networkservices.TlsRouteRuleArgs{
 * 					Matches: networkservices.TlsRouteRuleMatchArray{
 * 						&networkservices.TlsRouteRuleMatchArgs{
 * 							SniHosts: pulumi.StringArray{
 * 								pulumi.String("example.com"),
 * 							},
 * 							Alpns: pulumi.StringArray{
 * 								pulumi.String("http/1.1"),
 * 							},
 * 						},
 * 					},
 * 					Action: &networkservices.TlsRouteRuleActionArgs{
 * 						Destinations: networkservices.TlsRouteRuleActionDestinationArray{
 * 							&networkservices.TlsRouteRuleActionDestinationArgs{
 * 								ServiceName: _default.ID(),
 * 								Weight:      pulumi.Int(1),
 * 							},
 * 						},
 * 					},
 * 				},
 * 			},
 * 		})
 * 		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.compute.HttpHealthCheck;
 * import com.pulumi.gcp.compute.HttpHealthCheckArgs;
 * import com.pulumi.gcp.compute.BackendService;
 * import com.pulumi.gcp.compute.BackendServiceArgs;
 * import com.pulumi.gcp.networkservices.TlsRoute;
 * import com.pulumi.gcp.networkservices.TlsRouteArgs;
 * import com.pulumi.gcp.networkservices.inputs.TlsRouteRuleArgs;
 * import com.pulumi.gcp.networkservices.inputs.TlsRouteRuleActionArgs;
 * 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 defaultHttpHealthCheck = new HttpHealthCheck("defaultHttpHealthCheck", HttpHealthCheckArgs.builder()
 *             .name("backend-service-health-check")
 *             .requestPath("/")
 *             .checkIntervalSec(1)
 *             .timeoutSec(1)
 *             .build());
 *         var default_ = new BackendService("default", BackendServiceArgs.builder()
 *             .name("my-backend-service")
 *             .healthChecks(defaultHttpHealthCheck.id())
 *             .build());
 *         var defaultTlsRoute = new TlsRoute("defaultTlsRoute", TlsRouteArgs.builder()
 *             .name("my-tls-route")
 *             .description("my description")
 *             .rules(TlsRouteRuleArgs.builder()
 *                 .matches(TlsRouteRuleMatchArgs.builder()
 *                     .sniHosts("example.com")
 *                     .alpns("http/1.1")
 *                     .build())
 *                 .action(TlsRouteRuleActionArgs.builder()
 *                     .destinations(TlsRouteRuleActionDestinationArgs.builder()
 *                         .serviceName(default_.id())
 *                         .weight(1)
 *                         .build())
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   default:
 *     type: gcp:compute:BackendService
 *     properties:
 *       name: my-backend-service
 *       healthChecks: ${defaultHttpHealthCheck.id}
 *   defaultHttpHealthCheck:
 *     type: gcp:compute:HttpHealthCheck
 *     name: default
 *     properties:
 *       name: backend-service-health-check
 *       requestPath: /
 *       checkIntervalSec: 1
 *       timeoutSec: 1
 *   defaultTlsRoute:
 *     type: gcp:networkservices:TlsRoute
 *     name: default
 *     properties:
 *       name: my-tls-route
 *       description: my description
 *       rules:
 *         - matches:
 *             - sniHosts:
 *                 - example.com
 *               alpns:
 *                 - http/1.1
 *           action:
 *             destinations:
 *               - serviceName: ${default.id}
 *                 weight: 1
 * ```
 * 
 * ### Network Services Tls Route Mesh Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const defaultHttpHealthCheck = new gcp.compute.HttpHealthCheck("default", {
 *     name: "backend-service-health-check",
 *     requestPath: "/",
 *     checkIntervalSec: 1,
 *     timeoutSec: 1,
 * });
 * const _default = new gcp.compute.BackendService("default", {
 *     name: "my-backend-service",
 *     healthChecks: defaultHttpHealthCheck.id,
 * });
 * const defaultMesh = new gcp.networkservices.Mesh("default", {
 *     name: "my-tls-route",
 *     labels: {
 *         foo: "bar",
 *     },
 *     description: "my description",
 * });
 * const defaultTlsRoute = new gcp.networkservices.TlsRoute("default", {
 *     name: "my-tls-route",
 *     description: "my description",
 *     meshes: [defaultMesh.id],
 *     rules: [{
 *         matches: [{
 *             sniHosts: ["example.com"],
 *             alpns: ["http/1.1"],
 *         }],
 *         action: {
 *             destinations: [{
 *                 serviceName: _default.id,
 *                 weight: 1,
 *             }],
 *         },
 *     }],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * default_http_health_check = gcp.compute.HttpHealthCheck("default",
 *     name="backend-service-health-check",
 *     request_path="/",
 *     check_interval_sec=1,
 *     timeout_sec=1)
 * default = gcp.compute.BackendService("default",
 *     name="my-backend-service",
 *     health_checks=default_http_health_check.id)
 * default_mesh = gcp.networkservices.Mesh("default",
 *     name="my-tls-route",
 *     labels={
 *         "foo": "bar",
 *     },
 *     description="my description")
 * default_tls_route = gcp.networkservices.TlsRoute("default",
 *     name="my-tls-route",
 *     description="my description",
 *     meshes=[default_mesh.id],
 *     rules=[gcp.networkservices.TlsRouteRuleArgs(
 *         matches=[gcp.networkservices.TlsRouteRuleMatchArgs(
 *             sni_hosts=["example.com"],
 *             alpns=["http/1.1"],
 *         )],
 *         action=gcp.networkservices.TlsRouteRuleActionArgs(
 *             destinations=[gcp.networkservices.TlsRouteRuleActionDestinationArgs(
 *                 service_name=default.id,
 *                 weight=1,
 *             )],
 *         ),
 *     )])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var defaultHttpHealthCheck = new Gcp.Compute.HttpHealthCheck("default", new()
 *     {
 *         Name = "backend-service-health-check",
 *         RequestPath = "/",
 *         CheckIntervalSec = 1,
 *         TimeoutSec = 1,
 *     });
 *     var @default = new Gcp.Compute.BackendService("default", new()
 *     {
 *         Name = "my-backend-service",
 *         HealthChecks = defaultHttpHealthCheck.Id,
 *     });
 *     var defaultMesh = new Gcp.NetworkServices.Mesh("default", new()
 *     {
 *         Name = "my-tls-route",
 *         Labels =
 *         {
 *             { "foo", "bar" },
 *         },
 *         Description = "my description",
 *     });
 *     var defaultTlsRoute = new Gcp.NetworkServices.TlsRoute("default", new()
 *     {
 *         Name = "my-tls-route",
 *         Description = "my description",
 *         Meshes = new[]
 *         {
 *             defaultMesh.Id,
 *         },
 *         Rules = new[]
 *         {
 *             new Gcp.NetworkServices.Inputs.TlsRouteRuleArgs
 *             {
 *                 Matches = new[]
 *                 {
 *                     new Gcp.NetworkServices.Inputs.TlsRouteRuleMatchArgs
 *                     {
 *                         SniHosts = new[]
 *                         {
 *                             "example.com",
 *                         },
 *                         Alpns = new[]
 *                         {
 *                             "http/1.1",
 *                         },
 *                     },
 *                 },
 *                 Action = new Gcp.NetworkServices.Inputs.TlsRouteRuleActionArgs
 *                 {
 *                     Destinations = new[]
 *                     {
 *                         new Gcp.NetworkServices.Inputs.TlsRouteRuleActionDestinationArgs
 *                         {
 *                             ServiceName = @default.Id,
 *                             Weight = 1,
 *                         },
 *                     },
 *                 },
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networkservices"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		defaultHttpHealthCheck, err := compute.NewHttpHealthCheck(ctx, "default", &compute.HttpHealthCheckArgs{
 * 			Name:             pulumi.String("backend-service-health-check"),
 * 			RequestPath:      pulumi.String("/"),
 * 			CheckIntervalSec: pulumi.Int(1),
 * 			TimeoutSec:       pulumi.Int(1),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewBackendService(ctx, "default", &compute.BackendServiceArgs{
 * 			Name:         pulumi.String("my-backend-service"),
 * 			HealthChecks: defaultHttpHealthCheck.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		defaultMesh, err := networkservices.NewMesh(ctx, "default", &networkservices.MeshArgs{
 * 			Name: pulumi.String("my-tls-route"),
 * 			Labels: pulumi.StringMap{
 * 				"foo": pulumi.String("bar"),
 * 			},
 * 			Description: pulumi.String("my description"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = networkservices.NewTlsRoute(ctx, "default", &networkservices.TlsRouteArgs{
 * 			Name:        pulumi.String("my-tls-route"),
 * 			Description: pulumi.String("my description"),
 * 			Meshes: pulumi.StringArray{
 * 				defaultMesh.ID(),
 * 			},
 * 			Rules: networkservices.TlsRouteRuleArray{
 * 				&networkservices.TlsRouteRuleArgs{
 * 					Matches: networkservices.TlsRouteRuleMatchArray{
 * 						&networkservices.TlsRouteRuleMatchArgs{
 * 							SniHosts: pulumi.StringArray{
 * 								pulumi.String("example.com"),
 * 							},
 * 							Alpns: pulumi.StringArray{
 * 								pulumi.String("http/1.1"),
 * 							},
 * 						},
 * 					},
 * 					Action: &networkservices.TlsRouteRuleActionArgs{
 * 						Destinations: networkservices.TlsRouteRuleActionDestinationArray{
 * 							&networkservices.TlsRouteRuleActionDestinationArgs{
 * 								ServiceName: _default.ID(),
 * 								Weight:      pulumi.Int(1),
 * 							},
 * 						},
 * 					},
 * 				},
 * 			},
 * 		})
 * 		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.compute.HttpHealthCheck;
 * import com.pulumi.gcp.compute.HttpHealthCheckArgs;
 * import com.pulumi.gcp.compute.BackendService;
 * import com.pulumi.gcp.compute.BackendServiceArgs;
 * import com.pulumi.gcp.networkservices.Mesh;
 * import com.pulumi.gcp.networkservices.MeshArgs;
 * import com.pulumi.gcp.networkservices.TlsRoute;
 * import com.pulumi.gcp.networkservices.TlsRouteArgs;
 * import com.pulumi.gcp.networkservices.inputs.TlsRouteRuleArgs;
 * import com.pulumi.gcp.networkservices.inputs.TlsRouteRuleActionArgs;
 * 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 defaultHttpHealthCheck = new HttpHealthCheck("defaultHttpHealthCheck", HttpHealthCheckArgs.builder()
 *             .name("backend-service-health-check")
 *             .requestPath("/")
 *             .checkIntervalSec(1)
 *             .timeoutSec(1)
 *             .build());
 *         var default_ = new BackendService("default", BackendServiceArgs.builder()
 *             .name("my-backend-service")
 *             .healthChecks(defaultHttpHealthCheck.id())
 *             .build());
 *         var defaultMesh = new Mesh("defaultMesh", MeshArgs.builder()
 *             .name("my-tls-route")
 *             .labels(Map.of("foo", "bar"))
 *             .description("my description")
 *             .build());
 *         var defaultTlsRoute = new TlsRoute("defaultTlsRoute", TlsRouteArgs.builder()
 *             .name("my-tls-route")
 *             .description("my description")
 *             .meshes(defaultMesh.id())
 *             .rules(TlsRouteRuleArgs.builder()
 *                 .matches(TlsRouteRuleMatchArgs.builder()
 *                     .sniHosts("example.com")
 *                     .alpns("http/1.1")
 *                     .build())
 *                 .action(TlsRouteRuleActionArgs.builder()
 *                     .destinations(TlsRouteRuleActionDestinationArgs.builder()
 *                         .serviceName(default_.id())
 *                         .weight(1)
 *                         .build())
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   default:
 *     type: gcp:compute:BackendService
 *     properties:
 *       name: my-backend-service
 *       healthChecks: ${defaultHttpHealthCheck.id}
 *   defaultHttpHealthCheck:
 *     type: gcp:compute:HttpHealthCheck
 *     name: default
 *     properties:
 *       name: backend-service-health-check
 *       requestPath: /
 *       checkIntervalSec: 1
 *       timeoutSec: 1
 *   defaultMesh:
 *     type: gcp:networkservices:Mesh
 *     name: default
 *     properties:
 *       name: my-tls-route
 *       labels:
 *         foo: bar
 *       description: my description
 *   defaultTlsRoute:
 *     type: gcp:networkservices:TlsRoute
 *     name: default
 *     properties:
 *       name: my-tls-route
 *       description: my description
 *       meshes:
 *         - ${defaultMesh.id}
 *       rules:
 *         - matches:
 *             - sniHosts:
 *                 - example.com
 *               alpns:
 *                 - http/1.1
 *           action:
 *             destinations:
 *               - serviceName: ${default.id}
 *                 weight: 1
 * ```
 * 
 * ### Network Services Tls Route Gateway Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const defaultHttpHealthCheck = new gcp.compute.HttpHealthCheck("default", {
 *     name: "backend-service-health-check",
 *     requestPath: "/",
 *     checkIntervalSec: 1,
 *     timeoutSec: 1,
 * });
 * const _default = new gcp.compute.BackendService("default", {
 *     name: "my-backend-service",
 *     healthChecks: defaultHttpHealthCheck.id,
 * });
 * const defaultGateway = new gcp.networkservices.Gateway("default", {
 *     name: "my-tls-route",
 *     labels: {
 *         foo: "bar",
 *     },
 *     description: "my description",
 *     scope: "my-scope",
 *     type: "OPEN_MESH",
 *     ports: [443],
 * });
 * const defaultTlsRoute = new gcp.networkservices.TlsRoute("default", {
 *     name: "my-tls-route",
 *     description: "my description",
 *     gateways: [defaultGateway.id],
 *     rules: [{
 *         matches: [{
 *             sniHosts: ["example.com"],
 *             alpns: ["http/1.1"],
 *         }],
 *         action: {
 *             destinations: [{
 *                 serviceName: _default.id,
 *                 weight: 1,
 *             }],
 *         },
 *     }],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * default_http_health_check = gcp.compute.HttpHealthCheck("default",
 *     name="backend-service-health-check",
 *     request_path="/",
 *     check_interval_sec=1,
 *     timeout_sec=1)
 * default = gcp.compute.BackendService("default",
 *     name="my-backend-service",
 *     health_checks=default_http_health_check.id)
 * default_gateway = gcp.networkservices.Gateway("default",
 *     name="my-tls-route",
 *     labels={
 *         "foo": "bar",
 *     },
 *     description="my description",
 *     scope="my-scope",
 *     type="OPEN_MESH",
 *     ports=[443])
 * default_tls_route = gcp.networkservices.TlsRoute("default",
 *     name="my-tls-route",
 *     description="my description",
 *     gateways=[default_gateway.id],
 *     rules=[gcp.networkservices.TlsRouteRuleArgs(
 *         matches=[gcp.networkservices.TlsRouteRuleMatchArgs(
 *             sni_hosts=["example.com"],
 *             alpns=["http/1.1"],
 *         )],
 *         action=gcp.networkservices.TlsRouteRuleActionArgs(
 *             destinations=[gcp.networkservices.TlsRouteRuleActionDestinationArgs(
 *                 service_name=default.id,
 *                 weight=1,
 *             )],
 *         ),
 *     )])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var defaultHttpHealthCheck = new Gcp.Compute.HttpHealthCheck("default", new()
 *     {
 *         Name = "backend-service-health-check",
 *         RequestPath = "/",
 *         CheckIntervalSec = 1,
 *         TimeoutSec = 1,
 *     });
 *     var @default = new Gcp.Compute.BackendService("default", new()
 *     {
 *         Name = "my-backend-service",
 *         HealthChecks = defaultHttpHealthCheck.Id,
 *     });
 *     var defaultGateway = new Gcp.NetworkServices.Gateway("default", new()
 *     {
 *         Name = "my-tls-route",
 *         Labels =
 *         {
 *             { "foo", "bar" },
 *         },
 *         Description = "my description",
 *         Scope = "my-scope",
 *         Type = "OPEN_MESH",
 *         Ports = new[]
 *         {
 *             443,
 *         },
 *     });
 *     var defaultTlsRoute = new Gcp.NetworkServices.TlsRoute("default", new()
 *     {
 *         Name = "my-tls-route",
 *         Description = "my description",
 *         Gateways = new[]
 *         {
 *             defaultGateway.Id,
 *         },
 *         Rules = new[]
 *         {
 *             new Gcp.NetworkServices.Inputs.TlsRouteRuleArgs
 *             {
 *                 Matches = new[]
 *                 {
 *                     new Gcp.NetworkServices.Inputs.TlsRouteRuleMatchArgs
 *                     {
 *                         SniHosts = new[]
 *                         {
 *                             "example.com",
 *                         },
 *                         Alpns = new[]
 *                         {
 *                             "http/1.1",
 *                         },
 *                     },
 *                 },
 *                 Action = new Gcp.NetworkServices.Inputs.TlsRouteRuleActionArgs
 *                 {
 *                     Destinations = new[]
 *                     {
 *                         new Gcp.NetworkServices.Inputs.TlsRouteRuleActionDestinationArgs
 *                         {
 *                             ServiceName = @default.Id,
 *                             Weight = 1,
 *                         },
 *                     },
 *                 },
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networkservices"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		defaultHttpHealthCheck, err := compute.NewHttpHealthCheck(ctx, "default", &compute.HttpHealthCheckArgs{
 * 			Name:             pulumi.String("backend-service-health-check"),
 * 			RequestPath:      pulumi.String("/"),
 * 			CheckIntervalSec: pulumi.Int(1),
 * 			TimeoutSec:       pulumi.Int(1),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewBackendService(ctx, "default", &compute.BackendServiceArgs{
 * 			Name:         pulumi.String("my-backend-service"),
 * 			HealthChecks: defaultHttpHealthCheck.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		defaultGateway, err := networkservices.NewGateway(ctx, "default", &networkservices.GatewayArgs{
 * 			Name: pulumi.String("my-tls-route"),
 * 			Labels: pulumi.StringMap{
 * 				"foo": pulumi.String("bar"),
 * 			},
 * 			Description: pulumi.String("my description"),
 * 			Scope:       pulumi.String("my-scope"),
 * 			Type:        pulumi.String("OPEN_MESH"),
 * 			Ports: pulumi.IntArray{
 * 				pulumi.Int(443),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = networkservices.NewTlsRoute(ctx, "default", &networkservices.TlsRouteArgs{
 * 			Name:        pulumi.String("my-tls-route"),
 * 			Description: pulumi.String("my description"),
 * 			Gateways: pulumi.StringArray{
 * 				defaultGateway.ID(),
 * 			},
 * 			Rules: networkservices.TlsRouteRuleArray{
 * 				&networkservices.TlsRouteRuleArgs{
 * 					Matches: networkservices.TlsRouteRuleMatchArray{
 * 						&networkservices.TlsRouteRuleMatchArgs{
 * 							SniHosts: pulumi.StringArray{
 * 								pulumi.String("example.com"),
 * 							},
 * 							Alpns: pulumi.StringArray{
 * 								pulumi.String("http/1.1"),
 * 							},
 * 						},
 * 					},
 * 					Action: &networkservices.TlsRouteRuleActionArgs{
 * 						Destinations: networkservices.TlsRouteRuleActionDestinationArray{
 * 							&networkservices.TlsRouteRuleActionDestinationArgs{
 * 								ServiceName: _default.ID(),
 * 								Weight:      pulumi.Int(1),
 * 							},
 * 						},
 * 					},
 * 				},
 * 			},
 * 		})
 * 		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.compute.HttpHealthCheck;
 * import com.pulumi.gcp.compute.HttpHealthCheckArgs;
 * import com.pulumi.gcp.compute.BackendService;
 * import com.pulumi.gcp.compute.BackendServiceArgs;
 * import com.pulumi.gcp.networkservices.Gateway;
 * import com.pulumi.gcp.networkservices.GatewayArgs;
 * import com.pulumi.gcp.networkservices.TlsRoute;
 * import com.pulumi.gcp.networkservices.TlsRouteArgs;
 * import com.pulumi.gcp.networkservices.inputs.TlsRouteRuleArgs;
 * import com.pulumi.gcp.networkservices.inputs.TlsRouteRuleActionArgs;
 * 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 defaultHttpHealthCheck = new HttpHealthCheck("defaultHttpHealthCheck", HttpHealthCheckArgs.builder()
 *             .name("backend-service-health-check")
 *             .requestPath("/")
 *             .checkIntervalSec(1)
 *             .timeoutSec(1)
 *             .build());
 *         var default_ = new BackendService("default", BackendServiceArgs.builder()
 *             .name("my-backend-service")
 *             .healthChecks(defaultHttpHealthCheck.id())
 *             .build());
 *         var defaultGateway = new Gateway("defaultGateway", GatewayArgs.builder()
 *             .name("my-tls-route")
 *             .labels(Map.of("foo", "bar"))
 *             .description("my description")
 *             .scope("my-scope")
 *             .type("OPEN_MESH")
 *             .ports(443)
 *             .build());
 *         var defaultTlsRoute = new TlsRoute("defaultTlsRoute", TlsRouteArgs.builder()
 *             .name("my-tls-route")
 *             .description("my description")
 *             .gateways(defaultGateway.id())
 *             .rules(TlsRouteRuleArgs.builder()
 *                 .matches(TlsRouteRuleMatchArgs.builder()
 *                     .sniHosts("example.com")
 *                     .alpns("http/1.1")
 *                     .build())
 *                 .action(TlsRouteRuleActionArgs.builder()
 *                     .destinations(TlsRouteRuleActionDestinationArgs.builder()
 *                         .serviceName(default_.id())
 *                         .weight(1)
 *                         .build())
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   default:
 *     type: gcp:compute:BackendService
 *     properties:
 *       name: my-backend-service
 *       healthChecks: ${defaultHttpHealthCheck.id}
 *   defaultHttpHealthCheck:
 *     type: gcp:compute:HttpHealthCheck
 *     name: default
 *     properties:
 *       name: backend-service-health-check
 *       requestPath: /
 *       checkIntervalSec: 1
 *       timeoutSec: 1
 *   defaultGateway:
 *     type: gcp:networkservices:Gateway
 *     name: default
 *     properties:
 *       name: my-tls-route
 *       labels:
 *         foo: bar
 *       description: my description
 *       scope: my-scope
 *       type: OPEN_MESH
 *       ports:
 *         - 443
 *   defaultTlsRoute:
 *     type: gcp:networkservices:TlsRoute
 *     name: default
 *     properties:
 *       name: my-tls-route
 *       description: my description
 *       gateways:
 *         - ${defaultGateway.id}
 *       rules:
 *         - matches:
 *             - sniHosts:
 *                 - example.com
 *               alpns:
 *                 - http/1.1
 *           action:
 *             destinations:
 *               - serviceName: ${default.id}
 *                 weight: 1
 * ```
 * 
 * ## Import
 * TlsRoute can be imported using any of these accepted formats:
 * * `projects/{{project}}/locations/global/tlsRoutes/{{name}}`
 * * `{{project}}/{{name}}`
 * * `{{name}}`
 * When using the `pulumi import` command, TlsRoute can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:networkservices/tlsRoute:TlsRoute default projects/{{project}}/locations/global/tlsRoutes/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:networkservices/tlsRoute:TlsRoute default {{project}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:networkservices/tlsRoute:TlsRoute default {{name}}
 * ```
 * @property description A free-text description of the resource. Max length 1024 characters.
 * @property gateways Gateways defines a list of gateways this TlsRoute is attached to, as one of the routing rules to route the requests
 * served by the gateway. Each gateway reference should match the pattern:
 * projects/*/locations/global/gateways/
 * @property meshes Meshes defines a list of meshes this TlsRoute is attached to, as one of the routing rules to route the requests served
 * by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached
 * Mesh should be of a type SIDECAR
 * @property name Name of the TlsRoute resource.
 * @property project
 * @property rules Rules that define how traffic is routed and handled.
 * Structure is documented below.
 * */*/
 */
public data class TlsRouteArgs(
    public val description: Output? = null,
    public val gateways: Output>? = null,
    public val meshes: Output>? = null,
    public val name: Output? = null,
    public val project: Output? = null,
    public val rules: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.networkservices.TlsRouteArgs =
        com.pulumi.gcp.networkservices.TlsRouteArgs.builder()
            .description(description?.applyValue({ args0 -> args0 }))
            .gateways(gateways?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .meshes(meshes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .name(name?.applyValue({ args0 -> args0 }))
            .project(project?.applyValue({ args0 -> args0 }))
            .rules(
                rules?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [TlsRouteArgs].
 */
@PulumiTagMarker
public class TlsRouteArgsBuilder internal constructor() {
    private var description: Output? = null

    private var gateways: Output>? = null

    private var meshes: Output>? = null

    private var name: Output? = null

    private var project: Output? = null

    private var rules: Output>? = null

    /**
     * @param value A free-text description of the resource. Max length 1024 characters.
     */
    @JvmName("swufiffevilhkfbe")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value Gateways defines a list of gateways this TlsRoute is attached to, as one of the routing rules to route the requests
     * served by the gateway. Each gateway reference should match the pattern:
     * projects/*/locations/global/gateways/
     * */
     */
    @JvmName("emwuveimxenhbtli")
    public suspend fun gateways(`value`: Output>) {
        this.gateways = value
    }

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

    /**
     * @param values Gateways defines a list of gateways this TlsRoute is attached to, as one of the routing rules to route the requests
     * served by the gateway. Each gateway reference should match the pattern:
     * projects/*/locations/global/gateways/
     * */
     */
    @JvmName("jsondfydqoyfgnph")
    public suspend fun gateways(values: List>) {
        this.gateways = Output.all(values)
    }

    /**
     * @param value Meshes defines a list of meshes this TlsRoute is attached to, as one of the routing rules to route the requests served
     * by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached
     * Mesh should be of a type SIDECAR
     * */
     */
    @JvmName("npdarvpoywibdnjo")
    public suspend fun meshes(`value`: Output>) {
        this.meshes = value
    }

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

    /**
     * @param values Meshes defines a list of meshes this TlsRoute is attached to, as one of the routing rules to route the requests served
     * by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached
     * Mesh should be of a type SIDECAR
     * */
     */
    @JvmName("eexumenornynkooh")
    public suspend fun meshes(values: List>) {
        this.meshes = Output.all(values)
    }

    /**
     * @param value Name of the TlsRoute resource.
     */
    @JvmName("inwvnfkyqkjgqtud")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value
     */
    @JvmName("nhtgncbyclvcdghh")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value Rules that define how traffic is routed and handled.
     * Structure is documented below.
     */
    @JvmName("tvgcrkiderfhlgee")
    public suspend fun rules(`value`: Output>) {
        this.rules = value
    }

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

    /**
     * @param values Rules that define how traffic is routed and handled.
     * Structure is documented below.
     */
    @JvmName("xfocmkotejlmptpc")
    public suspend fun rules(values: List>) {
        this.rules = Output.all(values)
    }

    /**
     * @param value A free-text description of the resource. Max length 1024 characters.
     */
    @JvmName("oxxrkvakuqbgktcy")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value Gateways defines a list of gateways this TlsRoute is attached to, as one of the routing rules to route the requests
     * served by the gateway. Each gateway reference should match the pattern:
     * projects/*/locations/global/gateways/
     * */
     */
    @JvmName("ctfpoawgfaxjqeni")
    public suspend fun gateways(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.gateways = mapped
    }

    /**
     * @param values Gateways defines a list of gateways this TlsRoute is attached to, as one of the routing rules to route the requests
     * served by the gateway. Each gateway reference should match the pattern:
     * projects/*/locations/global/gateways/
     * */
     */
    @JvmName("sjwdjoonvutkkbia")
    public suspend fun gateways(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.gateways = mapped
    }

    /**
     * @param value Meshes defines a list of meshes this TlsRoute is attached to, as one of the routing rules to route the requests served
     * by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached
     * Mesh should be of a type SIDECAR
     * */
     */
    @JvmName("rwpqfennpxtqydvy")
    public suspend fun meshes(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.meshes = mapped
    }

    /**
     * @param values Meshes defines a list of meshes this TlsRoute is attached to, as one of the routing rules to route the requests served
     * by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached
     * Mesh should be of a type SIDECAR
     * */
     */
    @JvmName("ivleoydtyegcytwm")
    public suspend fun meshes(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.meshes = mapped
    }

    /**
     * @param value Name of the TlsRoute resource.
     */
    @JvmName("nrvvmikrvvhffpcv")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value
     */
    @JvmName("svkvhlcjrwywgqns")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    /**
     * @param value Rules that define how traffic is routed and handled.
     * Structure is documented below.
     */
    @JvmName("wngxscrhmbpwtvor")
    public suspend fun rules(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.rules = mapped
    }

    /**
     * @param argument Rules that define how traffic is routed and handled.
     * Structure is documented below.
     */
    @JvmName("fxiylmqxvcyuxywv")
    public suspend fun rules(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            TlsRouteRuleArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param argument Rules that define how traffic is routed and handled.
     * Structure is documented below.
     */
    @JvmName("wucgyvviwueyoobc")
    public suspend fun rules(vararg argument: suspend TlsRouteRuleArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            TlsRouteRuleArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param argument Rules that define how traffic is routed and handled.
     * Structure is documented below.
     */
    @JvmName("lclsuwquilopacev")
    public suspend fun rules(argument: suspend TlsRouteRuleArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TlsRouteRuleArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param values Rules that define how traffic is routed and handled.
     * Structure is documented below.
     */
    @JvmName("fmtjbxbhgglysjko")
    public suspend fun rules(vararg values: TlsRouteRuleArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.rules = mapped
    }

    internal fun build(): TlsRouteArgs = TlsRouteArgs(
        description = description,
        gateways = gateways,
        meshes = meshes,
        name = name,
        project = project,
        rules = rules,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy