1. Packages
  2. Azure Native
  3. API Docs
  4. confidentialledger
  5. ManagedCCF
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.40.0 published on Monday, May 6, 2024 by Pulumi

azure-native.confidentialledger.ManagedCCF

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.40.0 published on Monday, May 6, 2024 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.

    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} 
    

    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 string
    The unique name of the resource.
    args ManagedCCFArgs
    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 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 string
    The unique name of the resource.
    args ManagedCCFArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedCCFArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedCCFArgs
    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 managedCCFResource = new AzureNative.ConfidentialLedger.ManagedCCF("managedCCFResource", new()
    {
        ResourceGroupName = "string",
        AppName = "string",
        Location = "string",
        Properties = new AzureNative.ConfidentialLedger.Inputs.ManagedCCFPropertiesArgs
        {
            DeploymentType = new AzureNative.ConfidentialLedger.Inputs.DeploymentTypeArgs
            {
                AppSourceUri = "string",
                LanguageRuntime = "string",
            },
            MemberIdentityCertificates = new[]
            {
                new AzureNative.ConfidentialLedger.Inputs.MemberIdentityCertificateArgs
                {
                    Certificate = "string",
                    Encryptionkey = "string",
                    Tags = new[]
                    {
                        new AzureNative.ConfidentialLedger.Inputs.CertificateTagsArgs
                        {
                            Tags = 
                            {
                                { "string", "string" },
                            },
                        },
                    },
                },
            },
            NodeCount = 0,
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := confidentialledger.NewManagedCCF(ctx, "managedCCFResource", &confidentialledger.ManagedCCFArgs{
    ResourceGroupName: pulumi.String("string"),
    AppName: pulumi.String("string"),
    Location: pulumi.String("string"),
    Properties: &confidentialledger.ManagedCCFPropertiesArgs{
    DeploymentType: &confidentialledger.DeploymentTypeArgs{
    AppSourceUri: pulumi.String("string"),
    LanguageRuntime: pulumi.String("string"),
    },
    MemberIdentityCertificates: confidentialledger.MemberIdentityCertificateArray{
    &confidentialledger.MemberIdentityCertificateArgs{
    Certificate: pulumi.String("string"),
    Encryptionkey: pulumi.String("string"),
    Tags: confidentialledger.CertificateTagsArray{
    &confidentialledger.CertificateTagsArgs{
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    },
    },
    },
    },
    NodeCount: pulumi.Int(0),
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var managedCCFResource = new ManagedCCF("managedCCFResource", ManagedCCFArgs.builder()        
        .resourceGroupName("string")
        .appName("string")
        .location("string")
        .properties(ManagedCCFPropertiesArgs.builder()
            .deploymentType(DeploymentTypeArgs.builder()
                .appSourceUri("string")
                .languageRuntime("string")
                .build())
            .memberIdentityCertificates(MemberIdentityCertificateArgs.builder()
                .certificate("string")
                .encryptionkey("string")
                .tags(CertificateTagsArgs.builder()
                    .tags(Map.of("string", "string"))
                    .build())
                .build())
            .nodeCount(0)
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    managed_ccf_resource = azure_native.confidentialledger.ManagedCCF("managedCCFResource",
        resource_group_name="string",
        app_name="string",
        location="string",
        properties=azure_native.confidentialledger.ManagedCCFPropertiesArgs(
            deployment_type=azure_native.confidentialledger.DeploymentTypeArgs(
                app_source_uri="string",
                language_runtime="string",
            ),
            member_identity_certificates=[azure_native.confidentialledger.MemberIdentityCertificateArgs(
                certificate="string",
                encryptionkey="string",
                tags=[azure_native.confidentialledger.CertificateTagsArgs(
                    tags={
                        "string": "string",
                    },
                )],
            )],
            node_count=0,
        ),
        tags={
            "string": "string",
        })
    
    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",
        },
    });
    
    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
    

    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

    The ManagedCCF resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AppName string
    Name of the Managed CCF
    Location 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 string
    The name of the resource group. The name is case insensitive.
    AppName string
    Name of the Managed CCF
    Location string
    The geo-location where the resource lives
    Properties ManagedCCFPropertiesArgs
    Properties of Managed CCF Resource.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    appName String
    Name of the Managed CCF
    location String
    The geo-location where the resource lives
    properties ManagedCCFProperties
    Properties of Managed CCF Resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    appName string
    Name of the Managed CCF
    location string
    The geo-location where the resource lives
    properties ManagedCCFProperties
    Properties of Managed CCF Resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    app_name str
    Name of the Managed CCF
    location str
    The geo-location where the resource lives
    properties ManagedCCFPropertiesArgs
    Properties of Managed CCF Resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    appName String
    Name of the Managed CCF
    location 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 string
    Unique name for the Managed CCF.
    AppUri string
    Endpoint for calling Managed CCF Service.
    IdentityServiceUri string
    Endpoint for accessing network identity.
    ProvisioningState 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 string
    Unique name for the Managed CCF.
    AppUri string
    Endpoint for calling Managed CCF Service.
    IdentityServiceUri string
    Endpoint for accessing network identity.
    ProvisioningState 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 String
    Unique name for the Managed CCF.
    appUri String
    Endpoint for calling Managed CCF Service.
    identityServiceUri String
    Endpoint for accessing network identity.
    provisioningState 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 string
    Unique name for the Managed CCF.
    appUri string
    Endpoint for calling Managed CCF Service.
    identityServiceUri string
    Endpoint for accessing network identity.
    provisioningState 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 str
    Unique name for the Managed CCF.
    app_uri str
    Endpoint for calling Managed CCF Service.
    identity_service_uri str
    Endpoint for accessing network identity.
    provisioning_state 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 String
    Unique name for the Managed CCF.
    appUri String
    Endpoint for calling Managed CCF Service.
    identityServiceUri String
    Endpoint for accessing network identity.
    provisioningState 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 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.40.0 published on Monday, May 6, 2024 by Pulumi