1. Packages
  2. Azure Native
  3. API Docs
  4. sql
  5. EncryptionProtector
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.sql.EncryptionProtector

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    The server encryption protector. Azure REST API version: 2021-11-01. Prior API version in Azure Native 1.x: 2020-11-01-preview.

    Other available API versions: 2022-11-01-preview, 2023-02-01-preview, 2023-05-01-preview, 2023-08-01-preview.

    Example Usage

    Update the encryption protector to key vault

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var encryptionProtector = new AzureNative.Sql.EncryptionProtector("encryptionProtector", new()
        {
            AutoRotationEnabled = false,
            EncryptionProtectorName = "current",
            ResourceGroupName = "sqlcrudtest-7398",
            ServerKeyName = "someVault_someKey_01234567890123456789012345678901",
            ServerKeyType = AzureNative.Sql.ServerKeyType.AzureKeyVault,
            ServerName = "sqlcrudtest-4645",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/sql/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sql.NewEncryptionProtector(ctx, "encryptionProtector", &sql.EncryptionProtectorArgs{
    			AutoRotationEnabled:     pulumi.Bool(false),
    			EncryptionProtectorName: pulumi.String("current"),
    			ResourceGroupName:       pulumi.String("sqlcrudtest-7398"),
    			ServerKeyName:           pulumi.String("someVault_someKey_01234567890123456789012345678901"),
    			ServerKeyType:           pulumi.String(sql.ServerKeyTypeAzureKeyVault),
    			ServerName:              pulumi.String("sqlcrudtest-4645"),
    		})
    		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.sql.EncryptionProtector;
    import com.pulumi.azurenative.sql.EncryptionProtectorArgs;
    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 encryptionProtector = new EncryptionProtector("encryptionProtector", EncryptionProtectorArgs.builder()        
                .autoRotationEnabled(false)
                .encryptionProtectorName("current")
                .resourceGroupName("sqlcrudtest-7398")
                .serverKeyName("someVault_someKey_01234567890123456789012345678901")
                .serverKeyType("AzureKeyVault")
                .serverName("sqlcrudtest-4645")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    encryption_protector = azure_native.sql.EncryptionProtector("encryptionProtector",
        auto_rotation_enabled=False,
        encryption_protector_name="current",
        resource_group_name="sqlcrudtest-7398",
        server_key_name="someVault_someKey_01234567890123456789012345678901",
        server_key_type=azure_native.sql.ServerKeyType.AZURE_KEY_VAULT,
        server_name="sqlcrudtest-4645")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const encryptionProtector = new azure_native.sql.EncryptionProtector("encryptionProtector", {
        autoRotationEnabled: false,
        encryptionProtectorName: "current",
        resourceGroupName: "sqlcrudtest-7398",
        serverKeyName: "someVault_someKey_01234567890123456789012345678901",
        serverKeyType: azure_native.sql.ServerKeyType.AzureKeyVault,
        serverName: "sqlcrudtest-4645",
    });
    
    resources:
      encryptionProtector:
        type: azure-native:sql:EncryptionProtector
        properties:
          autoRotationEnabled: false
          encryptionProtectorName: current
          resourceGroupName: sqlcrudtest-7398
          serverKeyName: someVault_someKey_01234567890123456789012345678901
          serverKeyType: AzureKeyVault
          serverName: sqlcrudtest-4645
    

    Update the encryption protector to service managed

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var encryptionProtector = new AzureNative.Sql.EncryptionProtector("encryptionProtector", new()
        {
            EncryptionProtectorName = "current",
            ResourceGroupName = "sqlcrudtest-7398",
            ServerKeyName = "ServiceManaged",
            ServerKeyType = AzureNative.Sql.ServerKeyType.ServiceManaged,
            ServerName = "sqlcrudtest-4645",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/sql/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sql.NewEncryptionProtector(ctx, "encryptionProtector", &sql.EncryptionProtectorArgs{
    			EncryptionProtectorName: pulumi.String("current"),
    			ResourceGroupName:       pulumi.String("sqlcrudtest-7398"),
    			ServerKeyName:           pulumi.String("ServiceManaged"),
    			ServerKeyType:           pulumi.String(sql.ServerKeyTypeServiceManaged),
    			ServerName:              pulumi.String("sqlcrudtest-4645"),
    		})
    		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.sql.EncryptionProtector;
    import com.pulumi.azurenative.sql.EncryptionProtectorArgs;
    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 encryptionProtector = new EncryptionProtector("encryptionProtector", EncryptionProtectorArgs.builder()        
                .encryptionProtectorName("current")
                .resourceGroupName("sqlcrudtest-7398")
                .serverKeyName("ServiceManaged")
                .serverKeyType("ServiceManaged")
                .serverName("sqlcrudtest-4645")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    encryption_protector = azure_native.sql.EncryptionProtector("encryptionProtector",
        encryption_protector_name="current",
        resource_group_name="sqlcrudtest-7398",
        server_key_name="ServiceManaged",
        server_key_type=azure_native.sql.ServerKeyType.SERVICE_MANAGED,
        server_name="sqlcrudtest-4645")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const encryptionProtector = new azure_native.sql.EncryptionProtector("encryptionProtector", {
        encryptionProtectorName: "current",
        resourceGroupName: "sqlcrudtest-7398",
        serverKeyName: "ServiceManaged",
        serverKeyType: azure_native.sql.ServerKeyType.ServiceManaged,
        serverName: "sqlcrudtest-4645",
    });
    
    resources:
      encryptionProtector:
        type: azure-native:sql:EncryptionProtector
        properties:
          encryptionProtectorName: current
          resourceGroupName: sqlcrudtest-7398
          serverKeyName: ServiceManaged
          serverKeyType: ServiceManaged
          serverName: sqlcrudtest-4645
    

    Create EncryptionProtector Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new EncryptionProtector(name: string, args: EncryptionProtectorArgs, opts?: CustomResourceOptions);
    @overload
    def EncryptionProtector(resource_name: str,
                            args: EncryptionProtectorArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def EncryptionProtector(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            resource_group_name: Optional[str] = None,
                            server_key_type: Optional[Union[str, ServerKeyType]] = None,
                            server_name: Optional[str] = None,
                            auto_rotation_enabled: Optional[bool] = None,
                            encryption_protector_name: Optional[str] = None,
                            server_key_name: Optional[str] = None)
    func NewEncryptionProtector(ctx *Context, name string, args EncryptionProtectorArgs, opts ...ResourceOption) (*EncryptionProtector, error)
    public EncryptionProtector(string name, EncryptionProtectorArgs args, CustomResourceOptions? opts = null)
    public EncryptionProtector(String name, EncryptionProtectorArgs args)
    public EncryptionProtector(String name, EncryptionProtectorArgs args, CustomResourceOptions options)
    
    type: azure-native:sql:EncryptionProtector
    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 EncryptionProtectorArgs
    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 EncryptionProtectorArgs
    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 EncryptionProtectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EncryptionProtectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EncryptionProtectorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var encryptionProtectorResource = new AzureNative.Sql.EncryptionProtector("encryptionProtectorResource", new()
    {
        ResourceGroupName = "string",
        ServerKeyType = "string",
        ServerName = "string",
        AutoRotationEnabled = false,
        EncryptionProtectorName = "string",
        ServerKeyName = "string",
    });
    
    example, err := sql.NewEncryptionProtector(ctx, "encryptionProtectorResource", &sql.EncryptionProtectorArgs{
    ResourceGroupName: pulumi.String("string"),
    ServerKeyType: pulumi.String("string"),
    ServerName: pulumi.String("string"),
    AutoRotationEnabled: pulumi.Bool(false),
    EncryptionProtectorName: pulumi.String("string"),
    ServerKeyName: pulumi.String("string"),
    })
    
    var encryptionProtectorResource = new EncryptionProtector("encryptionProtectorResource", EncryptionProtectorArgs.builder()        
        .resourceGroupName("string")
        .serverKeyType("string")
        .serverName("string")
        .autoRotationEnabled(false)
        .encryptionProtectorName("string")
        .serverKeyName("string")
        .build());
    
    encryption_protector_resource = azure_native.sql.EncryptionProtector("encryptionProtectorResource",
        resource_group_name="string",
        server_key_type="string",
        server_name="string",
        auto_rotation_enabled=False,
        encryption_protector_name="string",
        server_key_name="string")
    
    const encryptionProtectorResource = new azure_native.sql.EncryptionProtector("encryptionProtectorResource", {
        resourceGroupName: "string",
        serverKeyType: "string",
        serverName: "string",
        autoRotationEnabled: false,
        encryptionProtectorName: "string",
        serverKeyName: "string",
    });
    
    type: azure-native:sql:EncryptionProtector
    properties:
        autoRotationEnabled: false
        encryptionProtectorName: string
        resourceGroupName: string
        serverKeyName: string
        serverKeyType: string
        serverName: string
    

    EncryptionProtector 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 EncryptionProtector resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    ServerKeyType string | Pulumi.AzureNative.Sql.ServerKeyType
    The encryption protector type like 'ServiceManaged', 'AzureKeyVault'.
    ServerName string
    The name of the server.
    AutoRotationEnabled bool
    Key auto rotation opt-in flag. Either true or false.
    EncryptionProtectorName string
    The name of the encryption protector to be updated.
    ServerKeyName string
    The name of the server key.
    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    ServerKeyType string | ServerKeyType
    The encryption protector type like 'ServiceManaged', 'AzureKeyVault'.
    ServerName string
    The name of the server.
    AutoRotationEnabled bool
    Key auto rotation opt-in flag. Either true or false.
    EncryptionProtectorName string
    The name of the encryption protector to be updated.
    ServerKeyName string
    The name of the server key.
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    serverKeyType String | ServerKeyType
    The encryption protector type like 'ServiceManaged', 'AzureKeyVault'.
    serverName String
    The name of the server.
    autoRotationEnabled Boolean
    Key auto rotation opt-in flag. Either true or false.
    encryptionProtectorName String
    The name of the encryption protector to be updated.
    serverKeyName String
    The name of the server key.
    resourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    serverKeyType string | ServerKeyType
    The encryption protector type like 'ServiceManaged', 'AzureKeyVault'.
    serverName string
    The name of the server.
    autoRotationEnabled boolean
    Key auto rotation opt-in flag. Either true or false.
    encryptionProtectorName string
    The name of the encryption protector to be updated.
    serverKeyName string
    The name of the server key.
    resource_group_name str
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    server_key_type str | ServerKeyType
    The encryption protector type like 'ServiceManaged', 'AzureKeyVault'.
    server_name str
    The name of the server.
    auto_rotation_enabled bool
    Key auto rotation opt-in flag. Either true or false.
    encryption_protector_name str
    The name of the encryption protector to be updated.
    server_key_name str
    The name of the server key.
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    serverKeyType String | "ServiceManaged" | "AzureKeyVault"
    The encryption protector type like 'ServiceManaged', 'AzureKeyVault'.
    serverName String
    The name of the server.
    autoRotationEnabled Boolean
    Key auto rotation opt-in flag. Either true or false.
    encryptionProtectorName String
    The name of the encryption protector to be updated.
    serverKeyName String
    The name of the server key.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EncryptionProtector resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Kind of encryption protector. This is metadata used for the Azure portal experience.
    Location string
    Resource location.
    Name string
    Resource name.
    Subregion string
    Subregion of the encryption protector.
    Thumbprint string
    Thumbprint of the server key.
    Type string
    Resource type.
    Uri string
    The URI of the server key.
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Kind of encryption protector. This is metadata used for the Azure portal experience.
    Location string
    Resource location.
    Name string
    Resource name.
    Subregion string
    Subregion of the encryption protector.
    Thumbprint string
    Thumbprint of the server key.
    Type string
    Resource type.
    Uri string
    The URI of the server key.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Kind of encryption protector. This is metadata used for the Azure portal experience.
    location String
    Resource location.
    name String
    Resource name.
    subregion String
    Subregion of the encryption protector.
    thumbprint String
    Thumbprint of the server key.
    type String
    Resource type.
    uri String
    The URI of the server key.
    id string
    The provider-assigned unique ID for this managed resource.
    kind string
    Kind of encryption protector. This is metadata used for the Azure portal experience.
    location string
    Resource location.
    name string
    Resource name.
    subregion string
    Subregion of the encryption protector.
    thumbprint string
    Thumbprint of the server key.
    type string
    Resource type.
    uri string
    The URI of the server key.
    id str
    The provider-assigned unique ID for this managed resource.
    kind str
    Kind of encryption protector. This is metadata used for the Azure portal experience.
    location str
    Resource location.
    name str
    Resource name.
    subregion str
    Subregion of the encryption protector.
    thumbprint str
    Thumbprint of the server key.
    type str
    Resource type.
    uri str
    The URI of the server key.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Kind of encryption protector. This is metadata used for the Azure portal experience.
    location String
    Resource location.
    name String
    Resource name.
    subregion String
    Subregion of the encryption protector.
    thumbprint String
    Thumbprint of the server key.
    type String
    Resource type.
    uri String
    The URI of the server key.

    Supporting Types

    ServerKeyType, ServerKeyTypeArgs

    ServiceManaged
    ServiceManaged
    AzureKeyVault
    AzureKeyVault
    ServerKeyTypeServiceManaged
    ServiceManaged
    ServerKeyTypeAzureKeyVault
    AzureKeyVault
    ServiceManaged
    ServiceManaged
    AzureKeyVault
    AzureKeyVault
    ServiceManaged
    ServiceManaged
    AzureKeyVault
    AzureKeyVault
    SERVICE_MANAGED
    ServiceManaged
    AZURE_KEY_VAULT
    AzureKeyVault
    "ServiceManaged"
    ServiceManaged
    "AzureKeyVault"
    AzureKeyVault

    Import

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

    $ pulumi import azure-native:sql:EncryptionProtector current /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/encryptionProtector/{encryptionProtectorName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi