@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.51 kB
TypeScript
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>;
}