azure-native.automation.Certificate
Explore with Pulumi AI
Definition of the certificate. Azure REST API version: 2022-08-08. Prior API version in Azure Native 1.x: 2019-06-01.
Other available API versions: 2023-05-15-preview, 2023-11-01.
Example Usage
Create or update a certificate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var certificate = new AzureNative.Automation.Certificate("certificate", new()
{
AutomationAccountName = "myAutomationAccount18",
Base64Value = "base 64 value of cert",
CertificateName = "testCert",
Description = "Sample Cert",
IsExportable = false,
Name = "testCert",
ResourceGroupName = "rg",
Thumbprint = "thumbprint of cert",
});
});
package main
import (
automation "github.com/pulumi/pulumi-azure-native-sdk/automation/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := automation.NewCertificate(ctx, "certificate", &automation.CertificateArgs{
AutomationAccountName: pulumi.String("myAutomationAccount18"),
Base64Value: pulumi.String("base 64 value of cert"),
CertificateName: pulumi.String("testCert"),
Description: pulumi.String("Sample Cert"),
IsExportable: pulumi.Bool(false),
Name: pulumi.String("testCert"),
ResourceGroupName: pulumi.String("rg"),
Thumbprint: pulumi.String("thumbprint of cert"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.automation.Certificate;
import com.pulumi.azurenative.automation.CertificateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var certificate = new Certificate("certificate", CertificateArgs.builder()
.automationAccountName("myAutomationAccount18")
.base64Value("base 64 value of cert")
.certificateName("testCert")
.description("Sample Cert")
.isExportable(false)
.name("testCert")
.resourceGroupName("rg")
.thumbprint("thumbprint of cert")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
certificate = azure_native.automation.Certificate("certificate",
automation_account_name="myAutomationAccount18",
base64_value="base 64 value of cert",
certificate_name="testCert",
description="Sample Cert",
is_exportable=False,
name="testCert",
resource_group_name="rg",
thumbprint="thumbprint of cert")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const certificate = new azure_native.automation.Certificate("certificate", {
automationAccountName: "myAutomationAccount18",
base64Value: "base 64 value of cert",
certificateName: "testCert",
description: "Sample Cert",
isExportable: false,
name: "testCert",
resourceGroupName: "rg",
thumbprint: "thumbprint of cert",
});
resources:
certificate:
type: azure-native:automation:Certificate
properties:
automationAccountName: myAutomationAccount18
base64Value: base 64 value of cert
certificateName: testCert
description: Sample Cert
isExportable: false
name: testCert
resourceGroupName: rg
thumbprint: thumbprint of cert
Create Certificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Certificate(name: string, args: CertificateArgs, opts?: CustomResourceOptions);
@overload
def Certificate(resource_name: str,
args: CertificateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Certificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
automation_account_name: Optional[str] = None,
base64_value: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
certificate_name: Optional[str] = None,
description: Optional[str] = None,
is_exportable: Optional[bool] = None,
thumbprint: Optional[str] = None)
func NewCertificate(ctx *Context, name string, args CertificateArgs, opts ...ResourceOption) (*Certificate, error)
public Certificate(string name, CertificateArgs args, CustomResourceOptions? opts = null)
public Certificate(String name, CertificateArgs args)
public Certificate(String name, CertificateArgs args, CustomResourceOptions options)
type: azure-native:automation:Certificate
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 CertificateArgs
- 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 CertificateArgs
- 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 CertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CertificateArgs
- 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 examplecertificateResourceResourceFromAutomation = new AzureNative.Automation.Certificate("examplecertificateResourceResourceFromAutomation", new()
{
AutomationAccountName = "string",
Base64Value = "string",
Name = "string",
ResourceGroupName = "string",
CertificateName = "string",
Description = "string",
IsExportable = false,
Thumbprint = "string",
});
example, err := automation.NewCertificate(ctx, "examplecertificateResourceResourceFromAutomation", &automation.CertificateArgs{
AutomationAccountName: pulumi.String("string"),
Base64Value: pulumi.String("string"),
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
CertificateName: pulumi.String("string"),
Description: pulumi.String("string"),
IsExportable: pulumi.Bool(false),
Thumbprint: pulumi.String("string"),
})
var examplecertificateResourceResourceFromAutomation = new Certificate("examplecertificateResourceResourceFromAutomation", CertificateArgs.builder()
.automationAccountName("string")
.base64Value("string")
.name("string")
.resourceGroupName("string")
.certificateName("string")
.description("string")
.isExportable(false)
.thumbprint("string")
.build());
examplecertificate_resource_resource_from_automation = azure_native.automation.Certificate("examplecertificateResourceResourceFromAutomation",
automation_account_name="string",
base64_value="string",
name="string",
resource_group_name="string",
certificate_name="string",
description="string",
is_exportable=False,
thumbprint="string")
const examplecertificateResourceResourceFromAutomation = new azure_native.automation.Certificate("examplecertificateResourceResourceFromAutomation", {
automationAccountName: "string",
base64Value: "string",
name: "string",
resourceGroupName: "string",
certificateName: "string",
description: "string",
isExportable: false,
thumbprint: "string",
});
type: azure-native:automation:Certificate
properties:
automationAccountName: string
base64Value: string
certificateName: string
description: string
isExportable: false
name: string
resourceGroupName: string
thumbprint: string
Certificate 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 Certificate resource accepts the following input properties:
- Automation
Account stringName - The name of the automation account.
- Base64Value string
- Gets or sets the base64 encoded value of the certificate.
- Name string
- Gets or sets the name of the certificate.
- Resource
Group stringName - Name of an Azure Resource group.
- Certificate
Name string - The parameters supplied to the create or update certificate operation.
- Description string
- Gets or sets the description of the certificate.
- Is
Exportable bool - Gets or sets the is exportable flag of the certificate.
- Thumbprint string
- Gets or sets the thumbprint of the certificate.
- Automation
Account stringName - The name of the automation account.
- Base64Value string
- Gets or sets the base64 encoded value of the certificate.
- Name string
- Gets or sets the name of the certificate.
- Resource
Group stringName - Name of an Azure Resource group.
- Certificate
Name string - The parameters supplied to the create or update certificate operation.
- Description string
- Gets or sets the description of the certificate.
- Is
Exportable bool - Gets or sets the is exportable flag of the certificate.
- Thumbprint string
- Gets or sets the thumbprint of the certificate.
- automation
Account StringName - The name of the automation account.
- base64Value String
- Gets or sets the base64 encoded value of the certificate.
- name String
- Gets or sets the name of the certificate.
- resource
Group StringName - Name of an Azure Resource group.
- certificate
Name String - The parameters supplied to the create or update certificate operation.
- description String
- Gets or sets the description of the certificate.
- is
Exportable Boolean - Gets or sets the is exportable flag of the certificate.
- thumbprint String
- Gets or sets the thumbprint of the certificate.
- automation
Account stringName - The name of the automation account.
- base64Value string
- Gets or sets the base64 encoded value of the certificate.
- name string
- Gets or sets the name of the certificate.
- resource
Group stringName - Name of an Azure Resource group.
- certificate
Name string - The parameters supplied to the create or update certificate operation.
- description string
- Gets or sets the description of the certificate.
- is
Exportable boolean - Gets or sets the is exportable flag of the certificate.
- thumbprint string
- Gets or sets the thumbprint of the certificate.
- automation_
account_ strname - The name of the automation account.
- base64_
value str - Gets or sets the base64 encoded value of the certificate.
- name str
- Gets or sets the name of the certificate.
- resource_
group_ strname - Name of an Azure Resource group.
- certificate_
name str - The parameters supplied to the create or update certificate operation.
- description str
- Gets or sets the description of the certificate.
- is_
exportable bool - Gets or sets the is exportable flag of the certificate.
- thumbprint str
- Gets or sets the thumbprint of the certificate.
- automation
Account StringName - The name of the automation account.
- base64Value String
- Gets or sets the base64 encoded value of the certificate.
- name String
- Gets or sets the name of the certificate.
- resource
Group StringName - Name of an Azure Resource group.
- certificate
Name String - The parameters supplied to the create or update certificate operation.
- description String
- Gets or sets the description of the certificate.
- is
Exportable Boolean - Gets or sets the is exportable flag of the certificate.
- thumbprint String
- Gets or sets the thumbprint of the certificate.
Outputs
All input properties are implicitly available as output properties. Additionally, the Certificate resource produces the following output properties:
- Creation
Time string - Gets the creation time.
- Expiry
Time string - Gets the expiry time of the certificate.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime - Gets the last modified time.
- Type string
- The type of the resource.
- Creation
Time string - Gets the creation time.
- Expiry
Time string - Gets the expiry time of the certificate.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime - Gets the last modified time.
- Type string
- The type of the resource.
- creation
Time String - Gets the creation time.
- expiry
Time String - Gets the expiry time of the certificate.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime - Gets the last modified time.
- type String
- The type of the resource.
- creation
Time string - Gets the creation time.
- expiry
Time string - Gets the expiry time of the certificate.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringTime - Gets the last modified time.
- type string
- The type of the resource.
- creation_
time str - Gets the creation time.
- expiry_
time str - Gets the expiry time of the certificate.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strtime - Gets the last modified time.
- type str
- The type of the resource.
- creation
Time String - Gets the creation time.
- expiry
Time String - Gets the expiry time of the certificate.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime - Gets the last modified time.
- type String
- The type of the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:automation:Certificate testCert /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/certificates/{certificateName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0