azure-native.confidentialledger.ManagedCCF
Explore with Pulumi AI
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} 
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.
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 = 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={
        "deployment_type": {
            "app_source_uri": "string",
            "language_runtime": "string",
        },
        "member_identity_certificates": [{
            "certificate": "string",
            "encryptionkey": "string",
            "tags": [{
                "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
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:
- ResourceGroup stringName 
- 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.Azure Native. Confidential Ledger. Inputs. Managed CCFProperties 
- Properties of Managed CCF Resource.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- 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 Args 
- Properties of Managed CCF Resource.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- 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.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- 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.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- 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
ManagedCCFProperties Args 
- Properties of Managed CCF Resource.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- 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.
- 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.Azure Native. Confidential Ledger. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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    
- Dictionary<string, string>
- Additional tags for Managed CCF Certificates
- map[string]string
- Additional tags for Managed CCF Certificates
- Map<String,String>
- Additional tags for Managed CCF Certificates
- {[key: string]: string}
- Additional tags for Managed CCF Certificates
- Mapping[str, str]
- Additional tags for Managed CCF Certificates
- Map<String>
- Additional tags for Managed CCF Certificates
CertificateTagsResponse, CertificateTagsResponseArgs      
- Dictionary<string, string>
- Additional tags for Managed CCF Certificates
- map[string]string
- Additional tags for Managed CCF Certificates
- Map<String,String>
- Additional tags for Managed CCF Certificates
- {[key: string]: string}
- Additional tags for Managed CCF Certificates
- Mapping[str, str]
- Additional tags for Managed CCF Certificates
- Map<String>
- Additional tags for Managed CCF Certificates
DeploymentType, DeploymentTypeArgs    
- AppSource stringUri 
- Source Uri containing ManagedCCF code
- LanguageRuntime string | Pulumi.Azure Native. Confidential Ledger. Language Runtime 
- Unique name for the Managed CCF.
- AppSource stringUri 
- Source Uri containing ManagedCCF code
- LanguageRuntime string | LanguageRuntime 
- Unique name for the Managed CCF.
- appSource StringUri 
- Source Uri containing ManagedCCF code
- languageRuntime String | LanguageRuntime 
- Unique name for the Managed CCF.
- appSource stringUri 
- Source Uri containing ManagedCCF code
- languageRuntime string | LanguageRuntime 
- Unique name for the Managed CCF.
- app_source_ struri 
- Source Uri containing ManagedCCF code
- language_runtime str | LanguageRuntime 
- Unique name for the Managed CCF.
- appSource StringUri 
- Source Uri containing ManagedCCF code
- languageRuntime String | "CPP" | "JS"
- Unique name for the Managed CCF.
DeploymentTypeResponse, DeploymentTypeResponseArgs      
- AppSource stringUri 
- Source Uri containing ManagedCCF code
- LanguageRuntime string
- Unique name for the Managed CCF.
- AppSource stringUri 
- Source Uri containing ManagedCCF code
- LanguageRuntime string
- Unique name for the Managed CCF.
- appSource StringUri 
- Source Uri containing ManagedCCF code
- languageRuntime String
- Unique name for the Managed CCF.
- appSource stringUri 
- Source Uri containing ManagedCCF code
- languageRuntime string
- Unique name for the Managed CCF.
- app_source_ struri 
- Source Uri containing ManagedCCF code
- language_runtime str
- Unique name for the Managed CCF.
- appSource StringUri 
- Source Uri containing ManagedCCF code
- languageRuntime String
- Unique name for the Managed CCF.
LanguageRuntime, LanguageRuntimeArgs    
- CPP
- CPP
- JS
- JS
- LanguageRuntime CPP 
- CPP
- LanguageRuntime JS 
- JS
- CPP
- CPP
- JS
- JS
- CPP
- CPP
- JS
- JS
- CPP
- CPP
- JS
- JS
- "CPP"
- CPP
- "JS"
- JS
ManagedCCFProperties, ManagedCCFPropertiesArgs    
- DeploymentType Pulumi.Azure Native. Confidential Ledger. Inputs. Deployment Type 
- Deployment Type of Managed CCF
- MemberIdentity List<Pulumi.Certificates Azure Native. Confidential Ledger. Inputs. Member Identity Certificate> 
- 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
- MemberIdentity []MemberCertificates Identity Certificate 
- 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
- memberIdentity List<MemberCertificates Identity Certificate> 
- 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
- memberIdentity MemberCertificates Identity Certificate[] 
- 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_ Sequence[Membercertificates Identity Certificate] 
- 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
- memberIdentity List<Property Map>Certificates 
- 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.
- IdentityService stringUri 
- Endpoint for accessing network identity.
- ProvisioningState string
- Provisioning state of Ledger Resource
- DeploymentType Pulumi.Azure Native. Confidential Ledger. Inputs. Deployment Type Response 
- Deployment Type of Managed CCF
- MemberIdentity List<Pulumi.Certificates Azure Native. Confidential Ledger. Inputs. Member Identity Certificate Response> 
- 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.
- IdentityService stringUri 
- Endpoint for accessing network identity.
- ProvisioningState string
- Provisioning state of Ledger Resource
- DeploymentType DeploymentType Response 
- Deployment Type of Managed CCF
- MemberIdentity []MemberCertificates Identity Certificate Response 
- 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.
- identityService StringUri 
- Endpoint for accessing network identity.
- provisioningState String
- Provisioning state of Ledger Resource
- deploymentType DeploymentType Response 
- Deployment Type of Managed CCF
- memberIdentity List<MemberCertificates Identity Certificate Response> 
- 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.
- identityService stringUri 
- Endpoint for accessing network identity.
- provisioningState string
- Provisioning state of Ledger Resource
- deploymentType DeploymentType Response 
- Deployment Type of Managed CCF
- memberIdentity MemberCertificates Identity Certificate Response[] 
- 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_ struri 
- Endpoint for accessing network identity.
- provisioning_state str
- Provisioning state of Ledger Resource
- deployment_type DeploymentType Response 
- Deployment Type of Managed CCF
- member_identity_ Sequence[Membercertificates Identity Certificate Response] 
- 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.
- identityService StringUri 
- Endpoint for accessing network identity.
- provisioningState String
- Provisioning state of Ledger Resource
- deploymentType Property Map
- Deployment Type of Managed CCF
- memberIdentity List<Property Map>Certificates 
- 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
- 
List<Pulumi.Azure Native. Confidential Ledger. Inputs. Certificate Tags> 
- Certificate string
- Member Identity Certificate
- Encryptionkey string
- Member Identity Certificate Encryption Key
- 
[]CertificateTags 
- certificate String
- Member Identity Certificate
- encryptionkey String
- Member Identity Certificate Encryption Key
- 
List<CertificateTags> 
- certificate string
- Member Identity Certificate
- encryptionkey string
- Member Identity Certificate Encryption Key
- 
CertificateTags[] 
- certificate str
- Member Identity Certificate
- encryptionkey str
- Member Identity Certificate Encryption Key
- 
Sequence[CertificateTags] 
- certificate String
- Member Identity Certificate
- encryptionkey String
- Member Identity Certificate Encryption Key
- List<Property Map>
MemberIdentityCertificateResponse, MemberIdentityCertificateResponseArgs        
- Certificate string
- Member Identity Certificate
- Encryptionkey string
- Member Identity Certificate Encryption Key
- 
List<Pulumi.Azure Native. Confidential Ledger. Inputs. Certificate Tags Response> 
- Certificate string
- Member Identity Certificate
- Encryptionkey string
- Member Identity Certificate Encryption Key
- 
[]CertificateTags Response 
- certificate String
- Member Identity Certificate
- encryptionkey String
- Member Identity Certificate Encryption Key
- 
List<CertificateTags Response> 
- certificate string
- Member Identity Certificate
- encryptionkey string
- Member Identity Certificate Encryption Key
- 
CertificateTags Response[] 
- certificate str
- Member Identity Certificate
- encryptionkey str
- Member Identity Certificate Encryption Key
- 
Sequence[CertificateTags Response] 
- certificate String
- Member Identity Certificate
- encryptionkey String
- Member Identity Certificate Encryption Key
- List<Property Map>
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.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0