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

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders
@desc Lists a collection of Identity Provider configured in the specified service instance.
@returns(200) Lists a collection of Identity Providers.

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

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders/{identityProviderName}
@desc Gets the configuration details of the identity Provider configured in specified service instance.
@returns(200) The response body contains the specified IdentityProvider entity configuration details.

@endpoint PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders/{identityProviderName}
@desc Creates or Updates the IdentityProvider configuration.
@required {parameters: any # Create parameters.}
@returns(200) The existing Identity Provider was successfully updated.
@returns(201) IdentityProvider configuration were successfully created.

@endpoint PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders/{identityProviderName}
@desc Updates an existing IdentityProvider configuration.
@required {parameters: any # Update parameters.}
@returns(204) The existing identity provider configuration was successfully updated.

@endpoint DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders/{identityProviderName}
@desc Deletes the specified identity provider configuration.
@returns(200) The identity provider configuration was successfully deleted.
@returns(204) The identity provider configuration was successfully deleted.

@end
