1. Packages
  2. Azure Native v2
  3. API Docs
  4. confidentialledger
  5. ManagedCCF
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.confidentialledger.ManagedCCF

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Managed CCF. Contains the properties of Managed CCF Resource. Azure REST API version: 2023-01-26-preview.

Other available API versions: 2023-06-28-preview, 2024-07-09-preview, 2024-09-19-preview.

Import

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

$ pulumi import azure-native:confidentialledger:ManagedCCF DummyLedgerName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConfidentialLedger/managedCCFs/{appName} 
Copy

Create ManagedCCF Resource

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

Constructor syntax

new ManagedCCF(name: string, args: ManagedCCFArgs, opts?: CustomResourceOptions);
@overload
def ManagedCCF(resource_name: str,
               args: ManagedCCFArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def ManagedCCF(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_group_name: Optional[str] = None,
               app_name: Optional[str] = None,
               location: Optional[str] = None,
               properties: Optional[ManagedCCFPropertiesArgs] = None,
               tags: Optional[Mapping[str, str]] = None)
func NewManagedCCF(ctx *Context, name string, args ManagedCCFArgs, opts ...ResourceOption) (*ManagedCCF, error)
public ManagedCCF(string name, ManagedCCFArgs args, CustomResourceOptions? opts = null)
public ManagedCCF(String name, ManagedCCFArgs args)
public ManagedCCF(String name, ManagedCCFArgs args, CustomResourceOptions options)
type: azure-native:confidentialledger:ManagedCCF
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManagedCCFArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManagedCCFArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManagedCCFArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManagedCCFArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagedCCFArgs
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 managedCCFResource = new AzureNative.Confidentialledger.ManagedCCF("managedCCFResource", new()
{
    ResourceGroupName = "string",
    AppName = "string",
    Location = "string",
    Properties = 
    {
        { "deploymentType", 
        {
            { "appSourceUri", "string" },
            { "languageRuntime", "string" },
        } },
        { "memberIdentityCertificates", new[]
        {
            
            {
                { "certificate", "string" },
                { "encryptionkey", "string" },
                { "tags", new[]
                {
                    
                    {
                        { "tags", 
                        {
                            { "string", "string" },
                        } },
                    },
                } },
            },
        } },
        { "nodeCount", 0 },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := confidentialledger.NewManagedCCF(ctx, "managedCCFResource", &confidentialledger.ManagedCCFArgs{
	ResourceGroupName: "string",
	AppName:           "string",
	Location:          "string",
	Properties: map[string]interface{}{
		"deploymentType": map[string]interface{}{
			"appSourceUri":    "string",
			"languageRuntime": "string",
		},
		"memberIdentityCertificates": []map[string]interface{}{
			map[string]interface{}{
				"certificate":   "string",
				"encryptionkey": "string",
				"tags": []map[string]interface{}{
					map[string]interface{}{
						"tags": map[string]interface{}{
							"string": "string",
						},
					},
				},
			},
		},
		"nodeCount": 0,
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var managedCCFResource = new ManagedCCF("managedCCFResource", ManagedCCFArgs.builder()
    .resourceGroupName("string")
    .appName("string")
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
managed_ccf_resource = azure_native.confidentialledger.ManagedCCF("managedCCFResource",
    resource_group_name=string,
    app_name=string,
    location=string,
    properties={
        deploymentType: {
            appSourceUri: string,
            languageRuntime: string,
        },
        memberIdentityCertificates: [{
            certificate: string,
            encryptionkey: string,
            tags: [{
                tags: {
                    string: string,
                },
            }],
        }],
        nodeCount: 0,
    },
    tags={
        string: string,
    })
Copy
const managedCCFResource = new azure_native.confidentialledger.ManagedCCF("managedCCFResource", {
    resourceGroupName: "string",
    appName: "string",
    location: "string",
    properties: {
        deploymentType: {
            appSourceUri: "string",
            languageRuntime: "string",
        },
        memberIdentityCertificates: [{
            certificate: "string",
            encryptionkey: "string",
            tags: [{
                tags: {
                    string: "string",
                },
            }],
        }],
        nodeCount: 0,
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:confidentialledger:ManagedCCF
properties:
    appName: string
    location: string
    properties:
        deploymentType:
            appSourceUri: string
            languageRuntime: string
        memberIdentityCertificates:
            - certificate: string
              encryptionkey: string
              tags:
                - tags:
                    string: string
        nodeCount: 0
    resourceGroupName: string
    tags:
        string: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AppName Changes to this property will trigger replacement. string
Name of the Managed CCF
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.ConfidentialLedger.Inputs.ManagedCCFProperties
Properties of Managed CCF Resource.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AppName Changes to this property will trigger replacement. string
Name of the Managed CCF
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties ManagedCCFPropertiesArgs
Properties of Managed CCF Resource.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
appName Changes to this property will trigger replacement. String
Name of the Managed CCF
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties ManagedCCFProperties
Properties of Managed CCF Resource.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
appName Changes to this property will trigger replacement. string
Name of the Managed CCF
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties ManagedCCFProperties
Properties of Managed CCF Resource.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
app_name Changes to this property will trigger replacement. str
Name of the Managed CCF
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties ManagedCCFPropertiesArgs
Properties of Managed CCF Resource.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
appName Changes to this property will trigger replacement. String
Name of the Managed CCF
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map
Properties of Managed CCF Resource.
tags Map<String>
Resource tags.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.ConfidentialLedger.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

CertificateTags
, CertificateTagsArgs

Tags Dictionary<string, string>
Additional tags for Managed CCF Certificates
Tags map[string]string
Additional tags for Managed CCF Certificates
tags Map<String,String>
Additional tags for Managed CCF Certificates
tags {[key: string]: string}
Additional tags for Managed CCF Certificates
tags Mapping[str, str]
Additional tags for Managed CCF Certificates
tags Map<String>
Additional tags for Managed CCF Certificates

CertificateTagsResponse
, CertificateTagsResponseArgs

Tags Dictionary<string, string>
Additional tags for Managed CCF Certificates
Tags map[string]string
Additional tags for Managed CCF Certificates
tags Map<String,String>
Additional tags for Managed CCF Certificates
tags {[key: string]: string}
Additional tags for Managed CCF Certificates
tags Mapping[str, str]
Additional tags for Managed CCF Certificates
tags Map<String>
Additional tags for Managed CCF Certificates

DeploymentType
, DeploymentTypeArgs

AppSourceUri string
Source Uri containing ManagedCCF code
LanguageRuntime string | Pulumi.AzureNative.ConfidentialLedger.LanguageRuntime
Unique name for the Managed CCF.
AppSourceUri string
Source Uri containing ManagedCCF code
LanguageRuntime string | LanguageRuntime
Unique name for the Managed CCF.
appSourceUri String
Source Uri containing ManagedCCF code
languageRuntime String | LanguageRuntime
Unique name for the Managed CCF.
appSourceUri string
Source Uri containing ManagedCCF code
languageRuntime string | LanguageRuntime
Unique name for the Managed CCF.
app_source_uri str
Source Uri containing ManagedCCF code
language_runtime str | LanguageRuntime
Unique name for the Managed CCF.
appSourceUri String
Source Uri containing ManagedCCF code
languageRuntime String | "CPP" | "JS"
Unique name for the Managed CCF.

DeploymentTypeResponse
, DeploymentTypeResponseArgs

AppSourceUri string
Source Uri containing ManagedCCF code
LanguageRuntime string
Unique name for the Managed CCF.
AppSourceUri string
Source Uri containing ManagedCCF code
LanguageRuntime string
Unique name for the Managed CCF.
appSourceUri String
Source Uri containing ManagedCCF code
languageRuntime String
Unique name for the Managed CCF.
appSourceUri string
Source Uri containing ManagedCCF code
languageRuntime string
Unique name for the Managed CCF.
app_source_uri str
Source Uri containing ManagedCCF code
language_runtime str
Unique name for the Managed CCF.
appSourceUri String
Source Uri containing ManagedCCF code
languageRuntime String
Unique name for the Managed CCF.

LanguageRuntime
, LanguageRuntimeArgs

CPP
CPP
JS
JS
LanguageRuntimeCPP
CPP
LanguageRuntimeJS
JS
CPP
CPP
JS
JS
CPP
CPP
JS
JS
CPP
CPP
JS
JS
"CPP"
CPP
"JS"
JS

ManagedCCFProperties
, ManagedCCFPropertiesArgs

DeploymentType Pulumi.AzureNative.ConfidentialLedger.Inputs.DeploymentType
Deployment Type of Managed CCF
MemberIdentityCertificates List<Pulumi.AzureNative.ConfidentialLedger.Inputs.MemberIdentityCertificate>
List of member identity certificates for Managed CCF
NodeCount int
Number of CCF nodes in the Managed CCF.
DeploymentType DeploymentType
Deployment Type of Managed CCF
MemberIdentityCertificates []MemberIdentityCertificate
List of member identity certificates for Managed CCF
NodeCount int
Number of CCF nodes in the Managed CCF.
deploymentType DeploymentType
Deployment Type of Managed CCF
memberIdentityCertificates List<MemberIdentityCertificate>
List of member identity certificates for Managed CCF
nodeCount Integer
Number of CCF nodes in the Managed CCF.
deploymentType DeploymentType
Deployment Type of Managed CCF
memberIdentityCertificates MemberIdentityCertificate[]
List of member identity certificates for Managed CCF
nodeCount number
Number of CCF nodes in the Managed CCF.
deployment_type DeploymentType
Deployment Type of Managed CCF
member_identity_certificates Sequence[MemberIdentityCertificate]
List of member identity certificates for Managed CCF
node_count int
Number of CCF nodes in the Managed CCF.
deploymentType Property Map
Deployment Type of Managed CCF
memberIdentityCertificates List<Property Map>
List of member identity certificates for Managed CCF
nodeCount Number
Number of CCF nodes in the Managed CCF.

ManagedCCFPropertiesResponse
, ManagedCCFPropertiesResponseArgs

AppName This property is required. string
Unique name for the Managed CCF.
AppUri This property is required. string
Endpoint for calling Managed CCF Service.
IdentityServiceUri This property is required. string
Endpoint for accessing network identity.
ProvisioningState This property is required. string
Provisioning state of Ledger Resource
DeploymentType Pulumi.AzureNative.ConfidentialLedger.Inputs.DeploymentTypeResponse
Deployment Type of Managed CCF
MemberIdentityCertificates List<Pulumi.AzureNative.ConfidentialLedger.Inputs.MemberIdentityCertificateResponse>
List of member identity certificates for Managed CCF
NodeCount int
Number of CCF nodes in the Managed CCF.
AppName This property is required. string
Unique name for the Managed CCF.
AppUri This property is required. string
Endpoint for calling Managed CCF Service.
IdentityServiceUri This property is required. string
Endpoint for accessing network identity.
ProvisioningState This property is required. string
Provisioning state of Ledger Resource
DeploymentType DeploymentTypeResponse
Deployment Type of Managed CCF
MemberIdentityCertificates []MemberIdentityCertificateResponse
List of member identity certificates for Managed CCF
NodeCount int
Number of CCF nodes in the Managed CCF.
appName This property is required. String
Unique name for the Managed CCF.
appUri This property is required. String
Endpoint for calling Managed CCF Service.
identityServiceUri This property is required. String
Endpoint for accessing network identity.
provisioningState This property is required. String
Provisioning state of Ledger Resource
deploymentType DeploymentTypeResponse
Deployment Type of Managed CCF
memberIdentityCertificates List<MemberIdentityCertificateResponse>
List of member identity certificates for Managed CCF
nodeCount Integer
Number of CCF nodes in the Managed CCF.
appName This property is required. string
Unique name for the Managed CCF.
appUri This property is required. string
Endpoint for calling Managed CCF Service.
identityServiceUri This property is required. string
Endpoint for accessing network identity.
provisioningState This property is required. string
Provisioning state of Ledger Resource
deploymentType DeploymentTypeResponse
Deployment Type of Managed CCF
memberIdentityCertificates MemberIdentityCertificateResponse[]
List of member identity certificates for Managed CCF
nodeCount number
Number of CCF nodes in the Managed CCF.
app_name This property is required. str
Unique name for the Managed CCF.
app_uri This property is required. str
Endpoint for calling Managed CCF Service.
identity_service_uri This property is required. str
Endpoint for accessing network identity.
provisioning_state This property is required. str
Provisioning state of Ledger Resource
deployment_type DeploymentTypeResponse
Deployment Type of Managed CCF
member_identity_certificates Sequence[MemberIdentityCertificateResponse]
List of member identity certificates for Managed CCF
node_count int
Number of CCF nodes in the Managed CCF.
appName This property is required. String
Unique name for the Managed CCF.
appUri This property is required. String
Endpoint for calling Managed CCF Service.
identityServiceUri This property is required. String
Endpoint for accessing network identity.
provisioningState This property is required. String
Provisioning state of Ledger Resource
deploymentType Property Map
Deployment Type of Managed CCF
memberIdentityCertificates List<Property Map>
List of member identity certificates for Managed CCF
nodeCount Number
Number of CCF nodes in the Managed CCF.

MemberIdentityCertificate
, MemberIdentityCertificateArgs

Certificate string
Member Identity Certificate
Encryptionkey string
Member Identity Certificate Encryption Key
Tags List<Pulumi.AzureNative.ConfidentialLedger.Inputs.CertificateTags>
Certificate string
Member Identity Certificate
Encryptionkey string
Member Identity Certificate Encryption Key
Tags []CertificateTags
certificate String
Member Identity Certificate
encryptionkey String
Member Identity Certificate Encryption Key
tags List<CertificateTags>
certificate string
Member Identity Certificate
encryptionkey string
Member Identity Certificate Encryption Key
tags CertificateTags[]
certificate str
Member Identity Certificate
encryptionkey str
Member Identity Certificate Encryption Key
tags Sequence[CertificateTags]
certificate String
Member Identity Certificate
encryptionkey String
Member Identity Certificate Encryption Key
tags List<Property Map>

MemberIdentityCertificateResponse
, MemberIdentityCertificateResponseArgs

Certificate string
Member Identity Certificate
Encryptionkey string
Member Identity Certificate Encryption Key
Tags List<Pulumi.AzureNative.ConfidentialLedger.Inputs.CertificateTagsResponse>
Certificate string
Member Identity Certificate
Encryptionkey string
Member Identity Certificate Encryption Key
Tags []CertificateTagsResponse
certificate String
Member Identity Certificate
encryptionkey String
Member Identity Certificate Encryption Key
tags List<CertificateTagsResponse>
certificate string
Member Identity Certificate
encryptionkey string
Member Identity Certificate Encryption Key
tags CertificateTagsResponse[]
certificate str
Member Identity Certificate
encryptionkey str
Member Identity Certificate Encryption Key
tags Sequence[CertificateTagsResponse]
certificate String
Member Identity Certificate
encryptionkey String
Member Identity Certificate Encryption Key
tags List<Property Map>

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.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi