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

55 lines (54 loc) 2.28 kB
import * as pulumi from "@pulumi/pulumi"; /** * Get the full endpoint URL of a partner destination channel. * * Uses Azure REST API version 2025-02-15. * * Other available API versions: 2022-06-15, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native eventgrid [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getChannelFullUrl(args: GetChannelFullUrlArgs, opts?: pulumi.InvokeOptions): Promise<GetChannelFullUrlResult>; export interface GetChannelFullUrlArgs { /** * Name of the Channel. */ channelName: string; /** * Name of the partner namespace. */ partnerNamespaceName: string; /** * The name of the resource group within the partners subscription. */ resourceGroupName: string; } /** * Full endpoint URL of an event subscription */ export interface GetChannelFullUrlResult { /** * The URL that represents the endpoint of the destination of an event subscription. */ readonly endpointUrl?: string; } /** * Get the full endpoint URL of a partner destination channel. * * Uses Azure REST API version 2025-02-15. * * Other available API versions: 2022-06-15, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native eventgrid [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getChannelFullUrlOutput(args: GetChannelFullUrlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetChannelFullUrlResult>; export interface GetChannelFullUrlOutputArgs { /** * Name of the Channel. */ channelName: pulumi.Input<string>; /** * Name of the partner namespace. */ partnerNamespaceName: pulumi.Input<string>; /** * The name of the resource group within the partners subscription. */ resourceGroupName: pulumi.Input<string>; }