azure-native.cognitiveservices.EncryptionScope
Explore with Pulumi AI
Cognitive Services EncryptionScope Azure REST API version: 2023-10-01-preview.
Other available API versions: 2024-04-01-preview, 2024-06-01-preview, 2024-10-01.
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 (
	cognitiveservices "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 * 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",
});
import pulumi
import pulumi_azure_native as azure_native
encryption_scope = azure_native.cognitiveservices.EncryptionScope("encryptionScope",
    account_name="accountName",
    encryption_scope_name="encryptionScopeName",
    properties={
        "key_source": azure_native.cognitiveservices.KeySource.MICROSOFT_KEY_VAULT,
        "key_vault_properties": {
            "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")
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.
Constructor 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={
        "key_source": "string",
        "key_vault_properties": {
            "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EncryptionScope resource accepts the following input properties:
- AccountName string
- The name of Cognitive Services account.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- EncryptionScope stringName 
- The name of the encryptionScope associated with the Cognitive Services Account
- Properties
Pulumi.Azure Native. Cognitive Services. Inputs. Encryption Scope Properties 
- Properties of Cognitive Services EncryptionScope.
- Dictionary<string, string>
- Resource tags.
- AccountName string
- The name of Cognitive Services account.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- EncryptionScope stringName 
- The name of the encryptionScope associated with the Cognitive Services Account
- Properties
EncryptionScope Properties Args 
- Properties of Cognitive Services EncryptionScope.
- map[string]string
- Resource tags.
- accountName String
- The name of Cognitive Services account.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- encryptionScope StringName 
- The name of the encryptionScope associated with the Cognitive Services Account
- properties
EncryptionScope Properties 
- Properties of Cognitive Services EncryptionScope.
- Map<String,String>
- Resource tags.
- accountName string
- The name of Cognitive Services account.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- encryptionScope stringName 
- The name of the encryptionScope associated with the Cognitive Services Account
- properties
EncryptionScope Properties 
- Properties of Cognitive Services EncryptionScope.
- {[key: string]: string}
- Resource tags.
- account_name str
- The name of Cognitive Services account.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- encryption_scope_ strname 
- The name of the encryptionScope associated with the Cognitive Services Account
- properties
EncryptionScope Properties Args 
- Properties of Cognitive Services EncryptionScope.
- Mapping[str, str]
- Resource tags.
- accountName String
- The name of Cognitive Services account.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- encryptionScope StringName 
- The name of the encryptionScope associated with the Cognitive Services Account
- properties Property Map
- Properties of Cognitive Services EncryptionScope.
- 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.Azure Native. Cognitive Services. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 | Pulumi.Azure Native. Cognitive Services. Key Source 
- Enumerates the possible value of keySource for Encryption
- KeyVault Pulumi.Properties Azure Native. Cognitive Services. Inputs. Key Vault Properties 
- Properties of KeyVault
- State
string | Pulumi.Azure Native. Cognitive Services. Encryption Scope State 
- The encryptionScope state.
- KeySource string | KeySource 
- Enumerates the possible value of keySource for Encryption
- KeyVault KeyProperties Vault Properties 
- Properties of KeyVault
- State
string | EncryptionScope State Enum 
- The encryptionScope state.
- keySource String | KeySource 
- Enumerates the possible value of keySource for Encryption
- keyVault KeyProperties Vault Properties 
- Properties of KeyVault
- state
String | EncryptionScope State 
- The encryptionScope state.
- keySource string | KeySource 
- Enumerates the possible value of keySource for Encryption
- keyVault KeyProperties Vault Properties 
- Properties of KeyVault
- state
string | EncryptionScope State 
- The encryptionScope state.
- key_source str | KeySource 
- Enumerates the possible value of keySource for Encryption
- key_vault_ Keyproperties Vault Properties 
- Properties of KeyVault
- state
str | EncryptionScope State 
- The encryptionScope state.
- keySource String | "Microsoft.Cognitive Services" | "Microsoft. Key Vault" 
- Enumerates the possible value of keySource for Encryption
- keyVault Property MapProperties 
- 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
- KeyVault Pulumi.Properties Azure Native. Cognitive Services. Inputs. Key Vault Properties Response 
- 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
- KeyVault KeyProperties Vault Properties Response 
- 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
- keyVault KeyProperties Vault Properties Response 
- 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
- keyVault KeyProperties Vault Properties Response 
- 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_ Keyproperties Vault Properties Response 
- 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
- keyVault Property MapProperties 
- Properties of KeyVault
- state String
- The encryptionScope state.
EncryptionScopeState, EncryptionScopeStateArgs      
- Disabled
- Disabled
- Enabled
- Enabled
- EncryptionScope State Disabled 
- Disabled
- EncryptionScope State Enabled 
- 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_Cognitive Services 
- Microsoft.CognitiveServices
- KeySource_Microsoft_Key Vault 
- 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.Cognitive Services" 
- Microsoft.CognitiveServices
- "Microsoft.Key Vault" 
- Microsoft.KeyVault
KeyVaultProperties, KeyVaultPropertiesArgs      
- IdentityClient stringId 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of the Key from KeyVault
- IdentityClient stringId 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of the Key from KeyVault
- identityClient StringId 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Version of the Key from KeyVault
- identityClient stringId 
- keyName string
- Name of the Key from KeyVault
- keyVault stringUri 
- Uri of KeyVault
- keyVersion string
- Version of the Key from KeyVault
- identity_client_ strid 
- key_name str
- Name of the Key from KeyVault
- key_vault_ struri 
- Uri of KeyVault
- key_version str
- Version of the Key from KeyVault
- identityClient StringId 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Version of the Key from KeyVault
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs        
- IdentityClient stringId 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of the Key from KeyVault
- IdentityClient stringId 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of the Key from KeyVault
- identityClient StringId 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Version of the Key from KeyVault
- identityClient stringId 
- keyName string
- Name of the Key from KeyVault
- keyVault stringUri 
- Uri of KeyVault
- keyVersion string
- Version of the Key from KeyVault
- identity_client_ strid 
- key_name str
- Name of the Key from KeyVault
- key_vault_ struri 
- Uri of KeyVault
- key_version str
- Version of the Key from KeyVault
- identityClient StringId 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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