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
Copy file name to clipboardExpand all lines: src/corelib/Core/Providers/IIdentityProvider.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ public interface IIdentityProvider
50
50
/// <summary>
51
51
/// Lists global roles for a specified user. Excludes tenant roles.
52
52
/// </summary>
53
-
/// <param name="userId">The user's ID. The behavior is unspecified if this value is not obtained from <see cref="User.Id"/>.</param>
53
+
/// <param name="userId">The user's ID. This is obtained from <see cref="User.Id">User.Id</see>.</param>
54
54
/// <param name="identity">The cloud identity to use for this request. If not specified, the <see cref="DefaultIdentity"/> for the current provider instance will be used.</param>
55
55
/// <returns>A collection of <see cref="Role"/> objects describing the roles for the specified user.</returns>
56
56
/// <exception cref="ArgumentNullException">If <paramref name="userId"/> is <c>null</c>.</exception>
@@ -163,7 +163,7 @@ public interface IIdentityProvider
163
163
/// <summary>
164
164
/// Deletes the specified user from the account.
165
165
/// </summary>
166
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="User.Id"/> or <see cref="NewUser.Id"/>.</param>
166
+
/// <param name="userId">The user ID. This is obtained from <see cref="User.Id"/> or <see cref="NewUser.Id"/>.</param>
167
167
/// <param name="identity">The cloud identity to use for this request. If not specified, the <see cref="DefaultIdentity"/> for the current provider instance will be used.</param>
168
168
/// <returns><c>true</c> if the user was successfully deleted; otherwise, <c>false</c>.</returns>
169
169
/// <exception cref="ArgumentNullException">If <paramref name="userId"/> is <c>null</c>.</exception>
@@ -181,7 +181,7 @@ public interface IIdentityProvider
181
181
/// <summary>
182
182
/// Lists the credentials for the specified user.
183
183
/// </summary>
184
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="User.Id"/> or <see cref="NewUser.Id"/>.</param>
184
+
/// <param name="userId">The user ID. This is obtained from <see cref="User.Id"/> or <see cref="NewUser.Id"/>.</param>
185
185
/// <param name="identity">The cloud identity to use for this request. If not specified, the <see cref="DefaultIdentity"/> for the current provider instance will be used.</param>
186
186
/// <returns>List of <see cref="UserCredential"/> objects describing the credentials of the specified user.</returns>
187
187
/// <exception cref="ArgumentNullException">If <paramref name="userId"/> is <c>null</c>.</exception>
@@ -228,7 +228,7 @@ public interface IIdentityProvider
228
228
/// <summary>
229
229
/// Gets the specified user credential.
230
230
/// </summary>
231
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="User.Id"/> or <see cref="NewUser.Id"/>.</param>
231
+
/// <param name="userId">The user ID. This is obtained from <see cref="User.Id"/> or <see cref="NewUser.Id"/>.</param>
/// <param name="identity">The cloud identity to use for this request. If not specified, the <see cref="DefaultIdentity"/> for the current provider instance will be used.</param>
234
234
/// <returns>The <see cref="UserCredential"/> details for the specified credentials type.</returns>
Copy file name to clipboardExpand all lines: src/corelib/Core/Providers/INetworksProvider.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ public interface INetworksProvider
68
68
/// <summary>
69
69
/// Retrieve details for the specified network.
70
70
/// </summary>
71
-
/// <param name="networkId">ID of the network to retrieve. The behavior is unspecified if this is not obtained from <see cref="CloudNetwork.Id"/>.</param>
71
+
/// <param name="networkId">ID of the network to retrieve. This is obtained from <see cref="CloudNetwork.Id"/>.</param>
72
72
/// <param name="region">The region in which to execute this action. If not specified, the user's default region will be used.</param>
73
73
/// <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>
74
74
/// <returns>A <see cref="CloudNetwork"/> instance containing the network details.</returns>
@@ -91,7 +91,7 @@ public interface INetworksProvider
91
91
/// <summary>
92
92
/// Deletes the specified network. <remarks>You cannot delete an isolated network unless the network is not attached to any server.</remarks>
93
93
/// </summary>
94
-
/// <param name="networkId">ID of the network to delete. The behavior is unspecified if this is not obtained from <see cref="CloudNetwork.Id"/>.</param>
94
+
/// <param name="networkId">ID of the network to delete. This is obtained from <see cref="CloudNetwork.Id"/>.</param>
95
95
/// <param name="region">The region in which to execute this action. If not specified, the user's default region will be used.</param>
96
96
/// <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>
97
97
/// <returns><c>true</c> if the network was successfully deleted; otherwise, <c>false</c>.</returns>
Copy file name to clipboardExpand all lines: src/corelib/Providers/Rackspace/IExtendedCloudIdentityProvider.cs
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
33
33
/// <summary>
34
34
/// Lists all users for a given role.
35
35
/// </summary>
36
-
/// <param name="roleId">The role ID. The behavior is unspecified if this is not obtained from <see cref="Role.Id"/>.</param>
36
+
/// <param name="roleId">The role ID. This is obtained from <see cref="Role.Id">Role.Id</see>.</param>
37
37
/// <param name="enabled">Allows you to filter enabled or un-enabled users. If the value is <c>null</c>, a provider-specific default value is used.</param>
38
38
/// <param name="marker">The index of the last item in the previous list. Used for pagination. If the value is <c>null</c>, the list starts at the beginning.</param>
39
39
/// <param name="limit">Indicates the maximum number of items to return. Used for pagination. If the value is <c>null</c>, a provider-specific default value is used.</param>
@@ -67,7 +67,7 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
67
67
/// <summary>
68
68
/// Gets details about the specified role.
69
69
/// </summary>
70
-
/// <param name="roleId">The role ID. The behavior is unspecified if this is not obtained from <see cref="Role.Id">Role.Id</see>.</param>
70
+
/// <param name="roleId">The role ID. This is obtained from <see cref="Role.Id">Role.Id</see>.</param>
71
71
/// <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>
72
72
/// <returns>A <see cref="Role"/> containing the details of the role.</returns>
73
73
/// <exception cref="ArgumentNullException">If <paramref name="roleId"/> is <c>null</c>.</exception>
@@ -85,8 +85,8 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
85
85
/// <summary>
86
86
/// Adds the specified global role to the user.
87
87
/// </summary>
88
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
89
-
/// <param name="roleId">The role ID. The behavior is unspecified if this is not obtained from <see cref="Role.Id"/>.</param>
88
+
/// <param name="userId">The user ID. This is obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
89
+
/// <param name="roleId">The role ID. This is obtained from <see cref="Role.Id"/>.</param>
90
90
/// <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>
91
91
/// <returns><c>true</c> if the role was removed from the user; otherwise, <c>false</c>.</returns>
92
92
/// <exception cref="ArgumentNullException">
@@ -112,8 +112,8 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
112
112
/// <summary>
113
113
/// Deletes the specified global role from the user.
114
114
/// </summary>
115
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
116
-
/// <param name="roleId">The role ID. The behavior is unspecified if this is not obtained from <see cref="Role.Id"/>.</param>
115
+
/// <param name="userId">The user ID. This is obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
116
+
/// <param name="roleId">The role ID. This is obtained from <see cref="Role.Id"/>.</param>
117
117
/// <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>
118
118
/// <returns><c>true</c> if the role was removed from the user; otherwise, <c>false</c>.</returns>
119
119
/// <exception cref="ArgumentNullException">
@@ -145,7 +145,7 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
145
145
/// method, where the credentials are always specified in the form of an API key.
146
146
/// </remarks>
147
147
/// <returns>A <see cref="UserCredential"/> object containing the updated user information.</returns>
148
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
148
+
/// <param name="userId">The user ID. This is obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
149
149
/// <param name="apiKey">The new API key.</param>
150
150
/// <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>
151
151
/// <exception cref="ArgumentNullException">
@@ -176,7 +176,7 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
176
176
/// <see href="http://docs.openstack.org/api/openstack-identity-service/2.0/content/DELETE_deleteUserCredential_v2.0_users__userId__OS-KSADM_credentials__credential-type__.html">Delete User Credentials</see>
177
177
/// method, where the credentials are always specified in the form of an API key.
178
178
/// </remarks>
179
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
179
+
/// <param name="userId">The user ID. This is obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
180
180
/// <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>
181
181
/// <returns><c>true</c> if the credentials were removed from the user; otherwise, <c>false</c>.</returns>
182
182
/// <exception cref="ArgumentNullException">If <paramref name="userId"/> is <c>null</c>.</exception>
@@ -194,7 +194,7 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
194
194
/// <summary>
195
195
/// Sets the password for the specified user.
196
196
/// </summary>
197
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
197
+
/// <param name="userId">The user ID. This is obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
198
198
/// <param name="password">The new password.</param>
199
199
/// <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>
200
200
/// <returns><c>true</c> if the operation succeeded; otherwise, <c>false</c>.</returns>
@@ -250,7 +250,7 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
250
250
/// <summary>
251
251
/// Updates the username and password for the specified user.
252
252
/// </summary>
253
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
253
+
/// <param name="userId">The user ID. This is obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
254
254
/// <param name="username">The new username.</param>
255
255
/// <param name="password">The new password.</param>
256
256
/// <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>
@@ -321,7 +321,7 @@ public interface IExtendedCloudIdentityProvider : IIdentityProvider
321
321
/// <see href="http://docs.openstack.org/api/openstack-identity-service/2.0/content/POST_updateUserCredential_v2.0_users__userId__OS-KSADM_credentials__credential-type__.html">Update User Credentials</see>
322
322
/// method, where the credentials are always specified in the form of an API key.
323
323
/// </remarks>
324
-
/// <param name="userId">The user ID. The behavior is unspecified if this is not obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
324
+
/// <param name="userId">The user ID. This is obtained from <see cref="NewUser.Id"/> or <see cref="User.Id"/>.</param>
325
325
/// <param name="username">The new username.</param>
326
326
/// <param name="apiKey">The new API key.</param>
327
327
/// <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>
0 commit comments