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

169 lines (168 loc) 6.97 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * The configuration store along with all resource properties. The Configuration Store will have all information to begin utilizing it. * * Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2023-03-01. * * Other available API versions: 2023-03-01, 2023-08-01-preview, 2023-09-01-preview, 2024-06-01, 2024-06-15-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native appconfiguration [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare class ConfigurationStore extends pulumi.CustomResource { /** * Get an existing ConfigurationStore resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ConfigurationStore; /** * Returns true if the given object is an instance of ConfigurationStore. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ConfigurationStore; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * The creation date of configuration store. */ readonly creationDate: pulumi.Output<string>; /** * Property specifying the configuration of data plane proxy for Azure Resource Manager (ARM). */ readonly dataPlaneProxy: pulumi.Output<outputs.appconfiguration.DataPlaneProxyPropertiesResponse | undefined>; /** * Disables all authentication methods other than AAD authentication. */ readonly disableLocalAuth: pulumi.Output<boolean | undefined>; /** * Property specifying whether protection against purge is enabled for this configuration store. */ readonly enablePurgeProtection: pulumi.Output<boolean | undefined>; /** * The encryption settings of the configuration store. */ readonly encryption: pulumi.Output<outputs.appconfiguration.EncryptionPropertiesResponse | undefined>; /** * The DNS endpoint where the configuration store API will be available. */ readonly endpoint: pulumi.Output<string>; /** * The managed identity information, if configured. */ readonly identity: pulumi.Output<outputs.appconfiguration.ResourceIdentityResponse | undefined>; /** * The geo-location where the resource lives */ readonly location: pulumi.Output<string>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * The list of private endpoint connections that are set up for this resource. */ readonly privateEndpointConnections: pulumi.Output<outputs.appconfiguration.PrivateEndpointConnectionReferenceResponse[]>; /** * The provisioning state of the configuration store. */ readonly provisioningState: pulumi.Output<string>; /** * Control permission for data plane traffic coming from public networks while private endpoint is enabled. */ readonly publicNetworkAccess: pulumi.Output<string | undefined>; /** * The sku of the configuration store. */ readonly sku: pulumi.Output<outputs.appconfiguration.SkuResponse>; /** * The amount of time in days that the configuration store will be retained when it is soft deleted. */ readonly softDeleteRetentionInDays: pulumi.Output<number | undefined>; /** * Resource system metadata. */ readonly systemData: pulumi.Output<outputs.appconfiguration.SystemDataResponse>; /** * Resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * Create a ConfigurationStore resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ConfigurationStoreArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ConfigurationStore resource. */ export interface ConfigurationStoreArgs { /** * The name of the configuration store. */ configStoreName?: pulumi.Input<string>; /** * Indicates whether the configuration store need to be recovered. */ createMode?: pulumi.Input<enums.appconfiguration.CreateMode>; /** * Property specifying the configuration of data plane proxy for Azure Resource Manager (ARM). */ dataPlaneProxy?: pulumi.Input<inputs.appconfiguration.DataPlaneProxyPropertiesArgs>; /** * Disables all authentication methods other than AAD authentication. */ disableLocalAuth?: pulumi.Input<boolean>; /** * Property specifying whether protection against purge is enabled for this configuration store. */ enablePurgeProtection?: pulumi.Input<boolean>; /** * The encryption settings of the configuration store. */ encryption?: pulumi.Input<inputs.appconfiguration.EncryptionPropertiesArgs>; /** * The managed identity information, if configured. */ identity?: pulumi.Input<inputs.appconfiguration.ResourceIdentityArgs>; /** * The geo-location where the resource lives */ location?: pulumi.Input<string>; /** * Control permission for data plane traffic coming from public networks while private endpoint is enabled. */ publicNetworkAccess?: pulumi.Input<string | enums.appconfiguration.PublicNetworkAccess>; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: pulumi.Input<string>; /** * The sku of the configuration store. */ sku: pulumi.Input<inputs.appconfiguration.SkuArgs>; /** * The amount of time in days that the configuration store will be retained when it is soft deleted. */ softDeleteRetentionInDays?: pulumi.Input<number>; /** * Resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; }