Private Atlase Args
An Azure resource which represents which will provision the ability to create private location data. Uses Azure REST API version 2020-02-01-preview. In version 2.x of the Azure Native provider, it used API version 2020-02-01-preview.
Example Usage
CreatePrivateAtlas
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var privateAtlase = new AzureNative.Maps.PrivateAtlase("privateAtlase", new()
{
AccountName = "myMapsAccount",
Location = "unitedstates",
PrivateAtlasName = "myPrivateAtlas",
ResourceGroupName = "myResourceGroup",
Tags =
{
{ "test", "true" },
},
});
});
package main
import (
maps "github.com/pulumi/pulumi-azure-native-sdk/maps/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := maps.NewPrivateAtlase(ctx, "privateAtlase", &maps.PrivateAtlaseArgs{
AccountName: pulumi.String("myMapsAccount"),
Location: pulumi.String("unitedstates"),
PrivateAtlasName: pulumi.String("myPrivateAtlas"),
ResourceGroupName: pulumi.String("myResourceGroup"),
Tags: pulumi.StringMap{
"test": pulumi.String("true"),
},
})
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.maps.PrivateAtlase;
import com.pulumi.azurenative.maps.PrivateAtlaseArgs;
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 privateAtlase = new PrivateAtlase("privateAtlase", PrivateAtlaseArgs.builder()
.accountName("myMapsAccount")
.location("unitedstates")
.privateAtlasName("myPrivateAtlas")
.resourceGroupName("myResourceGroup")
.tags(Map.of("test", "true"))
.build());
}
}
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:maps:PrivateAtlase myPrivateAtlas /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Maps/accounts/{accountName}/privateAtlases/{privateAtlasName}
Constructors
Properties
The name of the Maps Account.
The name of the Private Atlas instance.
The name of the resource group. The name is case insensitive.
Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters.