You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Lists the endpoints associated to a given authentication token.
273
+
/// </summary>
274
+
/// <param name="token">The authentication token Id. This is obtained from <see cref="IdentityToken.Id"/></param>
275
+
/// <param name="identity">The cloud identity to use for this request. If not specified, the default identity for the current provider instance will be used.</param>
276
+
/// <returns>A collection of <see cref="ExtendedEndpoint"/> objects containing endpoint details.</returns>
277
+
/// <exception cref="ArgumentNullException">If <paramref name="token"/> is <c>null</c>.</exception>
278
+
/// <exception cref="ArgumentException">If <paramref name="token"/> is empty.</exception>
279
+
/// <exception cref="NotSupportedException">If the provider does not support the given <paramref name="identity"/> type.</exception>
280
+
/// <exception cref="InvalidOperationException">If <paramref name="identity"/> is <c>null</c> and no default identity is available for the provider.</exception>
281
+
/// <exception cref="ResponseException">If the authentication request failed or the token does not exist.</exception>
282
+
/// <seealso href="http://docs.openstack.org/api/openstack-identity-service/2.0/content/GET_listEndpointsForToken_v2.0_tokens__tokenId__endpoints_Token_Operations.html">List Token Endpoints (OpenStack Identity Service API v2.0 Reference)</seealso>
/// <exception cref="NotSupportedException">If the provider does not support the given <paramref name="identity"/> type.</exception>
719
722
/// <exception cref="InvalidOperationException">If <paramref name="identity"/> is <c>null</c> and no default identity is available for the provider.</exception>
720
723
/// <exception cref="ResponseException">If the authentication request failed.</exception>
0 commit comments