Private Atlase Args
data class PrivateAtlaseArgs(val accountName: Output<String>? = null, val location: Output<String>? = null, val privateAtlasName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<PrivateAtlaseArgs>
An Azure resource which represents which will provision the ability to create private location data. 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" },
},
});
});
Content copied to clipboard
package main
import (
maps "github.com/pulumi/pulumi-azure-native-sdk/maps"
"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
})
}
Content copied to clipboard
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());
}
}
Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:maps:PrivateAtlase myPrivateAtlas /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/myResourceGroup/providers/Microsoft.Maps/accounts/myMapsAccount/privateAtlases/myPrivateAtlas
Content copied to clipboard
Constructors
Properties
Link copied to clipboard
The name of the Maps Account.
Link copied to clipboard
The name of the Private Atlas instance.
Link copied to clipboard
The name of the resource group. The name is case insensitive.
Link copied to clipboard
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.