Gateway

class Gateway : KotlinCustomResource

This type describes a gateway resource. Uses Azure REST API version 2018-09-01-preview. In version 1.x of the Azure Native provider, it used API version 2018-09-01-preview.

Example Usage

CreateOrUpdateGateway

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var gateway = new AzureNative.ServiceFabricMesh.Gateway("gateway", new()
{
Description = "Service Fabric Mesh sample gateway.",
DestinationNetwork = new AzureNative.ServiceFabricMesh.Inputs.NetworkRefArgs
{
Name = "helloWorldNetwork",
},
GatewayResourceName = "sampleGateway",
Http = new[]
{
new AzureNative.ServiceFabricMesh.Inputs.HttpConfigArgs
{
Hosts = new[]
{
new AzureNative.ServiceFabricMesh.Inputs.HttpHostConfigArgs
{
Name = "contoso.com",
Routes = new[]
{
new AzureNative.ServiceFabricMesh.Inputs.HttpRouteConfigArgs
{
Destination = new AzureNative.ServiceFabricMesh.Inputs.GatewayDestinationArgs
{
ApplicationName = "httpHelloWorldApp",
EndpointName = "indexHttpEndpoint",
ServiceName = "indexService",
},
Match = new AzureNative.ServiceFabricMesh.Inputs.HttpRouteMatchRuleArgs
{
Headers = new[]
{
new AzureNative.ServiceFabricMesh.Inputs.HttpRouteMatchHeaderArgs
{
Name = "accept",
Type = AzureNative.ServiceFabricMesh.HeaderMatchType.Exact,
Value = "application/json",
},
},
Path = new AzureNative.ServiceFabricMesh.Inputs.HttpRouteMatchPathArgs
{
Rewrite = "/",
Type = AzureNative.ServiceFabricMesh.PathMatchType.Prefix,
Value = "/index",
},
},
Name = "index",
},
},
},
},
Name = "contosoWebsite",
Port = 8081,
},
},
Location = "EastUS",
ResourceGroupName = "sbz_demo",
SourceNetwork = new AzureNative.ServiceFabricMesh.Inputs.NetworkRefArgs
{
Name = "Open",
},
Tags = null,
Tcp = new[]
{
new AzureNative.ServiceFabricMesh.Inputs.TcpConfigArgs
{
Destination = new AzureNative.ServiceFabricMesh.Inputs.GatewayDestinationArgs
{
ApplicationName = "helloWorldApp",
EndpointName = "helloWorldListener",
ServiceName = "helloWorldService",
},
Name = "web",
Port = 80,
},
},
});
});
package main
import (
servicefabricmesh "github.com/pulumi/pulumi-azure-native-sdk/servicefabricmesh/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := servicefabricmesh.NewGateway(ctx, "gateway", &servicefabricmesh.GatewayArgs{
Description: pulumi.String("Service Fabric Mesh sample gateway."),
DestinationNetwork: &servicefabricmesh.NetworkRefArgs{
Name: pulumi.String("helloWorldNetwork"),
},
GatewayResourceName: pulumi.String("sampleGateway"),
Http: servicefabricmesh.HttpConfigArray{
&servicefabricmesh.HttpConfigArgs{
Hosts: servicefabricmesh.HttpHostConfigArray{
&servicefabricmesh.HttpHostConfigArgs{
Name: pulumi.String("contoso.com"),
Routes: servicefabricmesh.HttpRouteConfigArray{
&servicefabricmesh.HttpRouteConfigArgs{
Destination: &servicefabricmesh.GatewayDestinationArgs{
ApplicationName: pulumi.String("httpHelloWorldApp"),
EndpointName: pulumi.String("indexHttpEndpoint"),
ServiceName: pulumi.String("indexService"),
},
Match: &servicefabricmesh.HttpRouteMatchRuleArgs{
Headers: servicefabricmesh.HttpRouteMatchHeaderArray{
&servicefabricmesh.HttpRouteMatchHeaderArgs{
Name: pulumi.String("accept"),
Type: pulumi.String(servicefabricmesh.HeaderMatchTypeExact),
Value: pulumi.String("application/json"),
},
},
Path: &servicefabricmesh.HttpRouteMatchPathArgs{
Rewrite: pulumi.String("/"),
Type: pulumi.String(servicefabricmesh.PathMatchTypePrefix),
Value: pulumi.String("/index"),
},
},
Name: pulumi.String("index"),
},
},
},
},
Name: pulumi.String("contosoWebsite"),
Port: pulumi.Int(8081),
},
},
Location: pulumi.String("EastUS"),
ResourceGroupName: pulumi.String("sbz_demo"),
SourceNetwork: &servicefabricmesh.NetworkRefArgs{
Name: pulumi.String("Open"),
},
Tags: pulumi.StringMap{},
Tcp: servicefabricmesh.TcpConfigArray{
&servicefabricmesh.TcpConfigArgs{
Destination: &servicefabricmesh.GatewayDestinationArgs{
ApplicationName: pulumi.String("helloWorldApp"),
EndpointName: pulumi.String("helloWorldListener"),
ServiceName: pulumi.String("helloWorldService"),
},
Name: pulumi.String("web"),
Port: pulumi.Int(80),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.servicefabricmesh.Gateway;
import com.pulumi.azurenative.servicefabricmesh.GatewayArgs;
import com.pulumi.azurenative.servicefabricmesh.inputs.NetworkRefArgs;
import com.pulumi.azurenative.servicefabricmesh.inputs.HttpConfigArgs;
import com.pulumi.azurenative.servicefabricmesh.inputs.TcpConfigArgs;
import com.pulumi.azurenative.servicefabricmesh.inputs.GatewayDestinationArgs;
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 gateway = new Gateway("gateway", GatewayArgs.builder()
.description("Service Fabric Mesh sample gateway.")
.destinationNetwork(NetworkRefArgs.builder()
.name("helloWorldNetwork")
.build())
.gatewayResourceName("sampleGateway")
.http(HttpConfigArgs.builder()
.hosts(HttpHostConfigArgs.builder()
.name("contoso.com")
.routes(HttpRouteConfigArgs.builder()
.destination(GatewayDestinationArgs.builder()
.applicationName("httpHelloWorldApp")
.endpointName("indexHttpEndpoint")
.serviceName("indexService")
.build())
.match(HttpRouteMatchRuleArgs.builder()
.headers(HttpRouteMatchHeaderArgs.builder()
.name("accept")
.type("exact")
.value("application/json")
.build())
.path(HttpRouteMatchPathArgs.builder()
.rewrite("/")
.type("prefix")
.value("/index")
.build())
.build())
.name("index")
.build())
.build())
.name("contosoWebsite")
.port(8081)
.build())
.location("EastUS")
.resourceGroupName("sbz_demo")
.sourceNetwork(NetworkRefArgs.builder()
.name("Open")
.build())
.tags()
.tcp(TcpConfigArgs.builder()
.destination(GatewayDestinationArgs.builder()
.applicationName("helloWorldApp")
.endpointName("helloWorldListener")
.serviceName("helloWorldService")
.build())
.name("web")
.port(80)
.build())
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:servicefabricmesh:Gateway sampleGateway /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/gateways/{gatewayResourceName}

Properties

Link copied to clipboard
val description: Output<String>?

User readable description of the gateway.

Link copied to clipboard

Network that the Application is using.

Link copied to clipboard

Configuration for http connectivity for this gateway.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val ipAddress: Output<String>

IP address of the gateway. This is populated in the response and is ignored for incoming requests.

Link copied to clipboard
val location: Output<String>

The geo-location where the resource lives

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

State of the resource.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Network the gateway should listen on for requests.

Link copied to clipboard
val status: Output<String>

Status of the resource.

Link copied to clipboard
val statusDetails: Output<String>

Gives additional information about the current status of the gateway.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Resource tags.

Link copied to clipboard
val tcp: Output<List<TcpConfigResponse>>?

Configuration for tcp connectivity for this gateway.

Link copied to clipboard
val type: Output<String>

The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.

Link copied to clipboard
val urn: Output<String>