1. Packages
  2. Azure Native v1
  3. API Docs
  4. certificateregistration
  5. AppServiceCertificateOrder
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.certificateregistration.AppServiceCertificateOrder

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    SSL certificate purchase order. API Version: 2020-10-01.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:certificateregistration:AppServiceCertificateOrder myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CertificateRegistration/certificateOrders/{certificateOrderName} 
    

    Create AppServiceCertificateOrder Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AppServiceCertificateOrder(name: string, args: AppServiceCertificateOrderArgs, opts?: CustomResourceOptions);
    @overload
    def AppServiceCertificateOrder(resource_name: str,
                                   args: AppServiceCertificateOrderArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppServiceCertificateOrder(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   product_type: Optional[CertificateProductType] = None,
                                   resource_group_name: Optional[str] = None,
                                   auto_renew: Optional[bool] = None,
                                   certificate_order_name: Optional[str] = None,
                                   certificates: Optional[Mapping[str, AppServiceCertificateArgs]] = None,
                                   csr: Optional[str] = None,
                                   distinguished_name: Optional[str] = None,
                                   key_size: Optional[int] = None,
                                   kind: Optional[str] = None,
                                   location: Optional[str] = None,
                                   tags: Optional[Mapping[str, str]] = None,
                                   validity_in_years: Optional[int] = None)
    func NewAppServiceCertificateOrder(ctx *Context, name string, args AppServiceCertificateOrderArgs, opts ...ResourceOption) (*AppServiceCertificateOrder, error)
    public AppServiceCertificateOrder(string name, AppServiceCertificateOrderArgs args, CustomResourceOptions? opts = null)
    public AppServiceCertificateOrder(String name, AppServiceCertificateOrderArgs args)
    public AppServiceCertificateOrder(String name, AppServiceCertificateOrderArgs args, CustomResourceOptions options)
    
    type: azure-native:certificateregistration:AppServiceCertificateOrder
    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 AppServiceCertificateOrderArgs
    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 AppServiceCertificateOrderArgs
    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 AppServiceCertificateOrderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppServiceCertificateOrderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppServiceCertificateOrderArgs
    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 appServiceCertificateOrderResource = new AzureNative.Certificateregistration.AppServiceCertificateOrder("appServiceCertificateOrderResource", new()
    {
        ProductType = "StandardDomainValidatedSsl",
        ResourceGroupName = "string",
        AutoRenew = false,
        CertificateOrderName = "string",
        Certificates = 
        {
            { "string", 
            {
                { "keyVaultId", "string" },
                { "keyVaultSecretName", "string" },
            } },
        },
        Csr = "string",
        DistinguishedName = "string",
        KeySize = 0,
        Kind = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
        ValidityInYears = 0,
    });
    
    example, err := certificateregistration.NewAppServiceCertificateOrder(ctx, "appServiceCertificateOrderResource", &certificateregistration.AppServiceCertificateOrderArgs{
    	ProductType:          "StandardDomainValidatedSsl",
    	ResourceGroupName:    "string",
    	AutoRenew:            false,
    	CertificateOrderName: "string",
    	Certificates: map[string]interface{}{
    		"string": map[string]interface{}{
    			"keyVaultId":         "string",
    			"keyVaultSecretName": "string",
    		},
    	},
    	Csr:               "string",
    	DistinguishedName: "string",
    	KeySize:           0,
    	Kind:              "string",
    	Location:          "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    	ValidityInYears: 0,
    })
    
    var appServiceCertificateOrderResource = new AppServiceCertificateOrder("appServiceCertificateOrderResource", AppServiceCertificateOrderArgs.builder()
        .productType("StandardDomainValidatedSsl")
        .resourceGroupName("string")
        .autoRenew(false)
        .certificateOrderName("string")
        .certificates(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .csr("string")
        .distinguishedName("string")
        .keySize(0)
        .kind("string")
        .location("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .validityInYears(0)
        .build());
    
    app_service_certificate_order_resource = azure_native.certificateregistration.AppServiceCertificateOrder("appServiceCertificateOrderResource",
        product_type=StandardDomainValidatedSsl,
        resource_group_name=string,
        auto_renew=False,
        certificate_order_name=string,
        certificates={
            string: {
                keyVaultId: string,
                keyVaultSecretName: string,
            },
        },
        csr=string,
        distinguished_name=string,
        key_size=0,
        kind=string,
        location=string,
        tags={
            string: string,
        },
        validity_in_years=0)
    
    const appServiceCertificateOrderResource = new azure_native.certificateregistration.AppServiceCertificateOrder("appServiceCertificateOrderResource", {
        productType: "StandardDomainValidatedSsl",
        resourceGroupName: "string",
        autoRenew: false,
        certificateOrderName: "string",
        certificates: {
            string: {
                keyVaultId: "string",
                keyVaultSecretName: "string",
            },
        },
        csr: "string",
        distinguishedName: "string",
        keySize: 0,
        kind: "string",
        location: "string",
        tags: {
            string: "string",
        },
        validityInYears: 0,
    });
    
    type: azure-native:certificateregistration:AppServiceCertificateOrder
    properties:
        autoRenew: false
        certificateOrderName: string
        certificates:
            string:
                keyVaultId: string
                keyVaultSecretName: string
        csr: string
        distinguishedName: string
        keySize: 0
        kind: string
        location: string
        productType: StandardDomainValidatedSsl
        resourceGroupName: string
        tags:
            string: string
        validityInYears: 0
    

    AppServiceCertificateOrder 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 AppServiceCertificateOrder resource accepts the following input properties:

    ProductType Pulumi.AzureNative.CertificateRegistration.CertificateProductType
    Certificate product type.
    ResourceGroupName string
    Name of the resource group to which the resource belongs.
    AutoRenew bool
    true if the certificate should be automatically renewed when it expires; otherwise, false.
    CertificateOrderName string
    Name of the certificate order.
    Certificates Dictionary<string, Pulumi.AzureNative.CertificateRegistration.Inputs.AppServiceCertificateArgs>
    State of the Key Vault secret.
    Csr string
    Last CSR that was created for this order.
    DistinguishedName string
    Certificate distinguished name.
    KeySize int
    Certificate key size.
    Kind string
    Kind of resource.
    Location string
    Resource Location.
    Tags Dictionary<string, string>
    Resource tags.
    ValidityInYears int
    Duration in years (must be between 1 and 3).
    ProductType CertificateProductType
    Certificate product type.
    ResourceGroupName string
    Name of the resource group to which the resource belongs.
    AutoRenew bool
    true if the certificate should be automatically renewed when it expires; otherwise, false.
    CertificateOrderName string
    Name of the certificate order.
    Certificates map[string]AppServiceCertificateArgs
    State of the Key Vault secret.
    Csr string
    Last CSR that was created for this order.
    DistinguishedName string
    Certificate distinguished name.
    KeySize int
    Certificate key size.
    Kind string
    Kind of resource.
    Location string
    Resource Location.
    Tags map[string]string
    Resource tags.
    ValidityInYears int
    Duration in years (must be between 1 and 3).
    productType CertificateProductType
    Certificate product type.
    resourceGroupName String
    Name of the resource group to which the resource belongs.
    autoRenew Boolean
    true if the certificate should be automatically renewed when it expires; otherwise, false.
    certificateOrderName String
    Name of the certificate order.
    certificates Map<String,AppServiceCertificateArgs>
    State of the Key Vault secret.
    csr String
    Last CSR that was created for this order.
    distinguishedName String
    Certificate distinguished name.
    keySize Integer
    Certificate key size.
    kind String
    Kind of resource.
    location String
    Resource Location.
    tags Map<String,String>
    Resource tags.
    validityInYears Integer
    Duration in years (must be between 1 and 3).
    productType CertificateProductType
    Certificate product type.
    resourceGroupName string
    Name of the resource group to which the resource belongs.
    autoRenew boolean
    true if the certificate should be automatically renewed when it expires; otherwise, false.
    certificateOrderName string
    Name of the certificate order.
    certificates {[key: string]: AppServiceCertificateArgs}
    State of the Key Vault secret.
    csr string
    Last CSR that was created for this order.
    distinguishedName string
    Certificate distinguished name.
    keySize number
    Certificate key size.
    kind string
    Kind of resource.
    location string
    Resource Location.
    tags {[key: string]: string}
    Resource tags.
    validityInYears number
    Duration in years (must be between 1 and 3).
    product_type CertificateProductType
    Certificate product type.
    resource_group_name str
    Name of the resource group to which the resource belongs.
    auto_renew bool
    true if the certificate should be automatically renewed when it expires; otherwise, false.
    certificate_order_name str
    Name of the certificate order.
    certificates Mapping[str, AppServiceCertificateArgs]
    State of the Key Vault secret.
    csr str
    Last CSR that was created for this order.
    distinguished_name str
    Certificate distinguished name.
    key_size int
    Certificate key size.
    kind str
    Kind of resource.
    location str
    Resource Location.
    tags Mapping[str, str]
    Resource tags.
    validity_in_years int
    Duration in years (must be between 1 and 3).
    productType "StandardDomainValidatedSsl" | "StandardDomainValidatedWildCardSsl"
    Certificate product type.
    resourceGroupName String
    Name of the resource group to which the resource belongs.
    autoRenew Boolean
    true if the certificate should be automatically renewed when it expires; otherwise, false.
    certificateOrderName String
    Name of the certificate order.
    certificates Map<Property Map>
    State of the Key Vault secret.
    csr String
    Last CSR that was created for this order.
    distinguishedName String
    Certificate distinguished name.
    keySize Number
    Certificate key size.
    kind String
    Kind of resource.
    location String
    Resource Location.
    tags Map<String>
    Resource tags.
    validityInYears Number
    Duration in years (must be between 1 and 3).

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AppServiceCertificateOrder resource produces the following output properties:

    AppServiceCertificateNotRenewableReasons List<string>
    Reasons why App Service Certificate is not renewable at the current moment.
    DomainVerificationToken string
    Domain verification token.
    ExpirationTime string
    Certificate expiration time.
    Id string
    The provider-assigned unique ID for this managed resource.
    Intermediate Pulumi.AzureNative.CertificateRegistration.Outputs.CertificateDetailsResponse
    Intermediate certificate.
    IsPrivateKeyExternal bool
    true if private key is external; otherwise, false.
    LastCertificateIssuanceTime string
    Certificate last issuance time.
    Name string
    Resource Name.
    NextAutoRenewalTimeStamp string
    Time stamp when the certificate would be auto renewed next
    ProvisioningState string
    Status of certificate order.
    Root Pulumi.AzureNative.CertificateRegistration.Outputs.CertificateDetailsResponse
    Root certificate.
    SerialNumber string
    Current serial number of the certificate.
    SignedCertificate Pulumi.AzureNative.CertificateRegistration.Outputs.CertificateDetailsResponse
    Signed certificate.
    Status string
    Current order status.
    SystemData Pulumi.AzureNative.CertificateRegistration.Outputs.SystemDataResponse
    The system metadata relating to this resource.
    Type string
    Resource type.
    AppServiceCertificateNotRenewableReasons []string
    Reasons why App Service Certificate is not renewable at the current moment.
    DomainVerificationToken string
    Domain verification token.
    ExpirationTime string
    Certificate expiration time.
    Id string
    The provider-assigned unique ID for this managed resource.
    Intermediate CertificateDetailsResponse
    Intermediate certificate.
    IsPrivateKeyExternal bool
    true if private key is external; otherwise, false.
    LastCertificateIssuanceTime string
    Certificate last issuance time.
    Name string
    Resource Name.
    NextAutoRenewalTimeStamp string
    Time stamp when the certificate would be auto renewed next
    ProvisioningState string
    Status of certificate order.
    Root CertificateDetailsResponse
    Root certificate.
    SerialNumber string
    Current serial number of the certificate.
    SignedCertificate CertificateDetailsResponse
    Signed certificate.
    Status string
    Current order status.
    SystemData SystemDataResponse
    The system metadata relating to this resource.
    Type string
    Resource type.
    appServiceCertificateNotRenewableReasons List<String>
    Reasons why App Service Certificate is not renewable at the current moment.
    domainVerificationToken String
    Domain verification token.
    expirationTime String
    Certificate expiration time.
    id String
    The provider-assigned unique ID for this managed resource.
    intermediate CertificateDetailsResponse
    Intermediate certificate.
    isPrivateKeyExternal Boolean
    true if private key is external; otherwise, false.
    lastCertificateIssuanceTime String
    Certificate last issuance time.
    name String
    Resource Name.
    nextAutoRenewalTimeStamp String
    Time stamp when the certificate would be auto renewed next
    provisioningState String
    Status of certificate order.
    root CertificateDetailsResponse
    Root certificate.
    serialNumber String
    Current serial number of the certificate.
    signedCertificate CertificateDetailsResponse
    Signed certificate.
    status String
    Current order status.
    systemData SystemDataResponse
    The system metadata relating to this resource.
    type String
    Resource type.
    appServiceCertificateNotRenewableReasons string[]
    Reasons why App Service Certificate is not renewable at the current moment.
    domainVerificationToken string
    Domain verification token.
    expirationTime string
    Certificate expiration time.
    id string
    The provider-assigned unique ID for this managed resource.
    intermediate CertificateDetailsResponse
    Intermediate certificate.
    isPrivateKeyExternal boolean
    true if private key is external; otherwise, false.
    lastCertificateIssuanceTime string
    Certificate last issuance time.
    name string
    Resource Name.
    nextAutoRenewalTimeStamp string
    Time stamp when the certificate would be auto renewed next
    provisioningState string
    Status of certificate order.
    root CertificateDetailsResponse
    Root certificate.
    serialNumber string
    Current serial number of the certificate.
    signedCertificate CertificateDetailsResponse
    Signed certificate.
    status string
    Current order status.
    systemData SystemDataResponse
    The system metadata relating to this resource.
    type string
    Resource type.
    app_service_certificate_not_renewable_reasons Sequence[str]
    Reasons why App Service Certificate is not renewable at the current moment.
    domain_verification_token str
    Domain verification token.
    expiration_time str
    Certificate expiration time.
    id str
    The provider-assigned unique ID for this managed resource.
    intermediate CertificateDetailsResponse
    Intermediate certificate.
    is_private_key_external bool
    true if private key is external; otherwise, false.
    last_certificate_issuance_time str
    Certificate last issuance time.
    name str
    Resource Name.
    next_auto_renewal_time_stamp str
    Time stamp when the certificate would be auto renewed next
    provisioning_state str
    Status of certificate order.
    root CertificateDetailsResponse
    Root certificate.
    serial_number str
    Current serial number of the certificate.
    signed_certificate CertificateDetailsResponse
    Signed certificate.
    status str
    Current order status.
    system_data SystemDataResponse
    The system metadata relating to this resource.
    type str
    Resource type.
    appServiceCertificateNotRenewableReasons List<String>
    Reasons why App Service Certificate is not renewable at the current moment.
    domainVerificationToken String
    Domain verification token.
    expirationTime String
    Certificate expiration time.
    id String
    The provider-assigned unique ID for this managed resource.
    intermediate Property Map
    Intermediate certificate.
    isPrivateKeyExternal Boolean
    true if private key is external; otherwise, false.
    lastCertificateIssuanceTime String
    Certificate last issuance time.
    name String
    Resource Name.
    nextAutoRenewalTimeStamp String
    Time stamp when the certificate would be auto renewed next
    provisioningState String
    Status of certificate order.
    root Property Map
    Root certificate.
    serialNumber String
    Current serial number of the certificate.
    signedCertificate Property Map
    Signed certificate.
    status String
    Current order status.
    systemData Property Map
    The system metadata relating to this resource.
    type String
    Resource type.

    Supporting Types

    AppServiceCertificate, AppServiceCertificateArgs

    KeyVaultId string
    Key Vault resource Id.
    KeyVaultSecretName string
    Key Vault secret name.
    KeyVaultId string
    Key Vault resource Id.
    KeyVaultSecretName string
    Key Vault secret name.
    keyVaultId String
    Key Vault resource Id.
    keyVaultSecretName String
    Key Vault secret name.
    keyVaultId string
    Key Vault resource Id.
    keyVaultSecretName string
    Key Vault secret name.
    key_vault_id str
    Key Vault resource Id.
    key_vault_secret_name str
    Key Vault secret name.
    keyVaultId String
    Key Vault resource Id.
    keyVaultSecretName String
    Key Vault secret name.

    AppServiceCertificateResponse, AppServiceCertificateResponseArgs

    ProvisioningState string
    Status of the Key Vault secret.
    KeyVaultId string
    Key Vault resource Id.
    KeyVaultSecretName string
    Key Vault secret name.
    ProvisioningState string
    Status of the Key Vault secret.
    KeyVaultId string
    Key Vault resource Id.
    KeyVaultSecretName string
    Key Vault secret name.
    provisioningState String
    Status of the Key Vault secret.
    keyVaultId String
    Key Vault resource Id.
    keyVaultSecretName String
    Key Vault secret name.
    provisioningState string
    Status of the Key Vault secret.
    keyVaultId string
    Key Vault resource Id.
    keyVaultSecretName string
    Key Vault secret name.
    provisioning_state str
    Status of the Key Vault secret.
    key_vault_id str
    Key Vault resource Id.
    key_vault_secret_name str
    Key Vault secret name.
    provisioningState String
    Status of the Key Vault secret.
    keyVaultId String
    Key Vault resource Id.
    keyVaultSecretName String
    Key Vault secret name.

    CertificateDetailsResponse, CertificateDetailsResponseArgs

    Issuer string
    Certificate Issuer.
    NotAfter string
    Date Certificate is valid to.
    NotBefore string
    Date Certificate is valid from.
    RawData string
    Raw certificate data.
    SerialNumber string
    Certificate Serial Number.
    SignatureAlgorithm string
    Certificate Signature algorithm.
    Subject string
    Certificate Subject.
    Thumbprint string
    Certificate Thumbprint.
    Version int
    Certificate Version.
    Issuer string
    Certificate Issuer.
    NotAfter string
    Date Certificate is valid to.
    NotBefore string
    Date Certificate is valid from.
    RawData string
    Raw certificate data.
    SerialNumber string
    Certificate Serial Number.
    SignatureAlgorithm string
    Certificate Signature algorithm.
    Subject string
    Certificate Subject.
    Thumbprint string
    Certificate Thumbprint.
    Version int
    Certificate Version.
    issuer String
    Certificate Issuer.
    notAfter String
    Date Certificate is valid to.
    notBefore String
    Date Certificate is valid from.
    rawData String
    Raw certificate data.
    serialNumber String
    Certificate Serial Number.
    signatureAlgorithm String
    Certificate Signature algorithm.
    subject String
    Certificate Subject.
    thumbprint String
    Certificate Thumbprint.
    version Integer
    Certificate Version.
    issuer string
    Certificate Issuer.
    notAfter string
    Date Certificate is valid to.
    notBefore string
    Date Certificate is valid from.
    rawData string
    Raw certificate data.
    serialNumber string
    Certificate Serial Number.
    signatureAlgorithm string
    Certificate Signature algorithm.
    subject string
    Certificate Subject.
    thumbprint string
    Certificate Thumbprint.
    version number
    Certificate Version.
    issuer str
    Certificate Issuer.
    not_after str
    Date Certificate is valid to.
    not_before str
    Date Certificate is valid from.
    raw_data str
    Raw certificate data.
    serial_number str
    Certificate Serial Number.
    signature_algorithm str
    Certificate Signature algorithm.
    subject str
    Certificate Subject.
    thumbprint str
    Certificate Thumbprint.
    version int
    Certificate Version.
    issuer String
    Certificate Issuer.
    notAfter String
    Date Certificate is valid to.
    notBefore String
    Date Certificate is valid from.
    rawData String
    Raw certificate data.
    serialNumber String
    Certificate Serial Number.
    signatureAlgorithm String
    Certificate Signature algorithm.
    subject String
    Certificate Subject.
    thumbprint String
    Certificate Thumbprint.
    version Number
    Certificate Version.

    CertificateProductType, CertificateProductTypeArgs

    StandardDomainValidatedSsl
    StandardDomainValidatedSsl
    StandardDomainValidatedWildCardSsl
    StandardDomainValidatedWildCardSsl
    CertificateProductTypeStandardDomainValidatedSsl
    StandardDomainValidatedSsl
    CertificateProductTypeStandardDomainValidatedWildCardSsl
    StandardDomainValidatedWildCardSsl
    StandardDomainValidatedSsl
    StandardDomainValidatedSsl
    StandardDomainValidatedWildCardSsl
    StandardDomainValidatedWildCardSsl
    StandardDomainValidatedSsl
    StandardDomainValidatedSsl
    StandardDomainValidatedWildCardSsl
    StandardDomainValidatedWildCardSsl
    STANDARD_DOMAIN_VALIDATED_SSL
    StandardDomainValidatedSsl
    STANDARD_DOMAIN_VALIDATED_WILD_CARD_SSL
    StandardDomainValidatedWildCardSsl
    "StandardDomainValidatedSsl"
    StandardDomainValidatedSsl
    "StandardDomainValidatedWildCardSsl"
    StandardDomainValidatedWildCardSsl

    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-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi