UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

95 lines (94 loc) 3.69 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets a managed database's long term retention policy. * * Uses Azure REST API version 2023-08-01. * * Other available API versions: 2022-05-01-preview, 2022-08-01-preview, 2022-11-01-preview, 2023-02-01-preview, 2023-05-01-preview, 2023-08-01-preview, 2024-05-01-preview, 2024-11-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native sql [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getManagedInstanceLongTermRetentionPolicy(args: GetManagedInstanceLongTermRetentionPolicyArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedInstanceLongTermRetentionPolicyResult>; export interface GetManagedInstanceLongTermRetentionPolicyArgs { /** * The name of the database. */ databaseName: string; /** * The name of the managed instance. */ managedInstanceName: string; /** * The policy name. Should always be Default. */ policyName: string; /** * The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. */ resourceGroupName: string; } /** * A long term retention policy. */ export interface GetManagedInstanceLongTermRetentionPolicyResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The BackupStorageAccessTier for the LTR backups */ readonly backupStorageAccessTier?: string; /** * Resource ID. */ readonly id: string; /** * The monthly retention policy for an LTR backup in an ISO 8601 format. */ readonly monthlyRetention?: string; /** * Resource name. */ readonly name: string; /** * Resource type. */ readonly type: string; /** * The week of year to take the yearly backup in an ISO 8601 format. */ readonly weekOfYear?: number; /** * The weekly retention policy for an LTR backup in an ISO 8601 format. */ readonly weeklyRetention?: string; /** * The yearly retention policy for an LTR backup in an ISO 8601 format. */ readonly yearlyRetention?: string; } /** * Gets a managed database's long term retention policy. * * Uses Azure REST API version 2023-08-01. * * Other available API versions: 2022-05-01-preview, 2022-08-01-preview, 2022-11-01-preview, 2023-02-01-preview, 2023-05-01-preview, 2023-08-01-preview, 2024-05-01-preview, 2024-11-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native sql [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getManagedInstanceLongTermRetentionPolicyOutput(args: GetManagedInstanceLongTermRetentionPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedInstanceLongTermRetentionPolicyResult>; export interface GetManagedInstanceLongTermRetentionPolicyOutputArgs { /** * The name of the database. */ databaseName: pulumi.Input<string>; /** * The name of the managed instance. */ managedInstanceName: pulumi.Input<string>; /** * The policy name. Should always be Default. */ policyName: pulumi.Input<string>; /** * The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. */ resourceGroupName: pulumi.Input<string>; }