import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Azure SignalR service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.signalr.getService({ * name: "test-signalr", * resourceGroupName: "signalr-resource-group", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.SignalRService` - 2024-03-01 */ export declare function getService(args: GetServiceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getService. */ export interface GetServiceArgs { /** * Specifies the name of the SignalR service. */ name: string; /** * Specifies the name of the resource group the SignalR service is located in. */ resourceGroupName: string; } /** * A collection of values returned by getService. */ export interface GetServiceResult { /** * Is aad auth enabled for this SignalR service? */ readonly aadAuthEnabled: boolean; /** * The FQDN of the SignalR service. */ readonly hostname: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The publicly accessible IP of the SignalR service. */ readonly ipAddress: string; /** * Is local auth enable for this SignalR serviced? */ readonly localAuthEnabled: boolean; /** * Specifies the supported Azure location where the SignalR service exists. */ readonly location: string; readonly name: string; /** * The primary access key of the SignalR service. */ readonly primaryAccessKey: string; /** * The primary connection string of the SignalR service. */ readonly primaryConnectionString: string; /** * Is public network access enabled for this SignalR service? */ readonly publicNetworkAccessEnabled: boolean; /** * The publicly accessible port of the SignalR service which is designed for browser/client use. */ readonly publicPort: number; readonly resourceGroupName: string; /** * The secondary access key of the SignalR service. */ readonly secondaryAccessKey: string; /** * The secondary connection string of the SignalR service. */ readonly secondaryConnectionString: string; /** * The publicly accessible port of the SignalR service which is designed for customer server side use. */ readonly serverPort: number; /** * The serverless connection timeout of this SignalR service. */ readonly serverlessConnectionTimeoutInSeconds: number; readonly tags: { [key: string]: string; }; /** * Is tls client cert enabled for this SignalR service? */ readonly tlsClientCertEnabled: boolean; } /** * Use this data source to access information about an existing Azure SignalR service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.signalr.getService({ * name: "test-signalr", * resourceGroupName: "signalr-resource-group", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.SignalRService` - 2024-03-01 */ export declare function getServiceOutput(args: GetServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getService. */ export interface GetServiceOutputArgs { /** * Specifies the name of the SignalR service. */ name: pulumi.Input; /** * Specifies the name of the resource group the SignalR service is located in. */ resourceGroupName: pulumi.Input; }