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

48 lines (47 loc) 1.53 kB
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>; }