azure-native.batch.Certificate
Explore with Pulumi AI
Contains information about a certificate. API Version: 2021-01-01.
Example Usage
CreateCertificate - Full
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var certificate = new AzureNative.Batch.Certificate("certificate", new()
{
AccountName = "sampleacct",
CertificateName = "sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
Data = "MIIJsgIBAzCCCW4GCSqGSIb3DQE...",
Format = AzureNative.Batch.CertificateFormat.Pfx,
Password = "<ExamplePassword>",
ResourceGroupName = "default-azurebatch-japaneast",
Thumbprint = "0a0e4f50d51beadeac1d35afc5116098e7902e6e",
ThumbprintAlgorithm = "sha1",
});
});
package main
import (
batch "github.com/pulumi/pulumi-azure-native-sdk/batch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := batch.NewCertificate(ctx, "certificate", &batch.CertificateArgs{
AccountName: pulumi.String("sampleacct"),
CertificateName: pulumi.String("sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e"),
Data: pulumi.String("MIIJsgIBAzCCCW4GCSqGSIb3DQE..."),
Format: batch.CertificateFormatPfx,
Password: pulumi.String("<ExamplePassword>"),
ResourceGroupName: pulumi.String("default-azurebatch-japaneast"),
Thumbprint: pulumi.String("0a0e4f50d51beadeac1d35afc5116098e7902e6e"),
ThumbprintAlgorithm: pulumi.String("sha1"),
})
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.batch.Certificate;
import com.pulumi.azurenative.batch.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()
.accountName("sampleacct")
.certificateName("sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e")
.data("MIIJsgIBAzCCCW4GCSqGSIb3DQE...")
.format("Pfx")
.password("<ExamplePassword>")
.resourceGroupName("default-azurebatch-japaneast")
.thumbprint("0a0e4f50d51beadeac1d35afc5116098e7902e6e")
.thumbprintAlgorithm("sha1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
certificate = azure_native.batch.Certificate("certificate",
account_name="sampleacct",
certificate_name="sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
data="MIIJsgIBAzCCCW4GCSqGSIb3DQE...",
format=azure_native.batch.CertificateFormat.PFX,
password="<ExamplePassword>",
resource_group_name="default-azurebatch-japaneast",
thumbprint="0a0e4f50d51beadeac1d35afc5116098e7902e6e",
thumbprint_algorithm="sha1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const certificate = new azure_native.batch.Certificate("certificate", {
accountName: "sampleacct",
certificateName: "sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
data: "MIIJsgIBAzCCCW4GCSqGSIb3DQE...",
format: azure_native.batch.CertificateFormat.Pfx,
password: "<ExamplePassword>",
resourceGroupName: "default-azurebatch-japaneast",
thumbprint: "0a0e4f50d51beadeac1d35afc5116098e7902e6e",
thumbprintAlgorithm: "sha1",
});
resources:
certificate:
type: azure-native:batch:Certificate
properties:
accountName: sampleacct
certificateName: sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e
data: MIIJsgIBAzCCCW4GCSqGSIb3DQE...
format: Pfx
password: <ExamplePassword>
resourceGroupName: default-azurebatch-japaneast
thumbprint: 0a0e4f50d51beadeac1d35afc5116098e7902e6e
thumbprintAlgorithm: sha1
CreateCertificate - Minimal Cer
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var certificate = new AzureNative.Batch.Certificate("certificate", new()
{
AccountName = "sampleacct",
CertificateName = "sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
Data = "MIICrjCCAZagAwI...",
Format = AzureNative.Batch.CertificateFormat.Cer,
ResourceGroupName = "default-azurebatch-japaneast",
});
});
package main
import (
batch "github.com/pulumi/pulumi-azure-native-sdk/batch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := batch.NewCertificate(ctx, "certificate", &batch.CertificateArgs{
AccountName: pulumi.String("sampleacct"),
CertificateName: pulumi.String("sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e"),
Data: pulumi.String("MIICrjCCAZagAwI..."),
Format: batch.CertificateFormatCer,
ResourceGroupName: pulumi.String("default-azurebatch-japaneast"),
})
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.batch.Certificate;
import com.pulumi.azurenative.batch.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()
.accountName("sampleacct")
.certificateName("sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e")
.data("MIICrjCCAZagAwI...")
.format("Cer")
.resourceGroupName("default-azurebatch-japaneast")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
certificate = azure_native.batch.Certificate("certificate",
account_name="sampleacct",
certificate_name="sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
data="MIICrjCCAZagAwI...",
format=azure_native.batch.CertificateFormat.CER,
resource_group_name="default-azurebatch-japaneast")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const certificate = new azure_native.batch.Certificate("certificate", {
accountName: "sampleacct",
certificateName: "sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
data: "MIICrjCCAZagAwI...",
format: azure_native.batch.CertificateFormat.Cer,
resourceGroupName: "default-azurebatch-japaneast",
});
resources:
certificate:
type: azure-native:batch:Certificate
properties:
accountName: sampleacct
certificateName: sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e
data: MIICrjCCAZagAwI...
format: Cer
resourceGroupName: default-azurebatch-japaneast
CreateCertificate - Minimal Pfx
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var certificate = new AzureNative.Batch.Certificate("certificate", new()
{
AccountName = "sampleacct",
CertificateName = "sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
Data = "MIIJsgIBAzCCCW4GCSqGSIb3DQE...",
Password = "<ExamplePassword>",
ResourceGroupName = "default-azurebatch-japaneast",
});
});
package main
import (
batch "github.com/pulumi/pulumi-azure-native-sdk/batch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := batch.NewCertificate(ctx, "certificate", &batch.CertificateArgs{
AccountName: pulumi.String("sampleacct"),
CertificateName: pulumi.String("sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e"),
Data: pulumi.String("MIIJsgIBAzCCCW4GCSqGSIb3DQE..."),
Password: pulumi.String("<ExamplePassword>"),
ResourceGroupName: pulumi.String("default-azurebatch-japaneast"),
})
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.batch.Certificate;
import com.pulumi.azurenative.batch.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()
.accountName("sampleacct")
.certificateName("sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e")
.data("MIIJsgIBAzCCCW4GCSqGSIb3DQE...")
.password("<ExamplePassword>")
.resourceGroupName("default-azurebatch-japaneast")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
certificate = azure_native.batch.Certificate("certificate",
account_name="sampleacct",
certificate_name="sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
data="MIIJsgIBAzCCCW4GCSqGSIb3DQE...",
password="<ExamplePassword>",
resource_group_name="default-azurebatch-japaneast")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const certificate = new azure_native.batch.Certificate("certificate", {
accountName: "sampleacct",
certificateName: "sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e",
data: "MIIJsgIBAzCCCW4GCSqGSIb3DQE...",
password: "<ExamplePassword>",
resourceGroupName: "default-azurebatch-japaneast",
});
resources:
certificate:
type: azure-native:batch:Certificate
properties:
accountName: sampleacct
certificateName: sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e
data: MIIJsgIBAzCCCW4GCSqGSIb3DQE...
password: <ExamplePassword>
resourceGroupName: default-azurebatch-japaneast
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,
account_name: Optional[str] = None,
data: Optional[str] = None,
resource_group_name: Optional[str] = None,
certificate_name: Optional[str] = None,
format: Optional[CertificateFormat] = None,
password: Optional[str] = None,
thumbprint: Optional[str] = None,
thumbprint_algorithm: 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:batch: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 examplecertificateResourceResourceFromBatch = new AzureNative.Batch.Certificate("examplecertificateResourceResourceFromBatch", new()
{
AccountName = "string",
Data = "string",
ResourceGroupName = "string",
CertificateName = "string",
Format = "Pfx",
Password = "string",
Thumbprint = "string",
ThumbprintAlgorithm = "string",
});
example, err := batch.NewCertificate(ctx, "examplecertificateResourceResourceFromBatch", &batch.CertificateArgs{
AccountName: "string",
Data: "string",
ResourceGroupName: "string",
CertificateName: "string",
Format: "Pfx",
Password: "string",
Thumbprint: "string",
ThumbprintAlgorithm: "string",
})
var examplecertificateResourceResourceFromBatch = new Certificate("examplecertificateResourceResourceFromBatch", CertificateArgs.builder()
.accountName("string")
.data("string")
.resourceGroupName("string")
.certificateName("string")
.format("Pfx")
.password("string")
.thumbprint("string")
.thumbprintAlgorithm("string")
.build());
examplecertificate_resource_resource_from_batch = azure_native.batch.Certificate("examplecertificateResourceResourceFromBatch",
account_name=string,
data=string,
resource_group_name=string,
certificate_name=string,
format=Pfx,
password=string,
thumbprint=string,
thumbprint_algorithm=string)
const examplecertificateResourceResourceFromBatch = new azure_native.batch.Certificate("examplecertificateResourceResourceFromBatch", {
accountName: "string",
data: "string",
resourceGroupName: "string",
certificateName: "string",
format: "Pfx",
password: "string",
thumbprint: "string",
thumbprintAlgorithm: "string",
});
type: azure-native:batch:Certificate
properties:
accountName: string
certificateName: string
data: string
format: Pfx
password: string
resourceGroupName: string
thumbprint: string
thumbprintAlgorithm: 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:
- Account
Name string - The name of the Batch account.
- Data string
- The maximum size is 10KB.
- Resource
Group stringName - The name of the resource group that contains the Batch account.
- Certificate
Name string - The identifier for the certificate. This must be made up of algorithm and thumbprint separated by a dash, and must match the certificate data in the request. For example SHA1-a3d1c5.
- Format
Pulumi.
Azure Native. Batch. Certificate Format - The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx.
- Password string
- This must not be specified if the certificate format is Cer.
- Thumbprint string
- This must match the thumbprint from the name.
- Thumbprint
Algorithm string - This must match the first portion of the certificate name. Currently required to be 'SHA1'.
- Account
Name string - The name of the Batch account.
- Data string
- The maximum size is 10KB.
- Resource
Group stringName - The name of the resource group that contains the Batch account.
- Certificate
Name string - The identifier for the certificate. This must be made up of algorithm and thumbprint separated by a dash, and must match the certificate data in the request. For example SHA1-a3d1c5.
- Format
Certificate
Format - The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx.
- Password string
- This must not be specified if the certificate format is Cer.
- Thumbprint string
- This must match the thumbprint from the name.
- Thumbprint
Algorithm string - This must match the first portion of the certificate name. Currently required to be 'SHA1'.
- account
Name String - The name of the Batch account.
- data String
- The maximum size is 10KB.
- resource
Group StringName - The name of the resource group that contains the Batch account.
- certificate
Name String - The identifier for the certificate. This must be made up of algorithm and thumbprint separated by a dash, and must match the certificate data in the request. For example SHA1-a3d1c5.
- format
Certificate
Format - The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx.
- password String
- This must not be specified if the certificate format is Cer.
- thumbprint String
- This must match the thumbprint from the name.
- thumbprint
Algorithm String - This must match the first portion of the certificate name. Currently required to be 'SHA1'.
- account
Name string - The name of the Batch account.
- data string
- The maximum size is 10KB.
- resource
Group stringName - The name of the resource group that contains the Batch account.
- certificate
Name string - The identifier for the certificate. This must be made up of algorithm and thumbprint separated by a dash, and must match the certificate data in the request. For example SHA1-a3d1c5.
- format
Certificate
Format - The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx.
- password string
- This must not be specified if the certificate format is Cer.
- thumbprint string
- This must match the thumbprint from the name.
- thumbprint
Algorithm string - This must match the first portion of the certificate name. Currently required to be 'SHA1'.
- account_
name str - The name of the Batch account.
- data str
- The maximum size is 10KB.
- resource_
group_ strname - The name of the resource group that contains the Batch account.
- certificate_
name str - The identifier for the certificate. This must be made up of algorithm and thumbprint separated by a dash, and must match the certificate data in the request. For example SHA1-a3d1c5.
- format
Certificate
Format - The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx.
- password str
- This must not be specified if the certificate format is Cer.
- thumbprint str
- This must match the thumbprint from the name.
- thumbprint_
algorithm str - This must match the first portion of the certificate name. Currently required to be 'SHA1'.
- account
Name String - The name of the Batch account.
- data String
- The maximum size is 10KB.
- resource
Group StringName - The name of the resource group that contains the Batch account.
- certificate
Name String - The identifier for the certificate. This must be made up of algorithm and thumbprint separated by a dash, and must match the certificate data in the request. For example SHA1-a3d1c5.
- format "Pfx" | "Cer"
- The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx.
- password String
- This must not be specified if the certificate format is Cer.
- thumbprint String
- This must match the thumbprint from the name.
- thumbprint
Algorithm String - This must match the first portion of the certificate name. Currently required to be 'SHA1'.
Outputs
All input properties are implicitly available as output properties. Additionally, the Certificate resource produces the following output properties:
- Delete
Certificate Pulumi.Error Azure Native. Batch. Outputs. Delete Certificate Error Response - This is only returned when the certificate provisioningState is 'Failed'.
- Etag string
- The ETag of the resource, used for concurrency statements.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Previous
Provisioning stringState - The previous provisioned state of the resource
- Previous
Provisioning stringState Transition Time - Provisioning
State string - Provisioning
State stringTransition Time - Public
Data string - The public key of the certificate.
- Type string
- The type of the resource.
- Delete
Certificate DeleteError Certificate Error Response - This is only returned when the certificate provisioningState is 'Failed'.
- Etag string
- The ETag of the resource, used for concurrency statements.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Previous
Provisioning stringState - The previous provisioned state of the resource
- Previous
Provisioning stringState Transition Time - Provisioning
State string - Provisioning
State stringTransition Time - Public
Data string - The public key of the certificate.
- Type string
- The type of the resource.
- delete
Certificate DeleteError Certificate Error Response - This is only returned when the certificate provisioningState is 'Failed'.
- etag String
- The ETag of the resource, used for concurrency statements.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- previous
Provisioning StringState - The previous provisioned state of the resource
- previous
Provisioning StringState Transition Time - provisioning
State String - provisioning
State StringTransition Time - public
Data String - The public key of the certificate.
- type String
- The type of the resource.
- delete
Certificate DeleteError Certificate Error Response - This is only returned when the certificate provisioningState is 'Failed'.
- etag string
- The ETag of the resource, used for concurrency statements.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- previous
Provisioning stringState - The previous provisioned state of the resource
- previous
Provisioning stringState Transition Time - provisioning
State string - provisioning
State stringTransition Time - public
Data string - The public key of the certificate.
- type string
- The type of the resource.
- delete_
certificate_ Deleteerror Certificate Error Response - This is only returned when the certificate provisioningState is 'Failed'.
- etag str
- The ETag of the resource, used for concurrency statements.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- previous_
provisioning_ strstate - The previous provisioned state of the resource
- previous_
provisioning_ strstate_ transition_ time - provisioning_
state str - provisioning_
state_ strtransition_ time - public_
data str - The public key of the certificate.
- type str
- The type of the resource.
- delete
Certificate Property MapError - This is only returned when the certificate provisioningState is 'Failed'.
- etag String
- The ETag of the resource, used for concurrency statements.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- previous
Provisioning StringState - The previous provisioned state of the resource
- previous
Provisioning StringState Transition Time - provisioning
State String - provisioning
State StringTransition Time - public
Data String - The public key of the certificate.
- type String
- The type of the resource.
Supporting Types
CertificateFormat, CertificateFormatArgs
- Pfx
- PfxThe certificate is a PFX (PKCS#12) formatted certificate or certificate chain.
- Cer
- CerThe certificate is a base64-encoded X.509 certificate.
- Certificate
Format Pfx - PfxThe certificate is a PFX (PKCS#12) formatted certificate or certificate chain.
- Certificate
Format Cer - CerThe certificate is a base64-encoded X.509 certificate.
- Pfx
- PfxThe certificate is a PFX (PKCS#12) formatted certificate or certificate chain.
- Cer
- CerThe certificate is a base64-encoded X.509 certificate.
- Pfx
- PfxThe certificate is a PFX (PKCS#12) formatted certificate or certificate chain.
- Cer
- CerThe certificate is a base64-encoded X.509 certificate.
- PFX
- PfxThe certificate is a PFX (PKCS#12) formatted certificate or certificate chain.
- CER
- CerThe certificate is a base64-encoded X.509 certificate.
- "Pfx"
- PfxThe certificate is a PFX (PKCS#12) formatted certificate or certificate chain.
- "Cer"
- CerThe certificate is a base64-encoded X.509 certificate.
DeleteCertificateErrorResponse, DeleteCertificateErrorResponseArgs
- Code string
- An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
- Message string
- A message describing the error, intended to be suitable for display in a user interface.
- Details
List<Pulumi.
Azure Native. Batch. Inputs. Delete Certificate Error Response> - A list of additional details about the error.
- Target string
- The target of the particular error. For example, the name of the property in error.
- Code string
- An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
- Message string
- A message describing the error, intended to be suitable for display in a user interface.
- Details
[]Delete
Certificate Error Response - A list of additional details about the error.
- Target string
- The target of the particular error. For example, the name of the property in error.
- code String
- An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
- message String
- A message describing the error, intended to be suitable for display in a user interface.
- details
List<Delete
Certificate Error Response> - A list of additional details about the error.
- target String
- The target of the particular error. For example, the name of the property in error.
- code string
- An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
- message string
- A message describing the error, intended to be suitable for display in a user interface.
- details
Delete
Certificate Error Response[] - A list of additional details about the error.
- target string
- The target of the particular error. For example, the name of the property in error.
- code str
- An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
- message str
- A message describing the error, intended to be suitable for display in a user interface.
- details
Sequence[Delete
Certificate Error Response] - A list of additional details about the error.
- target str
- The target of the particular error. For example, the name of the property in error.
- code String
- An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
- message String
- A message describing the error, intended to be suitable for display in a user interface.
- details List<Property Map>
- A list of additional details about the error.
- target String
- The target of the particular error. For example, the name of the property in error.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:batch:Certificate sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e /subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/samplecct/certificates/sha1-0a0e4f50d51beadeac1d35afc5116098e7902e6e
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0