@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.23 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the DNSSEC configuration.
*
* Uses Azure REST API version 2023-07-01-preview.
*/
export declare function getDnssecConfig(args: GetDnssecConfigArgs, opts?: pulumi.InvokeOptions): Promise<GetDnssecConfigResult>;
export interface GetDnssecConfigArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the DNS zone (without a terminating dot).
*/
zoneName: string;
}
/**
* Represents the DNSSEC configuration.
*/
export interface GetDnssecConfigResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The etag of the DNSSEC configuration.
*/
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 DNSSEC configuration.
*/
readonly provisioningState: string;
/**
* The list of signing keys.
*/
readonly signingKeys: outputs.dns.SigningKeyResponse[];
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.dns.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the DNSSEC configuration.
*
* Uses Azure REST API version 2023-07-01-preview.
*/
export declare function getDnssecConfigOutput(args: GetDnssecConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDnssecConfigResult>;
export interface GetDnssecConfigOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the DNS zone (without a terminating dot).
*/
zoneName: pulumi.Input<string>;
}