Account

class Account : KotlinCustomResource

Device Update account details. API Version: 2020-03-01-preview.

Example Usage

Creates or updates Account

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var account = new AzureNative.DeviceUpdate.Account("account", new()
{
AccountName = "contoso",
Location = "westus2",
ResourceGroupName = "test-rg",
});
});
package main
import (
deviceupdate "github.com/pulumi/pulumi-azure-native-sdk/deviceupdate"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := deviceupdate.NewAccount(ctx, "account", &deviceupdate.AccountArgs{
AccountName: pulumi.String("contoso"),
Location: pulumi.String("westus2"),
ResourceGroupName: pulumi.String("test-rg"),
})
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.deviceupdate.Account;
import com.pulumi.azurenative.deviceupdate.AccountArgs;
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 account = new Account("account", AccountArgs.builder()
.accountName("contoso")
.location("westus2")
.resourceGroupName("test-rg")
.build());
}
}

Import

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

$ pulumi import azure-native:deviceupdate:Account contoso /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DeviceUpdate/accounts/contoso

Properties

Link copied to clipboard
val hostName: Output<String>

API host name.

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

The type of identity used for the resource.

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

List of private endpoint connections associated with the account.

Link copied to clipboard

Provisioning state.

Link copied to clipboard

Whether or not public network access is allowed for the account.

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

Azure Resource Manager metadata containing createdBy and modifiedBy information.

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>