@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.59 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets a network manager routing configuration rule collection.
*
* Uses Azure REST API version 2024-05-01.
*
* Other available API versions: 2024-03-01, 2024-07-01, 2024-09-01-preview, 2024-10-01. 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 getRoutingRuleCollection(args: GetRoutingRuleCollectionArgs, opts?: pulumi.InvokeOptions): Promise<GetRoutingRuleCollectionResult>;
export interface GetRoutingRuleCollectionArgs {
/**
* 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;
/**
* The name of the network manager routing Configuration rule collection.
*/
ruleCollectionName: string;
}
/**
* Defines the routing rule collection.
*/
export interface GetRoutingRuleCollectionResult {
/**
* Groups for configuration
*/
readonly appliesTo: outputs.network.NetworkManagerRoutingGroupItemResponse[];
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* A description of the routing rule collection.
*/
readonly description?: string;
/**
* Determines whether BGP route propagation is enabled. Defaults to true.
*/
readonly disableBgpRoutePropagation?: 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;
}
/**
* Gets a network manager routing configuration rule collection.
*
* Uses Azure REST API version 2024-05-01.
*
* Other available API versions: 2024-03-01, 2024-07-01, 2024-09-01-preview, 2024-10-01. 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 getRoutingRuleCollectionOutput(args: GetRoutingRuleCollectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRoutingRuleCollectionResult>;
export interface GetRoutingRuleCollectionOutputArgs {
/**
* 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>;
/**
* The name of the network manager routing Configuration rule collection.
*/
ruleCollectionName: pulumi.Input<string>;
}