@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.63 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a CertificateObjectLocalRulestackResource
*
* Uses Azure REST API version 2025-02-06-preview.
*
* Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getCertificateObjectLocalRulestack(args: GetCertificateObjectLocalRulestackArgs, opts?: pulumi.InvokeOptions): Promise<GetCertificateObjectLocalRulestackResult>;
export interface GetCertificateObjectLocalRulestackArgs {
/**
* LocalRulestack resource name
*/
localRulestackName: string;
/**
* certificate name
*/
name: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* LocalRulestack Certificate Object
*/
export interface GetCertificateObjectLocalRulestackResult {
/**
* comment for this object
*/
readonly auditComment?: string;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* use certificate self signed
*/
readonly certificateSelfSigned: string;
/**
* Resource Id of certificate signer, to be populated only when certificateSelfSigned is false
*/
readonly certificateSignerResourceId?: string;
/**
* user description for this object
*/
readonly description?: string;
/**
* read only string representing last create or update
*/
readonly etag?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Provisioning state of the resource.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.cloudngfw.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get a CertificateObjectLocalRulestackResource
*
* Uses Azure REST API version 2025-02-06-preview.
*
* Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getCertificateObjectLocalRulestackOutput(args: GetCertificateObjectLocalRulestackOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCertificateObjectLocalRulestackResult>;
export interface GetCertificateObjectLocalRulestackOutputArgs {
/**
* LocalRulestack resource name
*/
localRulestackName: pulumi.Input<string>;
/**
* certificate name
*/
name: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}