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

84 lines (83 loc) 2.83 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the properties of the specified replica. * * 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 getReplica(args: GetReplicaArgs, opts?: pulumi.InvokeOptions): Promise<GetReplicaResult>; export interface GetReplicaArgs { /** * The name of the configuration store. */ configStoreName: string; /** * The name of the replica. */ replicaName: string; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: string; } /** * The replica resource. */ export interface GetReplicaResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The URI of the replica where the replica API will be available. */ readonly endpoint: string; /** * The resource ID. */ readonly id: string; /** * The location of the replica. */ readonly location?: string; /** * The name of the replica. */ readonly name: string; /** * The provisioning state of the replica. */ readonly provisioningState: string; /** * Resource system metadata. */ readonly systemData: outputs.appconfiguration.SystemDataResponse; /** * The type of the resource. */ readonly type: string; } /** * Gets the properties of the specified replica. * * 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 getReplicaOutput(args: GetReplicaOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetReplicaResult>; export interface GetReplicaOutputArgs { /** * The name of the configuration store. */ configStoreName: pulumi.Input<string>; /** * The name of the replica. */ replicaName: pulumi.Input<string>; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: pulumi.Input<string>; }