azure-native.dbforpostgresql.ServerAdministrator
Explore with Pulumi AI
Represents a and external administrator to be created. API Version: 2017-12-01.
Example Usage
ServerAdministratorCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var serverAdministrator = new AzureNative.DBforPostgreSQL.ServerAdministrator("serverAdministrator", new()
{
AdministratorType = "ActiveDirectory",
Login = "bob@contoso.com",
ResourceGroupName = "testrg",
ServerName = "pgtestsvc4",
Sid = "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c",
TenantId = "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c",
});
});
package main
import (
dbforpostgresql "github.com/pulumi/pulumi-azure-native-sdk/dbforpostgresql"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dbforpostgresql.NewServerAdministrator(ctx, "serverAdministrator", &dbforpostgresql.ServerAdministratorArgs{
AdministratorType: pulumi.String("ActiveDirectory"),
Login: pulumi.String("bob@contoso.com"),
ResourceGroupName: pulumi.String("testrg"),
ServerName: pulumi.String("pgtestsvc4"),
Sid: pulumi.String("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c"),
TenantId: pulumi.String("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c"),
})
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.dbforpostgresql.ServerAdministrator;
import com.pulumi.azurenative.dbforpostgresql.ServerAdministratorArgs;
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 serverAdministrator = new ServerAdministrator("serverAdministrator", ServerAdministratorArgs.builder()
.administratorType("ActiveDirectory")
.login("bob@contoso.com")
.resourceGroupName("testrg")
.serverName("pgtestsvc4")
.sid("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c")
.tenantId("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
server_administrator = azure_native.dbforpostgresql.ServerAdministrator("serverAdministrator",
administrator_type="ActiveDirectory",
login="bob@contoso.com",
resource_group_name="testrg",
server_name="pgtestsvc4",
sid="c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c",
tenant_id="c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const serverAdministrator = new azure_native.dbforpostgresql.ServerAdministrator("serverAdministrator", {
administratorType: "ActiveDirectory",
login: "bob@contoso.com",
resourceGroupName: "testrg",
serverName: "pgtestsvc4",
sid: "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c",
tenantId: "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c",
});
resources:
serverAdministrator:
type: azure-native:dbforpostgresql:ServerAdministrator
properties:
administratorType: ActiveDirectory
login: bob@contoso.com
resourceGroupName: testrg
serverName: pgtestsvc4
sid: c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c
tenantId: c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c
Create ServerAdministrator Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerAdministrator(name: string, args: ServerAdministratorArgs, opts?: CustomResourceOptions);
@overload
def ServerAdministrator(resource_name: str,
args: ServerAdministratorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServerAdministrator(resource_name: str,
opts: Optional[ResourceOptions] = None,
administrator_type: Optional[Union[str, AdministratorType]] = None,
login: Optional[str] = None,
resource_group_name: Optional[str] = None,
server_name: Optional[str] = None,
sid: Optional[str] = None,
tenant_id: Optional[str] = None)
func NewServerAdministrator(ctx *Context, name string, args ServerAdministratorArgs, opts ...ResourceOption) (*ServerAdministrator, error)
public ServerAdministrator(string name, ServerAdministratorArgs args, CustomResourceOptions? opts = null)
public ServerAdministrator(String name, ServerAdministratorArgs args)
public ServerAdministrator(String name, ServerAdministratorArgs args, CustomResourceOptions options)
type: azure-native:dbforpostgresql:ServerAdministrator
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServerAdministratorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServerAdministratorArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServerAdministratorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerAdministratorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerAdministratorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeServerAdministratorResource = new AzureNative.Dbforpostgresql.ServerAdministrator("azure-nativeServerAdministratorResource", new()
{
AdministratorType = "string",
Login = "string",
ResourceGroupName = "string",
ServerName = "string",
Sid = "string",
TenantId = "string",
});
example, err := dbforpostgresql.NewServerAdministrator(ctx, "azure-nativeServerAdministratorResource", &dbforpostgresql.ServerAdministratorArgs{
AdministratorType: "string",
Login: "string",
ResourceGroupName: "string",
ServerName: "string",
Sid: "string",
TenantId: "string",
})
var azure_nativeServerAdministratorResource = new ServerAdministrator("azure-nativeServerAdministratorResource", ServerAdministratorArgs.builder()
.administratorType("string")
.login("string")
.resourceGroupName("string")
.serverName("string")
.sid("string")
.tenantId("string")
.build());
azure_native_server_administrator_resource = azure_native.dbforpostgresql.ServerAdministrator("azure-nativeServerAdministratorResource",
administrator_type=string,
login=string,
resource_group_name=string,
server_name=string,
sid=string,
tenant_id=string)
const azure_nativeServerAdministratorResource = new azure_native.dbforpostgresql.ServerAdministrator("azure-nativeServerAdministratorResource", {
administratorType: "string",
login: "string",
resourceGroupName: "string",
serverName: "string",
sid: "string",
tenantId: "string",
});
type: azure-native:dbforpostgresql:ServerAdministrator
properties:
administratorType: string
login: string
resourceGroupName: string
serverName: string
sid: string
tenantId: string
ServerAdministrator Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ServerAdministrator resource accepts the following input properties:
- Administrator
Type string | Pulumi.Azure Native. DBfor Postgre SQL. Administrator Type - The type of administrator.
- Login string
- The server administrator login account name.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Server
Name string - The name of the server.
- Sid string
- The server administrator Sid (Secure ID).
- Tenant
Id string - The server Active Directory Administrator tenant id.
- Administrator
Type string | AdministratorType - The type of administrator.
- Login string
- The server administrator login account name.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Server
Name string - The name of the server.
- Sid string
- The server administrator Sid (Secure ID).
- Tenant
Id string - The server Active Directory Administrator tenant id.
- administrator
Type String | AdministratorType - The type of administrator.
- login String
- The server administrator login account name.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- server
Name String - The name of the server.
- sid String
- The server administrator Sid (Secure ID).
- tenant
Id String - The server Active Directory Administrator tenant id.
- administrator
Type string | AdministratorType - The type of administrator.
- login string
- The server administrator login account name.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- server
Name string - The name of the server.
- sid string
- The server administrator Sid (Secure ID).
- tenant
Id string - The server Active Directory Administrator tenant id.
- administrator_
type str | AdministratorType - The type of administrator.
- login str
- The server administrator login account name.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- server_
name str - The name of the server.
- sid str
- The server administrator Sid (Secure ID).
- tenant_
id str - The server Active Directory Administrator tenant id.
- administrator
Type String | "ActiveDirectory" - The type of administrator.
- login String
- The server administrator login account name.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- server
Name String - The name of the server.
- sid String
- The server administrator Sid (Secure ID).
- tenant
Id String - The server Active Directory Administrator tenant id.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerAdministrator resource produces the following output properties:
Supporting Types
AdministratorType, AdministratorTypeArgs
- Active
Directory - ActiveDirectory
- Administrator
Type Active Directory - ActiveDirectory
- Active
Directory - ActiveDirectory
- Active
Directory - ActiveDirectory
- ACTIVE_DIRECTORY
- ActiveDirectory
- "Active
Directory" - ActiveDirectory
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:dbforpostgresql:ServerAdministrator activeDirectory /subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforPostgreSQL/servers/pgtestsvc4/administrators/activeDirectory
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0