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 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")
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.
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={
"keySource": "string",
"keyVaultProperties": {
"identityClientId": "string",
"keyName": "string",
"keyVaultUri": "string",
"keyVersion": "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:
- Account
Name string - The name of Cognitive Services account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
Scope 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.
- Account
Name string - The name of Cognitive Services account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
Scope stringName - The name of the encryptionScope associated with the Cognitive Services Account
- Properties
Encryption
Scope Properties Args - Properties of Cognitive Services EncryptionScope.
- map[string]string
- Resource tags.
- account
Name String - The name of Cognitive Services account.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption
Scope StringName - The name of the encryptionScope associated with the Cognitive Services Account
- properties
Encryption
Scope Properties - Properties of Cognitive Services EncryptionScope.
- Map<String,String>
- Resource tags.
- account
Name string - The name of Cognitive Services account.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- encryption
Scope stringName - The name of the encryptionScope associated with the Cognitive Services Account
- properties
Encryption
Scope 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
Encryption
Scope Properties Args - Properties of Cognitive Services EncryptionScope.
- Mapping[str, str]
- Resource tags.
- account
Name String - The name of Cognitive Services account.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption
Scope 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- Key
Source string | Pulumi.Azure Native. Cognitive Services. Key Source - Enumerates the possible value of keySource for Encryption
- Key
Vault 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.
- Key
Source string | KeySource - Enumerates the possible value of keySource for Encryption
- Key
Vault KeyProperties Vault Properties - Properties of KeyVault
- State
string | Encryption
Scope State Enum - The encryptionScope state.
- key
Source String | KeySource - Enumerates the possible value of keySource for Encryption
- key
Vault KeyProperties Vault Properties - Properties of KeyVault
- state
String | Encryption
Scope State - The encryptionScope state.
- key
Source string | KeySource - Enumerates the possible value of keySource for Encryption
- key
Vault KeyProperties Vault Properties - Properties of KeyVault
- state
string | Encryption
Scope 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 | Encryption
Scope State - The encryptionScope state.
- key
Source String | "Microsoft.Cognitive Services" | "Microsoft. Key Vault" - Enumerates the possible value of keySource for Encryption
- key
Vault Property MapProperties - Properties of KeyVault
- state String | "Disabled" | "Enabled"
- The encryptionScope state.
EncryptionScopePropertiesResponse, EncryptionScopePropertiesResponseArgs
- Provisioning
State string - Gets the status of the resource at the time the operation was called.
- Key
Source string - Enumerates the possible value of keySource for Encryption
- Key
Vault Pulumi.Properties Azure Native. Cognitive Services. Inputs. Key Vault Properties Response - Properties of KeyVault
- State string
- The encryptionScope state.
- Provisioning
State string - Gets the status of the resource at the time the operation was called.
- Key
Source string - Enumerates the possible value of keySource for Encryption
- Key
Vault KeyProperties Vault Properties Response - Properties of KeyVault
- State string
- The encryptionScope state.
- provisioning
State String - Gets the status of the resource at the time the operation was called.
- key
Source String - Enumerates the possible value of keySource for Encryption
- key
Vault KeyProperties Vault Properties Response - Properties of KeyVault
- state String
- The encryptionScope state.
- provisioning
State string - Gets the status of the resource at the time the operation was called.
- key
Source string - Enumerates the possible value of keySource for Encryption
- key
Vault 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.
- provisioning
State String - Gets the status of the resource at the time the operation was called.
- key
Source String - Enumerates the possible value of keySource for Encryption
- key
Vault Property MapProperties - Properties of KeyVault
- state String
- The encryptionScope state.
EncryptionScopeState, EncryptionScopeStateArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Encryption
Scope State Disabled - Disabled
- Encryption
Scope State Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
KeySource, KeySourceArgs
- Microsoft_Cognitive
Services - Microsoft.CognitiveServices
- Microsoft_Key
Vault - Microsoft.KeyVault
- Key
Source_Microsoft_Cognitive Services - Microsoft.CognitiveServices
- Key
Source_Microsoft_Key Vault - Microsoft.KeyVault
- Microsoft_Cognitive
Services - Microsoft.CognitiveServices
- Microsoft_Key
Vault - Microsoft.KeyVault
- Microsoft_Cognitive
Services - Microsoft.CognitiveServices
- Microsoft_Key
Vault - Microsoft.KeyVault
- MICROSOFT_COGNITIVE_SERVICES
- Microsoft.CognitiveServices
- MICROSOFT_KEY_VAULT
- Microsoft.KeyVault
- "Microsoft.
Cognitive Services" - Microsoft.CognitiveServices
- "Microsoft.
Key Vault" - Microsoft.KeyVault
KeyVaultProperties, KeyVaultPropertiesArgs
- Identity
Client stringId - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of the Key from KeyVault
- Identity
Client stringId - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of the Key from KeyVault
- identity
Client StringId - key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of the Key from KeyVault
- identity
Client stringId - key
Name string - Name of the Key from KeyVault
- key
Vault stringUri - Uri of KeyVault
- key
Version 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
- identity
Client StringId - key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of the Key from KeyVault
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Identity
Client stringId - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of the Key from KeyVault
- Identity
Client stringId - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of the Key from KeyVault
- identity
Client StringId - key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of the Key from KeyVault
- identity
Client stringId - key
Name string - Name of the Key from KeyVault
- key
Vault stringUri - Uri of KeyVault
- key
Version 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
- identity
Client StringId - key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of the Key from KeyVault
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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