PrivateAtlase

class PrivateAtlase : KotlinCustomResource

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" },
},
});
});
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
})
}
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/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/myResourceGroup/providers/Microsoft.Maps/accounts/myMapsAccount/privateAtlases/myPrivateAtlas

Properties

Link copied to clipboard
val id: Output<String>
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

The Private Atlas resource properties.

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

Resource tags.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>