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.51 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists the IDs of all provisioned SIMs in a mobile network * * Uses Azure REST API version 2022-04-01-preview. */ export declare function listMobileNetworkSimIds(args: ListMobileNetworkSimIdsArgs, opts?: pulumi.InvokeOptions): Promise<ListMobileNetworkSimIdsResult>; export interface ListMobileNetworkSimIdsArgs { /** * 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 IDs API service call. */ export interface ListMobileNetworkSimIdsResult { /** * The URL to get the next set of results. */ readonly nextLink: string; /** * A list of SIM IDs. */ readonly value?: outputs.mobilenetwork.SubResourceResponse[]; } /** * Lists the IDs of all provisioned SIMs in a mobile network * * Uses Azure REST API version 2022-04-01-preview. */ export declare function listMobileNetworkSimIdsOutput(args: ListMobileNetworkSimIdsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListMobileNetworkSimIdsResult>; export interface ListMobileNetworkSimIdsOutputArgs { /** * 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>; }