AdminResetUserPasswordRequest
Namespace:
AWSSDK.CognitoIdentityProvider
We found 10 examples in language CSharp for this search.
You will see 22 fragments of code.
Other methods
Other methods
Project:AmazonAWS
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
/// <summary>
/// Marshaller the request object to the HTTP request.
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
public IRequest Marshall(AmazonWebServiceRequest input)
{
return this.Marshall((AdminResetUserPasswordRequest)input);
}
Project:awssdks
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
/// <summary>
/// Marshaller the request object to the HTTP request.
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
public IRequest Marshall(AmazonWebServiceRequest input)
{
return this.Marshall((AdminResetUserPasswordRequest)input);
}
Project:aws-sdk-net
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
/// <summary>
/// Marshaller the request object to the HTTP request.
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
public IRequest Marshall(AmazonWebServiceRequest input)
{
return this.Marshall((AdminResetUserPasswordRequest)input);
}
Project:myawskendra
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
/// <summary>
/// Marshaller the request object to the HTTP request.
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
public IRequest Marshall(AmazonWebServiceRequest input)
{
return this.Marshall((AdminResetUserPasswordRequest)input);
}
Project:aws-sdk-net
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
/// <summary>
/// Marshaller the request object to the HTTP request.
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
public IRequest Marshall(AmazonWebServiceRequest input)
{
return this.Marshall((AdminResetUserPasswordRequest)input);
}
Project:aws-sdk-net-xamarin
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
/// <summary>
/// Marshaller the request object to the HTTP request.
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
public IRequest Marshall(AmazonWebServiceRequest input)
{
return this.Marshall((AdminResetUserPasswordRequest)input);
}
Project:appi-simo-old
File:CognitoUserProvider.cs
Examples:1
public async Task AdminResetUserPassword(Guid key)
{
var request = new AdminResetUserPasswordRequest
{
Username = $"{key}",
UserPoolId = _cognito.UserPool.Id
};
await _provider.AdminResetUserPasswordAsync(request);
}
Project:aws-aspnet-cognito-identity-provider
File:CognitoUserStore.IUserCognitoStoreTests.cs
Examples:6
[Theory]
[InlineData("FORCE_CHANGE_PASSWORD", true)]
[InlineData("CONFIRMED", false)]
public async void Test_GivenAUserWithStatus_WhenIsPasswordChangeRequired_ThenResponseIsValid(string status, bool isPasswordChangeRequired)
{
var user = new CognitoUser("userID", "clientID", _cognitoPoolMock.Object, _cognitoClientMock.Object, null, status, null, null);
var output = await _store.IsPasswordChangeRequiredAsync(user, CancellationToken.None).ConfigureAwait(false);
Assert.Equal(isPasswordChangeRequired, output);
}
[Theory]
[InlineData("RESET_REQUIRED", true)]
[InlineData("CONFIRMED", false)]
public async void Test_GivenAUserWithStatus_WhenIsPasswordResetRequired_ThenResponseIsValid(string status, bool isPasswordResetRequired)
{
var user = new CognitoUser("userID", "clientID", _cognitoPoolMock.Object, _cognitoClientMock.Object, null, status, null, null);
var output = await _store.IsPasswordResetRequiredAsync(user, CancellationToken.None).ConfigureAwait(false);
Assert.Equal(isPasswordResetRequired, output);
}
[Fact]
public async void Test_GivenAUser_WhenResetPassword_ThenTheRequestIsSuccessful()
{
_cognitoClientMock.Setup(mock => mock.AdminResetUserPasswordAsync(It.IsAny<AdminResetUserPasswordRequest>(), It.IsAny<CancellationToken>())).Returns(Task.FromResult(new AdminResetUserPasswordResponse())).Verifiable();
var output = await _store.ResetPasswordAsync(_userMock.Object, CancellationToken.None).ConfigureAwait(false);
Assert.Equal(IdentityResult.Success, output);
_cognitoClientMock.Verify();
}
[Fact]
public async void Test_GivenAUser_WhenCreate_ThenTheUserGetsAddedToThePool()
{
var output = await _store.CreateAsync(_userMock.Object, "password", null, CancellationToken.None).ConfigureAwait(false);
Assert.Equal(IdentityResult.Success, output);
}
[Fact]
public async void Test_GivenAUser_WhenAdminConfirmSignUp_ThenTheRequestIsSuccessful()
{
_cognitoClientMock.Setup(mock => mock.AdminConfirmSignUpAsync(It.IsAny<AdminConfirmSignUpRequest>(), It.IsAny<CancellationToken>())).Returns(Task.FromResult(new AdminConfirmSignUpResponse())).Verifiable();
var output = await _store.AdminConfirmSignUpAsync(_userMock.Object, CancellationToken.None).ConfigureAwait(false);
Assert.Equal(IdentityResult.Success, output);
_cognitoClientMock.Verify();
}
[Fact]
public async void Test_GivenAUser_WhenGetUserAttributeVerificationCodeOtherThanEmailOrPhone_ThenThrowsArgumentException()
{
await Assert.ThrowsAsync<ArgumentException>(() => _store.GetUserAttributeVerificationCodeAsync(_userMock.Object, "UNKNOWN_ATTRIBUTE", CancellationToken.None)).ConfigureAwait(false);
}
Project:aws-sdk-net-xamarin
File:AdminResetUserPasswordRequest.cs
Examples:3
// Check to see if ClientMetadata property is set
internal bool IsSetClientMetadata()
{
return this._clientMetadata != null && this._clientMetadata.Count > 0;
}
// Check to see if Username property is set
internal bool IsSetUsername()
{
return this._username != null;
}
// Check to see if UserPoolId property is set
internal bool IsSetUserPoolId()
{
return this._userPoolId != null;
}
Project:AmazonAWS
File:AmazonCognitoIdentityProviderClient.cs
Examples:6
#endregion
#region Overrides
/// <summary>
/// Creates the signer for the service.
/// </summary>
protected override AbstractAWSSigner CreateSigner()
{
return new AWS4Signer();
}
#endregion
#region Dispose
/// <summary>
/// Disposes the service client.
/// </summary>
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
#endregion
#region AddCustomAttributes
internal AddCustomAttributesResponse AddCustomAttributes(AddCustomAttributesRequest request)
{
var marshaller = new AddCustomAttributesRequestMarshaller();
var unmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return Invoke<AddCustomAttributesRequest,AddCustomAttributesResponse>(request, marshaller, unmarshaller);
}
/// <summary>
/// Initiates the asynchronous execution of the AddCustomAttributes operation.
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the AddCustomAttributes operation.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
/// <returns>The task object representing the asynchronous operation.</returns>
public Task<AddCustomAttributesResponse> AddCustomAttributesAsync(AddCustomAttributesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var marshaller = new AddCustomAttributesRequestMarshaller();
var unmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return InvokeAsync<AddCustomAttributesRequest,AddCustomAttributesResponse>(request, marshaller,
unmarshaller, cancellationToken);
}
#endregion
#region AdminConfirmSignUp
internal AdminConfirmSignUpResponse AdminConfirmSignUp(AdminConfirmSignUpRequest request)
{
var marshaller = new AdminConfirmSignUpRequestMarshaller();
var unmarshaller = AdminConfirmSignUpResponseUnmarshaller.Instance;
return Invoke<AdminConfirmSignUpRequest,AdminConfirmSignUpResponse>(request, marshaller, unmarshaller);
}
/// <summary>
/// Initiates the asynchronous execution of the AdminConfirmSignUp operation.
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the AdminConfirmSignUp operation.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
/// <returns>The task object representing the asynchronous operation.</returns>
public Task<AdminConfirmSignUpResponse> AdminConfirmSignUpAsync(AdminConfirmSignUpRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var marshaller = new AdminConfirmSignUpRequestMarshaller();
var unmarshaller = AdminConfirmSignUpResponseUnmarshaller.Instance;
return InvokeAsync<AdminConfirmSignUpRequest,AdminConfirmSignUpResponse>(request, marshaller,
unmarshaller, cancellationToken);
}
Amazon.CognitoIdentityProvider.Model.AdminResetUserPasswordRequest : IAmazonWebServiceRequest
Constructors :
public AdminResetUserPasswordRequest()Methods :
public Dictionary<StringString> get_ClientMetadata()public Void set_ClientMetadata(Dictionary<StringString> value = )
public String get_Username()
public Void set_Username(String value = )
public String get_UserPoolId()
public Void set_UserPoolId(String value = )
public Type GetType()
public String ToString()
public Boolean Equals(Object obj = )
public Int32 GetHashCode()