@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.53 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets all the SIM groups assigned to a mobile network.
*
* Uses Azure REST API version 2024-04-01.
*/
export declare function listMobileNetworkSimGroups(args: ListMobileNetworkSimGroupsArgs, opts?: pulumi.InvokeOptions): Promise<ListMobileNetworkSimGroupsResult>;
export interface ListMobileNetworkSimGroupsArgs {
/**
* The name of the mobile network.
*/
mobileNetworkName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Response for list SIM groups API service call.
*/
export interface ListMobileNetworkSimGroupsResult {
/**
* The URL to get the next set of results.
*/
readonly nextLink: string;
/**
* A list of SIM groups in a resource group.
*/
readonly value?: outputs.mobilenetwork.SimGroupResponse[];
}
/**
* Gets all the SIM groups assigned to a mobile network.
*
* Uses Azure REST API version 2024-04-01.
*/
export declare function listMobileNetworkSimGroupsOutput(args: ListMobileNetworkSimGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListMobileNetworkSimGroupsResult>;
export interface ListMobileNetworkSimGroupsOutputArgs {
/**
* The name of the mobile network.
*/
mobileNetworkName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}