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

94 lines (93 loc) 2.78 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * A FluidRelay Server. * * Uses Azure REST API version 2022-06-01. */ export declare function getFluidRelayServer(args: GetFluidRelayServerArgs, opts?: pulumi.InvokeOptions): Promise<GetFluidRelayServerResult>; export interface GetFluidRelayServerArgs { /** * The Fluid Relay server resource name. */ fluidRelayServerName: string; /** * The resource group containing the resource. */ resourceGroup: string; } /** * A FluidRelay Server. */ export interface GetFluidRelayServerResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * All encryption configuration for a resource. */ readonly encryption?: outputs.fluidrelay.EncryptionPropertiesResponse; /** * The Fluid Relay Service endpoints for this server. */ readonly fluidRelayEndpoints: outputs.fluidrelay.FluidRelayEndpointsResponse; /** * The Fluid tenantId for this server */ readonly frsTenantId: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The type of identity used for the resource. */ readonly identity?: outputs.fluidrelay.IdentityResponse; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * Provision states for FluidRelay RP */ readonly provisioningState?: string; /** * Sku of the storage associated with the resource */ readonly storagesku?: string; /** * System meta data for this resource, including creation and modification information. */ readonly systemData: outputs.fluidrelay.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; } /** * A FluidRelay Server. * * Uses Azure REST API version 2022-06-01. */ export declare function getFluidRelayServerOutput(args: GetFluidRelayServerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFluidRelayServerResult>; export interface GetFluidRelayServerOutputArgs { /** * The Fluid Relay server resource name. */ fluidRelayServerName: pulumi.Input<string>; /** * The resource group containing the resource. */ resourceGroup: pulumi.Input<string>; }