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

122 lines (121 loc) 4.85 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the properties of the specified configuration store. * * Uses Azure REST API version 2024-05-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 function getConfigurationStore(args: GetConfigurationStoreArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationStoreResult>; export interface GetConfigurationStoreArgs { /** * The name of the configuration store. */ configStoreName: string; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: string; } /** * The configuration store along with all resource properties. The Configuration Store will have all information to begin utilizing it. */ export interface GetConfigurationStoreResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The creation date of configuration store. */ readonly creationDate: string; /** * Property specifying the configuration of data plane proxy for Azure Resource Manager (ARM). */ readonly dataPlaneProxy?: outputs.appconfiguration.DataPlaneProxyPropertiesResponse; /** * Disables all authentication methods other than AAD authentication. */ readonly disableLocalAuth?: boolean; /** * Property specifying whether protection against purge is enabled for this configuration store. */ readonly enablePurgeProtection?: boolean; /** * The encryption settings of the configuration store. */ readonly encryption?: outputs.appconfiguration.EncryptionPropertiesResponse; /** * The DNS endpoint where the configuration store API will be available. */ readonly endpoint: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The managed identity information, if configured. */ readonly identity?: outputs.appconfiguration.ResourceIdentityResponse; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * The list of private endpoint connections that are set up for this resource. */ readonly privateEndpointConnections: outputs.appconfiguration.PrivateEndpointConnectionReferenceResponse[]; /** * The provisioning state of the configuration store. */ readonly provisioningState: string; /** * Control permission for data plane traffic coming from public networks while private endpoint is enabled. */ readonly publicNetworkAccess?: string; /** * The sku of the configuration store. */ readonly sku: outputs.appconfiguration.SkuResponse; /** * The amount of time in days that the configuration store will be retained when it is soft deleted. */ readonly softDeleteRetentionInDays?: number; /** * Resource system metadata. */ readonly systemData: outputs.appconfiguration.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Gets the properties of the specified configuration store. * * Uses Azure REST API version 2024-05-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 function getConfigurationStoreOutput(args: GetConfigurationStoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationStoreResult>; export interface GetConfigurationStoreOutputArgs { /** * The name of the configuration store. */ configStoreName: pulumi.Input<string>; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: pulumi.Input<string>; }