Share via


Microsoft.ConfidentialLedger managedCCFs 2022-09-08-preview

Bicep resource definition

The managedCCFs resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.ConfidentialLedger/managedCCFs resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.ConfidentialLedger/managedCCFs@2022-09-08-preview' = {
  location: 'string'
  name: 'string'
  properties: {
    deploymentType: {
      appSourceUri: 'string'
      languageRuntime: 'string'
    }
    memberIdentityCertificates: [
      {
        certificate: 'string'
        encryptionkey: 'string'
        tags: any(...)
      }
    ]
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.ConfidentialLedger/managedCCFs

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9] (required)
properties Properties of Managed CCF Resource. ManagedCCFProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates

DeploymentType

Name Description Value
appSourceUri Source Uri containing ManagedCCF code string
languageRuntime Unique name for the Managed CCF. 'CPP'
'JS'

ManagedCCFProperties

Name Description Value
deploymentType Deployment Type of Managed CCF DeploymentType
memberIdentityCertificates List of member identity certificates for Managed CCF MemberIdentityCertificate[]

MemberIdentityCertificate

Name Description Value
certificate Member Identity Certificate string
encryptionkey Member Identity Certificate Encryption Key string
tags Anything any

TrackedResourceTags

Name Description Value

ARM template resource definition

The managedCCFs resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.ConfidentialLedger/managedCCFs resource, add the following JSON to your template.

{
  "type": "Microsoft.ConfidentialLedger/managedCCFs",
  "apiVersion": "2022-09-08-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "deploymentType": {
      "appSourceUri": "string",
      "languageRuntime": "string"
    },
    "memberIdentityCertificates": [
      {
        "certificate": "string",
        "encryptionkey": "string",
        "tags": {}
      }
    ]
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.ConfidentialLedger/managedCCFs

Name Description Value
apiVersion The api version '2022-09-08-preview'
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9] (required)
properties Properties of Managed CCF Resource. ManagedCCFProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.ConfidentialLedger/managedCCFs'

DeploymentType

Name Description Value
appSourceUri Source Uri containing ManagedCCF code string
languageRuntime Unique name for the Managed CCF. 'CPP'
'JS'

ManagedCCFProperties

Name Description Value
deploymentType Deployment Type of Managed CCF DeploymentType
memberIdentityCertificates List of member identity certificates for Managed CCF MemberIdentityCertificate[]

MemberIdentityCertificate

Name Description Value
certificate Member Identity Certificate string
encryptionkey Member Identity Certificate Encryption Key string
tags Anything any

TrackedResourceTags

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

The managedCCFs resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.ConfidentialLedger/managedCCFs resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.ConfidentialLedger/managedCCFs@2022-09-08-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      deploymentType = {
        appSourceUri = "string"
        languageRuntime = "string"
      }
      memberIdentityCertificates = [
        {
          certificate = "string"
          encryptionkey = "string"
          tags = ?
        }
      ]
    }
  }
}

Property Values

Microsoft.ConfidentialLedger/managedCCFs

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9] (required)
properties Properties of Managed CCF Resource. ManagedCCFProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.ConfidentialLedger/managedCCFs@2022-09-08-preview"

DeploymentType

Name Description Value
appSourceUri Source Uri containing ManagedCCF code string
languageRuntime Unique name for the Managed CCF. 'CPP'
'JS'

ManagedCCFProperties

Name Description Value
deploymentType Deployment Type of Managed CCF DeploymentType
memberIdentityCertificates List of member identity certificates for Managed CCF MemberIdentityCertificate[]

MemberIdentityCertificate

Name Description Value
certificate Member Identity Certificate string
encryptionkey Member Identity Certificate Encryption Key string
tags Anything any

TrackedResourceTags

Name Description Value