@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Retrieves a network manager routing configuration.
*
* Uses Azure REST API version 2024-05-01.
*
* Other available API versions: 2024-03-01, 2024-07-01, 2024-09-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getNetworkManagerRoutingConfiguration(args: GetNetworkManagerRoutingConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkManagerRoutingConfigurationResult>;
export interface GetNetworkManagerRoutingConfigurationArgs {
/**
* The name of the network manager Routing Configuration.
*/
configurationName: string;
/**
* The name of the network manager.
*/
networkManagerName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Defines the routing configuration
*/
export interface GetNetworkManagerRoutingConfigurationResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* A description of the routing configuration.
*/
readonly description?: string;
/**
* A unique read-only string that changes whenever the resource is updated.
*/
readonly etag: string;
/**
* Resource ID.
*/
readonly id: string;
/**
* Resource name.
*/
readonly name: string;
/**
* The provisioning state of the resource.
*/
readonly provisioningState: string;
/**
* Unique identifier for this resource.
*/
readonly resourceGuid: string;
/**
* The system metadata related to this resource.
*/
readonly systemData: outputs.network.SystemDataResponse;
/**
* Resource type.
*/
readonly type: string;
}
/**
* Retrieves a network manager routing configuration.
*
* Uses Azure REST API version 2024-05-01.
*
* Other available API versions: 2024-03-01, 2024-07-01, 2024-09-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getNetworkManagerRoutingConfigurationOutput(args: GetNetworkManagerRoutingConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNetworkManagerRoutingConfigurationResult>;
export interface GetNetworkManagerRoutingConfigurationOutputArgs {
/**
* The name of the network manager Routing Configuration.
*/
configurationName: pulumi.Input<string>;
/**
* The name of the network manager.
*/
networkManagerName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}