Show / Hide Table of Contents

Namespace Pulumi.Azure.AppPlatform

Classes

GetSpringCloudService

GetSpringCloudServiceArgs

GetSpringCloudServiceResult

SpringCloudApp

Manage an Azure Spring Cloud Application.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
    {
        Location = "Southeast Asia",
    });
    var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new Azure.AppPlatform.SpringCloudServiceArgs
    {
        ResourceGroupName = exampleResourceGroup.Name,
        Location = exampleResourceGroup.Location,
    });
    var exampleSpringCloudApp = new Azure.AppPlatform.SpringCloudApp("exampleSpringCloudApp", new Azure.AppPlatform.SpringCloudAppArgs
    {
        ResourceGroupName = exampleResourceGroup.Name,
        ServiceName = exampleSpringCloudService.Name,
    });
}

}

SpringCloudAppArgs

SpringCloudAppState

SpringCloudService

Manages an Azure Spring Cloud Service.

SpringCloudServiceArgs

SpringCloudServiceState

Back to top Copyright 2016-2020, Pulumi Corporation.