Server Group Role Args
data class ServerGroupRoleArgs(val clusterName: Output<String>? = null, val objectId: Output<String>? = null, val password: Output<String>? = null, val principalType: Output<Either<String, PrincipalType>>? = null, val resourceGroupName: Output<String>? = null, val roleName: Output<String>? = null, val roleType: Output<Either<String, RoleType>>? = null, val tenantId: Output<String>? = null) : ConvertibleToJava<ServerGroupRoleArgs>
Represents a cluster role. Uses Azure REST API version 2023-03-02-preview. Other available API versions: 2022-11-08. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native dbforpostgresql [ApiVersion]
. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.
Example Usage
RoleCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var serverGroupRole = new AzureNative.DBforPostgreSQL.ServerGroupRole("serverGroupRole", new()
{
ClusterName = "pgtestsvc4",
Password = "password",
ResourceGroupName = "TestGroup",
RoleName = "role1",
});
});
Content copied to clipboard
package main
import (
dbforpostgresql "github.com/pulumi/pulumi-azure-native-sdk/dbforpostgresql/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dbforpostgresql.NewServerGroupRole(ctx, "serverGroupRole", &dbforpostgresql.ServerGroupRoleArgs{
ClusterName: pulumi.String("pgtestsvc4"),
Password: pulumi.String("password"),
ResourceGroupName: pulumi.String("TestGroup"),
RoleName: pulumi.String("role1"),
})
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.dbforpostgresql.ServerGroupRole;
import com.pulumi.azurenative.dbforpostgresql.ServerGroupRoleArgs;
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 serverGroupRole = new ServerGroupRole("serverGroupRole", ServerGroupRoleArgs.builder()
.clusterName("pgtestsvc4")
.password("password")
.resourceGroupName("TestGroup")
.roleName("role1")
.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:dbforpostgresql:ServerGroupRole role1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/serverGroupsv2/{clusterName}/roles/{roleName}
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(clusterName: Output<String>? = null, objectId: Output<String>? = null, password: Output<String>? = null, principalType: Output<Either<String, PrincipalType>>? = null, resourceGroupName: Output<String>? = null, roleName: Output<String>? = null, roleType: Output<Either<String, RoleType>>? = null, tenantId: Output<String>? = null)