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.
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=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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Name 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Name string - Name of the Managed CCF
- Location string
- The geo-location where the resource lives
- Properties
Managed
CCFProperties Args - Properties of Managed CCF Resource.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Name String - Name of the Managed CCF
- location String
- The geo-location where the resource lives
- properties
Managed
CCFProperties - Properties of Managed CCF Resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- app
Name string - Name of the Managed CCF
- location string
- The geo-location where the resource lives
- properties
Managed
CCFProperties - 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
Managed
CCFProperties Args - Properties of Managed CCF Resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Name 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- App
Source stringUri - Source Uri containing ManagedCCF code
- Language
Runtime string | Pulumi.Azure Native. Confidential Ledger. Language Runtime - Unique name for the Managed CCF.
- App
Source stringUri - Source Uri containing ManagedCCF code
- Language
Runtime string | LanguageRuntime - Unique name for the Managed CCF.
- app
Source StringUri - Source Uri containing ManagedCCF code
- language
Runtime String | LanguageRuntime - Unique name for the Managed CCF.
- app
Source stringUri - Source Uri containing ManagedCCF code
- language
Runtime 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.
- app
Source StringUri - Source Uri containing ManagedCCF code
- language
Runtime String | "CPP" | "JS" - Unique name for the Managed CCF.
DeploymentTypeResponse, DeploymentTypeResponseArgs
- App
Source stringUri - Source Uri containing ManagedCCF code
- Language
Runtime string - Unique name for the Managed CCF.
- App
Source stringUri - Source Uri containing ManagedCCF code
- Language
Runtime string - Unique name for the Managed CCF.
- app
Source StringUri - Source Uri containing ManagedCCF code
- language
Runtime String - Unique name for the Managed CCF.
- app
Source stringUri - Source Uri containing ManagedCCF code
- language
Runtime string - Unique name for the Managed CCF.
- app_
source_ struri - Source Uri containing ManagedCCF code
- language_
runtime str - Unique name for the Managed CCF.
- app
Source StringUri - Source Uri containing ManagedCCF code
- language
Runtime String - Unique name for the Managed CCF.
LanguageRuntime, LanguageRuntimeArgs
- CPP
- CPP
- JS
- JS
- Language
Runtime CPP - CPP
- Language
Runtime JS - JS
- CPP
- CPP
- JS
- JS
- CPP
- CPP
- JS
- JS
- CPP
- CPP
- JS
- JS
- "CPP"
- CPP
- "JS"
- JS
ManagedCCFProperties, ManagedCCFPropertiesArgs
- Deployment
Type Pulumi.Azure Native. Confidential Ledger. Inputs. Deployment Type - Deployment Type of Managed CCF
- Member
Identity List<Pulumi.Certificates Azure Native. Confidential Ledger. Inputs. Member Identity Certificate> - List of member identity certificates for Managed CCF
- Node
Count int - Number of CCF nodes in the Managed CCF.
- Deployment
Type DeploymentType - Deployment Type of Managed CCF
- Member
Identity []MemberCertificates Identity Certificate - List of member identity certificates for Managed CCF
- Node
Count int - Number of CCF nodes in the Managed CCF.
- deployment
Type DeploymentType - Deployment Type of Managed CCF
- member
Identity List<MemberCertificates Identity Certificate> - List of member identity certificates for Managed CCF
- node
Count Integer - Number of CCF nodes in the Managed CCF.
- deployment
Type DeploymentType - Deployment Type of Managed CCF
- member
Identity MemberCertificates Identity Certificate[] - List of member identity certificates for Managed CCF
- node
Count 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.
- deployment
Type Property Map - Deployment Type of Managed CCF
- member
Identity List<Property Map>Certificates - List of member identity certificates for Managed CCF
- node
Count Number - Number of CCF nodes in the Managed CCF.
ManagedCCFPropertiesResponse, ManagedCCFPropertiesResponseArgs
- App
Name string - Unique name for the Managed CCF.
- App
Uri string - Endpoint for calling Managed CCF Service.
- Identity
Service stringUri - Endpoint for accessing network identity.
- Provisioning
State string - Provisioning state of Ledger Resource
- Deployment
Type Pulumi.Azure Native. Confidential Ledger. Inputs. Deployment Type Response - Deployment Type of Managed CCF
- Member
Identity List<Pulumi.Certificates Azure Native. Confidential Ledger. Inputs. Member Identity Certificate Response> - List of member identity certificates for Managed CCF
- Node
Count int - Number of CCF nodes in the Managed CCF.
- App
Name string - Unique name for the Managed CCF.
- App
Uri string - Endpoint for calling Managed CCF Service.
- Identity
Service stringUri - Endpoint for accessing network identity.
- Provisioning
State string - Provisioning state of Ledger Resource
- Deployment
Type DeploymentType Response - Deployment Type of Managed CCF
- Member
Identity []MemberCertificates Identity Certificate Response - List of member identity certificates for Managed CCF
- Node
Count int - Number of CCF nodes in the Managed CCF.
- app
Name String - Unique name for the Managed CCF.
- app
Uri String - Endpoint for calling Managed CCF Service.
- identity
Service StringUri - Endpoint for accessing network identity.
- provisioning
State String - Provisioning state of Ledger Resource
- deployment
Type DeploymentType Response - Deployment Type of Managed CCF
- member
Identity List<MemberCertificates Identity Certificate Response> - List of member identity certificates for Managed CCF
- node
Count Integer - Number of CCF nodes in the Managed CCF.
- app
Name string - Unique name for the Managed CCF.
- app
Uri string - Endpoint for calling Managed CCF Service.
- identity
Service stringUri - Endpoint for accessing network identity.
- provisioning
State string - Provisioning state of Ledger Resource
- deployment
Type DeploymentType Response - Deployment Type of Managed CCF
- member
Identity MemberCertificates Identity Certificate Response[] - List of member identity certificates for Managed CCF
- node
Count 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.
- app
Name String - Unique name for the Managed CCF.
- app
Uri String - Endpoint for calling Managed CCF Service.
- identity
Service StringUri - Endpoint for accessing network identity.
- provisioning
State String - Provisioning state of Ledger Resource
- deployment
Type Property Map - Deployment Type of Managed CCF
- member
Identity List<Property Map>Certificates - List of member identity certificates for Managed CCF
- node
Count 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
- []Certificate
Tags
- certificate String
- Member Identity Certificate
- encryptionkey String
- Member Identity Certificate Encryption Key
- List<Certificate
Tags>
- certificate string
- Member Identity Certificate
- encryptionkey string
- Member Identity Certificate Encryption Key
- Certificate
Tags[]
- certificate str
- Member Identity Certificate
- encryptionkey str
- Member Identity Certificate Encryption Key
- Sequence[Certificate
Tags]
- 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
- []Certificate
Tags Response
- certificate String
- Member Identity Certificate
- encryptionkey String
- Member Identity Certificate Encryption Key
- List<Certificate
Tags Response>
- certificate string
- Member Identity Certificate
- encryptionkey string
- Member Identity Certificate Encryption Key
- Certificate
Tags Response[]
- certificate str
- Member Identity Certificate
- encryptionkey str
- Member Identity Certificate Encryption Key
- Sequence[Certificate
Tags Response]
- certificate String
- Member Identity Certificate
- encryptionkey String
- Member Identity Certificate Encryption Key
- List<Property Map>
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.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0