@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.59 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get the full endpoint URL for an event subscription of a namespace topic.
*
* Uses Azure REST API version 2025-02-15.
*
* Other available API versions: 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 getNamespaceTopicEventSubscriptionFullUrl(args: GetNamespaceTopicEventSubscriptionFullUrlArgs, opts?: pulumi.InvokeOptions): Promise<GetNamespaceTopicEventSubscriptionFullUrlResult>;
export interface GetNamespaceTopicEventSubscriptionFullUrlArgs {
/**
* Name of the event subscription.
*/
eventSubscriptionName: string;
/**
* Name of the namespace.
*/
namespaceName: string;
/**
* The name of the resource group within the user's subscription.
*/
resourceGroupName: string;
/**
* Name of the namespace topic.
*/
topicName: string;
}
/**
* Full endpoint URL of an event subscription
*/
export interface GetNamespaceTopicEventSubscriptionFullUrlResult {
/**
* The URL that represents the endpoint of the destination of an event subscription.
*/
readonly endpointUrl?: string;
}
/**
* Get the full endpoint URL for an event subscription of a namespace topic.
*
* Uses Azure REST API version 2025-02-15.
*
* Other available API versions: 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 getNamespaceTopicEventSubscriptionFullUrlOutput(args: GetNamespaceTopicEventSubscriptionFullUrlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNamespaceTopicEventSubscriptionFullUrlResult>;
export interface GetNamespaceTopicEventSubscriptionFullUrlOutputArgs {
/**
* Name of the event subscription.
*/
eventSubscriptionName: pulumi.Input<string>;
/**
* Name of the namespace.
*/
namespaceName: pulumi.Input<string>;
/**
* The name of the resource group within the user's subscription.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of the namespace topic.
*/
topicName: pulumi.Input<string>;
}