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

114 lines (113 loc) 4.36 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get an Operator API Connection. * * Uses Azure REST API version 2024-01-15-preview. * * Other available API versions: 2025-03-30-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native programmableconnectivity [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getOperatorApiConnection(args: GetOperatorApiConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetOperatorApiConnectionResult>; export interface GetOperatorApiConnectionArgs { /** * Azure Programmable Connectivity (APC) Operator API Connection Name. */ operatorApiConnectionName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * A Programmable Connectivity Operator API Connection resource */ export interface GetOperatorApiConnectionResult { /** * Type of the account the user has with the Operator's Network API infrastructure. AzureManaged | UserManaged. */ readonly accountType: string; /** * Application ID of the App Developer that is registered with the Operator in a specific country/region. */ readonly appId?: string; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The Network API for the current operator in the country/region provided in the linked Operator API Plan. */ readonly camaraApiName: string; /** * Details about the Application that would use the Operator's Network APIs. */ readonly configuredApplication?: outputs.programmableconnectivity.ApplicationPropertiesResponse; /** * Reference to the APC Gateway resource ID. */ readonly gatewayId: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * Reference to the Operator API Plan Resource ID. */ readonly operatorApiPlanId: string; /** * Name of the Operator in the linked Operator API Plan belongs to. */ readonly operatorName: string; /** * The status of the last operation. */ readonly provisioningState: string; /** * Details about the SaaS offer purchased from the marketplace. */ readonly saasProperties?: outputs.programmableconnectivity.SaasPropertiesResponse; /** * The status of the OperatorApiConnection resource. */ readonly status: outputs.programmableconnectivity.StatusResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.programmableconnectivity.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Get an Operator API Connection. * * Uses Azure REST API version 2024-01-15-preview. * * Other available API versions: 2025-03-30-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native programmableconnectivity [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getOperatorApiConnectionOutput(args: GetOperatorApiConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOperatorApiConnectionResult>; export interface GetOperatorApiConnectionOutputArgs { /** * Azure Programmable Connectivity (APC) Operator API Connection Name. */ operatorApiConnectionName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }