@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api ApiManagementClient
@base https://management.azure.com
@version 2019-12-01-preview
@auth OAuth2
@endpoints 7
@toc subscriptions(7)

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/openidConnectProviders
@desc Lists of all the OpenId Connect Providers.
@optional {$filter: any # |   Field     |     Usage     |     Supported operators     |     Supported functions     ||-------------|-------------|-------------|-------------|| name | filter | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith | | displayName | filter | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |}
@returns(200) Lists of all the OpenId Connect Providers.

@endpoint HEAD /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/openidConnectProviders/{opid}
@desc Gets the entity state (Etag) version of the openIdConnectProvider specified by its identifier.
@returns(200) Specified openidConnectProvider entity exists and current entity state version is present in the ETag header.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/openidConnectProviders/{opid}
@desc Gets specific OpenID Connect Provider.
@returns(200) The response body contains the specified OpenId Connect Provider entity.

@endpoint PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/openidConnectProviders/{opid}
@desc Creates or updates the OpenID Connect Provider.
@required {parameters: any # Create parameters.}
@returns(200) OpenIdConnect Provider was successfully updated.
@returns(201) OpenIdConnect Provider was successfully created.

@endpoint PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/openidConnectProviders/{opid}
@desc Updates the specific OpenID Connect Provider.
@required {parameters: any # Update parameters.}
@returns(204) OpenId Connect Provider was successfully updated.

@endpoint DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/openidConnectProviders/{opid}
@desc Deletes specific OpenID Connect Provider of the API Management service instance.
@returns(200) OpenId Connect Provider was successfully deleted.
@returns(204) OpenId Connect Provider was successfully deleted.

@endpoint POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/openidConnectProviders/{opid}/listSecrets
@desc Gets the client secret details of the OpenID Connect Provider.
@returns(200) The response body contains the client secret.

@end
