VerifierWorkspaceArgs

data class VerifierWorkspaceArgs(val location: Output<String>? = null, val networkManagerName: Output<String>? = null, val properties: Output<VerifierWorkspacePropertiesArgs>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val workspaceName: Output<String>? = null) : ConvertibleToJava<VerifierWorkspaceArgs>

Instance of Verifier Workspace. Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2024-01-01-preview. Other available API versions: 2024-01-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native network [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

Example Usage

VerifierWorkspaceCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var verifierWorkspace = new AzureNative.Network.VerifierWorkspace("verifierWorkspace", new()
{
Location = "eastus",
NetworkManagerName = "testNetworkManager",
Properties = new AzureNative.Network.Inputs.VerifierWorkspacePropertiesArgs
{
Description = "A sample workspace",
},
ResourceGroupName = "rg1",
WorkspaceName = "testWorkspace",
});
});
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewVerifierWorkspace(ctx, "verifierWorkspace", &network.VerifierWorkspaceArgs{
Location: pulumi.String("eastus"),
NetworkManagerName: pulumi.String("testNetworkManager"),
Properties: &network.VerifierWorkspacePropertiesArgs{
Description: pulumi.String("A sample workspace"),
},
ResourceGroupName: pulumi.String("rg1"),
WorkspaceName: pulumi.String("testWorkspace"),
})
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.network.VerifierWorkspace;
import com.pulumi.azurenative.network.VerifierWorkspaceArgs;
import com.pulumi.azurenative.network.inputs.VerifierWorkspacePropertiesArgs;
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 verifierWorkspace = new VerifierWorkspace("verifierWorkspace", VerifierWorkspaceArgs.builder()
.location("eastus")
.networkManagerName("testNetworkManager")
.properties(VerifierWorkspacePropertiesArgs.builder()
.description("A sample workspace")
.build())
.resourceGroupName("rg1")
.workspaceName("testWorkspace")
.build());
}
}

Import

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

$ pulumi import azure-native:network:VerifierWorkspace testWorkspace /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkManagers/{networkManagerName}/verifierWorkspaces/{workspaceName}

Constructors

Link copied to clipboard
constructor(location: Output<String>? = null, networkManagerName: Output<String>? = null, properties: Output<VerifierWorkspacePropertiesArgs>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, workspaceName: Output<String>? = null)

Properties

Link copied to clipboard
val location: Output<String>? = null

The geo-location where the resource lives

Link copied to clipboard
val networkManagerName: Output<String>? = null

The name of the network manager.

Link copied to clipboard

Properties of Verifier Workspace resource.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Resource tags.

Link copied to clipboard
val workspaceName: Output<String>? = null

Workspace name.

Functions

Link copied to clipboard
open override fun toJava(): VerifierWorkspaceArgs