Skip to main content

operator_api_plans

Creates, updates, deletes, gets or lists an operator_api_plans resource.

Overview

Nameoperator_api_plans
TypeResource
Idazure.programmableconnectivity.operator_api_plans

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, operatorApiPlanNameGet an OperatorApiPlan resource by name.
list_by_subscriptionselectsubscriptionId$filter, $top, $skipList OperatorApiPlan resources by subscription ID.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
operatorApiPlanNamestringAPC Gateway Plan Name.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$filterstringAn optional OData based filter expression to apply on the operation.
$skipinteger (int32)An optional query parameter which specifies the number of records to be skipped.
$topinteger (int32)An optional query parameter which specifies the maximum number of records to be returned.

SELECT examples

Get an OperatorApiPlan resource by name.

SELECT
properties
FROM azure.programmableconnectivity.operator_api_plans
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND operatorApiPlanName = '{{ operatorApiPlanName }}' -- required
;