1. Packages
  2. Azure Native
  3. API Docs
  4. cognitiveservices
  5. EncryptionScope
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.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.cognitiveservices.EncryptionScope

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.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Cognitive Services EncryptionScope Azure REST API version: 2023-10-01-preview.

    Example Usage

    PutEncryptionScope

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var encryptionScope = new AzureNative.CognitiveServices.EncryptionScope("encryptionScope", new()
        {
            AccountName = "accountName",
            EncryptionScopeName = "encryptionScopeName",
            Properties = new AzureNative.CognitiveServices.Inputs.EncryptionScopePropertiesArgs
            {
                KeySource = AzureNative.CognitiveServices.KeySource.Microsoft_KeyVault,
                KeyVaultProperties = new AzureNative.CognitiveServices.Inputs.KeyVaultPropertiesArgs
                {
                    IdentityClientId = "00000000-0000-0000-0000-000000000000",
                    KeyName = "DevKeyWestUS2",
                    KeyVaultUri = "https://devkvwestus2.vault.azure.net/",
                    KeyVersion = "9f85549d7bf14ff4bf178c10d3bdca95",
                },
                State = AzureNative.CognitiveServices.EncryptionScopeState.Enabled,
            },
            ResourceGroupName = "resourceGroupName",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/cognitiveservices/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cognitiveservices.NewEncryptionScope(ctx, "encryptionScope", &cognitiveservices.EncryptionScopeArgs{
    			AccountName:         pulumi.String("accountName"),
    			EncryptionScopeName: pulumi.String("encryptionScopeName"),
    			Properties: &cognitiveservices.EncryptionScopePropertiesArgs{
    				KeySource: pulumi.String(cognitiveservices.KeySource_Microsoft_KeyVault),
    				KeyVaultProperties: &cognitiveservices.KeyVaultPropertiesArgs{
    					IdentityClientId: pulumi.String("00000000-0000-0000-0000-000000000000"),
    					KeyName:          pulumi.String("DevKeyWestUS2"),
    					KeyVaultUri:      pulumi.String("https://devkvwestus2.vault.azure.net/"),
    					KeyVersion:       pulumi.String("9f85549d7bf14ff4bf178c10d3bdca95"),
    				},
    				State: pulumi.String(cognitiveservices.EncryptionScopeStateEnabled),
    			},
    			ResourceGroupName: pulumi.String("resourceGroupName"),
    		})
    		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.cognitiveservices.EncryptionScope;
    import com.pulumi.azurenative.cognitiveservices.EncryptionScopeArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.EncryptionScopePropertiesArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.KeyVaultPropertiesArgs;
    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 encryptionScope = new EncryptionScope("encryptionScope", EncryptionScopeArgs.builder()        
                .accountName("accountName")
                .encryptionScopeName("encryptionScopeName")
                .properties(EncryptionScopePropertiesArgs.builder()
                    .keySource("Microsoft.KeyVault")
                    .keyVaultProperties(KeyVaultPropertiesArgs.builder()
                        .identityClientId("00000000-0000-0000-0000-000000000000")
                        .keyName("DevKeyWestUS2")
                        .keyVaultUri("https://devkvwestus2.vault.azure.net/")
                        .keyVersion("9f85549d7bf14ff4bf178c10d3bdca95")
                        .build())
                    .state("Enabled")
                    .build())
                .resourceGroupName("resourceGroupName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    encryption_scope = azure_native.cognitiveservices.EncryptionScope("encryptionScope",
        account_name="accountName",
        encryption_scope_name="encryptionScopeName",
        properties=azure_native.cognitiveservices.EncryptionScopePropertiesArgs(
            key_source=azure_native.cognitiveservices.KeySource.MICROSOFT_KEY_VAULT,
            key_vault_properties=azure_native.cognitiveservices.KeyVaultPropertiesArgs(
                identity_client_id="00000000-0000-0000-0000-000000000000",
                key_name="DevKeyWestUS2",
                key_vault_uri="https://devkvwestus2.vault.azure.net/",
                key_version="9f85549d7bf14ff4bf178c10d3bdca95",
            ),
            state=azure_native.cognitiveservices.EncryptionScopeState.ENABLED,
        ),
        resource_group_name="resourceGroupName")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const encryptionScope = new azure_native.cognitiveservices.EncryptionScope("encryptionScope", {
        accountName: "accountName",
        encryptionScopeName: "encryptionScopeName",
        properties: {
            keySource: azure_native.cognitiveservices.KeySource.Microsoft_KeyVault,
            keyVaultProperties: {
                identityClientId: "00000000-0000-0000-0000-000000000000",
                keyName: "DevKeyWestUS2",
                keyVaultUri: "https://devkvwestus2.vault.azure.net/",
                keyVersion: "9f85549d7bf14ff4bf178c10d3bdca95",
            },
            state: azure_native.cognitiveservices.EncryptionScopeState.Enabled,
        },
        resourceGroupName: "resourceGroupName",
    });
    
    resources:
      encryptionScope:
        type: azure-native:cognitiveservices:EncryptionScope
        properties:
          accountName: accountName
          encryptionScopeName: encryptionScopeName
          properties:
            keySource: Microsoft.KeyVault
            keyVaultProperties:
              identityClientId: 00000000-0000-0000-0000-000000000000
              keyName: DevKeyWestUS2
              keyVaultUri: https://devkvwestus2.vault.azure.net/
              keyVersion: 9f85549d7bf14ff4bf178c10d3bdca95
            state: Enabled
          resourceGroupName: resourceGroupName
    

    Create EncryptionScope Resource

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

    Constructor syntax

    new EncryptionScope(name: string, args: EncryptionScopeArgs, opts?: CustomResourceOptions);
    @overload
    def EncryptionScope(resource_name: str,
                        args: EncryptionScopeArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def EncryptionScope(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        account_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        encryption_scope_name: Optional[str] = None,
                        properties: Optional[EncryptionScopePropertiesArgs] = None,
                        tags: Optional[Mapping[str, str]] = None)
    func NewEncryptionScope(ctx *Context, name string, args EncryptionScopeArgs, opts ...ResourceOption) (*EncryptionScope, error)
    public EncryptionScope(string name, EncryptionScopeArgs args, CustomResourceOptions? opts = null)
    public EncryptionScope(String name, EncryptionScopeArgs args)
    public EncryptionScope(String name, EncryptionScopeArgs args, CustomResourceOptions options)
    
    type: azure-native:cognitiveservices:EncryptionScope
    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 EncryptionScopeArgs
    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 EncryptionScopeArgs
    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 EncryptionScopeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EncryptionScopeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EncryptionScopeArgs
    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 encryptionScopeResource = new AzureNative.CognitiveServices.EncryptionScope("encryptionScopeResource", new()
    {
        AccountName = "string",
        ResourceGroupName = "string",
        EncryptionScopeName = "string",
        Properties = new AzureNative.CognitiveServices.Inputs.EncryptionScopePropertiesArgs
        {
            KeySource = "string",
            KeyVaultProperties = new AzureNative.CognitiveServices.Inputs.KeyVaultPropertiesArgs
            {
                IdentityClientId = "string",
                KeyName = "string",
                KeyVaultUri = "string",
                KeyVersion = "string",
            },
            State = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cognitiveservices.NewEncryptionScope(ctx, "encryptionScopeResource", &cognitiveservices.EncryptionScopeArgs{
    AccountName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    EncryptionScopeName: pulumi.String("string"),
    Properties: &cognitiveservices.EncryptionScopePropertiesArgs{
    KeySource: pulumi.String("string"),
    KeyVaultProperties: &cognitiveservices.KeyVaultPropertiesArgs{
    IdentityClientId: pulumi.String("string"),
    KeyName: pulumi.String("string"),
    KeyVaultUri: pulumi.String("string"),
    KeyVersion: pulumi.String("string"),
    },
    State: pulumi.String("string"),
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var encryptionScopeResource = new EncryptionScope("encryptionScopeResource", EncryptionScopeArgs.builder()        
        .accountName("string")
        .resourceGroupName("string")
        .encryptionScopeName("string")
        .properties(EncryptionScopePropertiesArgs.builder()
            .keySource("string")
            .keyVaultProperties(KeyVaultPropertiesArgs.builder()
                .identityClientId("string")
                .keyName("string")
                .keyVaultUri("string")
                .keyVersion("string")
                .build())
            .state("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    encryption_scope_resource = azure_native.cognitiveservices.EncryptionScope("encryptionScopeResource",
        account_name="string",
        resource_group_name="string",
        encryption_scope_name="string",
        properties=azure_native.cognitiveservices.EncryptionScopePropertiesArgs(
            key_source="string",
            key_vault_properties=azure_native.cognitiveservices.KeyVaultPropertiesArgs(
                identity_client_id="string",
                key_name="string",
                key_vault_uri="string",
                key_version="string",
            ),
            state="string",
        ),
        tags={
            "string": "string",
        })
    
    const encryptionScopeResource = new azure_native.cognitiveservices.EncryptionScope("encryptionScopeResource", {
        accountName: "string",
        resourceGroupName: "string",
        encryptionScopeName: "string",
        properties: {
            keySource: "string",
            keyVaultProperties: {
                identityClientId: "string",
                keyName: "string",
                keyVaultUri: "string",
                keyVersion: "string",
            },
            state: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:cognitiveservices:EncryptionScope
    properties:
        accountName: string
        encryptionScopeName: string
        properties:
            keySource: string
            keyVaultProperties:
                identityClientId: string
                keyName: string
                keyVaultUri: string
                keyVersion: string
            state: string
        resourceGroupName: string
        tags:
            string: string
    

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

    AccountName string
    The name of Cognitive Services account.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    EncryptionScopeName string
    The name of the encryptionScope associated with the Cognitive Services Account
    Properties Pulumi.AzureNative.CognitiveServices.Inputs.EncryptionScopeProperties
    Properties of Cognitive Services EncryptionScope.
    Tags Dictionary<string, string>
    Resource tags.
    AccountName string
    The name of Cognitive Services account.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    EncryptionScopeName string
    The name of the encryptionScope associated with the Cognitive Services Account
    Properties EncryptionScopePropertiesArgs
    Properties of Cognitive Services EncryptionScope.
    Tags map[string]string
    Resource tags.
    accountName String
    The name of Cognitive Services account.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    encryptionScopeName String
    The name of the encryptionScope associated with the Cognitive Services Account
    properties EncryptionScopeProperties
    Properties of Cognitive Services EncryptionScope.
    tags Map<String,String>
    Resource tags.
    accountName string
    The name of Cognitive Services account.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    encryptionScopeName string
    The name of the encryptionScope associated with the Cognitive Services Account
    properties EncryptionScopeProperties
    Properties of Cognitive Services EncryptionScope.
    tags {[key: string]: string}
    Resource tags.
    account_name str
    The name of Cognitive Services account.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    encryption_scope_name str
    The name of the encryptionScope associated with the Cognitive Services Account
    properties EncryptionScopePropertiesArgs
    Properties of Cognitive Services EncryptionScope.
    tags Mapping[str, str]
    Resource tags.
    accountName String
    The name of Cognitive Services account.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    encryptionScopeName String
    The name of the encryptionScope associated with the Cognitive Services Account
    properties Property Map
    Properties of Cognitive Services EncryptionScope.
    tags Map<String>
    Resource tags.

    Outputs

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

    Etag string
    Resource Etag.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.CognitiveServices.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Etag string
    Resource Etag.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag String
    Resource Etag.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag string
    Resource Etag.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag str
    Resource Etag.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag String
    Resource Etag.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    EncryptionScopeProperties, EncryptionScopePropertiesArgs

    KeySource string | KeySource
    Enumerates the possible value of keySource for Encryption
    KeyVaultProperties KeyVaultProperties
    Properties of KeyVault
    State string | EncryptionScopeStateEnum
    The encryptionScope state.
    keySource String | KeySource
    Enumerates the possible value of keySource for Encryption
    keyVaultProperties KeyVaultProperties
    Properties of KeyVault
    state String | EncryptionScopeState
    The encryptionScope state.
    keySource string | KeySource
    Enumerates the possible value of keySource for Encryption
    keyVaultProperties KeyVaultProperties
    Properties of KeyVault
    state string | EncryptionScopeState
    The encryptionScope state.
    key_source str | KeySource
    Enumerates the possible value of keySource for Encryption
    key_vault_properties KeyVaultProperties
    Properties of KeyVault
    state str | EncryptionScopeState
    The encryptionScope state.
    keySource String | "Microsoft.CognitiveServices" | "Microsoft.KeyVault"
    Enumerates the possible value of keySource for Encryption
    keyVaultProperties Property Map
    Properties of KeyVault
    state String | "Disabled" | "Enabled"
    The encryptionScope state.

    EncryptionScopePropertiesResponse, EncryptionScopePropertiesResponseArgs

    ProvisioningState string
    Gets the status of the resource at the time the operation was called.
    KeySource string
    Enumerates the possible value of keySource for Encryption
    KeyVaultProperties Pulumi.AzureNative.CognitiveServices.Inputs.KeyVaultPropertiesResponse
    Properties of KeyVault
    State string
    The encryptionScope state.
    ProvisioningState string
    Gets the status of the resource at the time the operation was called.
    KeySource string
    Enumerates the possible value of keySource for Encryption
    KeyVaultProperties KeyVaultPropertiesResponse
    Properties of KeyVault
    State string
    The encryptionScope state.
    provisioningState String
    Gets the status of the resource at the time the operation was called.
    keySource String
    Enumerates the possible value of keySource for Encryption
    keyVaultProperties KeyVaultPropertiesResponse
    Properties of KeyVault
    state String
    The encryptionScope state.
    provisioningState string
    Gets the status of the resource at the time the operation was called.
    keySource string
    Enumerates the possible value of keySource for Encryption
    keyVaultProperties KeyVaultPropertiesResponse
    Properties of KeyVault
    state string
    The encryptionScope state.
    provisioning_state str
    Gets the status of the resource at the time the operation was called.
    key_source str
    Enumerates the possible value of keySource for Encryption
    key_vault_properties KeyVaultPropertiesResponse
    Properties of KeyVault
    state str
    The encryptionScope state.
    provisioningState String
    Gets the status of the resource at the time the operation was called.
    keySource String
    Enumerates the possible value of keySource for Encryption
    keyVaultProperties Property Map
    Properties of KeyVault
    state String
    The encryptionScope state.

    EncryptionScopeState, EncryptionScopeStateArgs

    Disabled
    Disabled
    Enabled
    Enabled
    EncryptionScopeStateDisabled
    Disabled
    EncryptionScopeStateEnabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    DISABLED
    Disabled
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "Enabled"
    Enabled

    KeySource, KeySourceArgs

    Microsoft_CognitiveServices
    Microsoft.CognitiveServices
    Microsoft_KeyVault
    Microsoft.KeyVault
    KeySource_Microsoft_CognitiveServices
    Microsoft.CognitiveServices
    KeySource_Microsoft_KeyVault
    Microsoft.KeyVault
    Microsoft_CognitiveServices
    Microsoft.CognitiveServices
    Microsoft_KeyVault
    Microsoft.KeyVault
    Microsoft_CognitiveServices
    Microsoft.CognitiveServices
    Microsoft_KeyVault
    Microsoft.KeyVault
    MICROSOFT_COGNITIVE_SERVICES
    Microsoft.CognitiveServices
    MICROSOFT_KEY_VAULT
    Microsoft.KeyVault
    "Microsoft.CognitiveServices"
    Microsoft.CognitiveServices
    "Microsoft.KeyVault"
    Microsoft.KeyVault

    KeyVaultProperties, KeyVaultPropertiesArgs

    IdentityClientId string
    KeyName string
    Name of the Key from KeyVault
    KeyVaultUri string
    Uri of KeyVault
    KeyVersion string
    Version of the Key from KeyVault
    IdentityClientId string
    KeyName string
    Name of the Key from KeyVault
    KeyVaultUri string
    Uri of KeyVault
    KeyVersion string
    Version of the Key from KeyVault
    identityClientId String
    keyName String
    Name of the Key from KeyVault
    keyVaultUri String
    Uri of KeyVault
    keyVersion String
    Version of the Key from KeyVault
    identityClientId string
    keyName string
    Name of the Key from KeyVault
    keyVaultUri string
    Uri of KeyVault
    keyVersion string
    Version of the Key from KeyVault
    identity_client_id str
    key_name str
    Name of the Key from KeyVault
    key_vault_uri str
    Uri of KeyVault
    key_version str
    Version of the Key from KeyVault
    identityClientId String
    keyName String
    Name of the Key from KeyVault
    keyVaultUri String
    Uri of KeyVault
    keyVersion String
    Version of the Key from KeyVault

    KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs

    IdentityClientId string
    KeyName string
    Name of the Key from KeyVault
    KeyVaultUri string
    Uri of KeyVault
    KeyVersion string
    Version of the Key from KeyVault
    IdentityClientId string
    KeyName string
    Name of the Key from KeyVault
    KeyVaultUri string
    Uri of KeyVault
    KeyVersion string
    Version of the Key from KeyVault
    identityClientId String
    keyName String
    Name of the Key from KeyVault
    keyVaultUri String
    Uri of KeyVault
    keyVersion String
    Version of the Key from KeyVault
    identityClientId string
    keyName string
    Name of the Key from KeyVault
    keyVaultUri string
    Uri of KeyVault
    keyVersion string
    Version of the Key from KeyVault
    identity_client_id str
    key_name str
    Name of the Key from KeyVault
    key_vault_uri str
    Uri of KeyVault
    key_version str
    Version of the Key from KeyVault
    identityClientId String
    keyName String
    Name of the Key from KeyVault
    keyVaultUri String
    Uri of KeyVault
    keyVersion String
    Version of the Key from KeyVault

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:cognitiveservices:EncryptionScope encryptionScopeName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/encryptionScopes/{encryptionScopeName} 
    

    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.38.0 published on Monday, Apr 22, 2024 by Pulumi