RetrieveTapeRecoveryPointRequestMarshaller
Namespace:
AWSSDK.StorageGateway
We found 10 examples in language CSharp for this search.
You will see 30 fragments of code.
Other methods
Other methods
Project:aws-sdk-net
File:RetrieveTapeRecoveryPointRequestMarshaller.cs
Examples:1
internal static RetrieveTapeRecoveryPointRequestMarshaller GetInstance()
{
return _instance;
}
Project:awssdks
File:RetrieveTapeRecoveryPointRequestMarshaller.cs
Examples:1
internal static RetrieveTapeRecoveryPointRequestMarshaller GetInstance()
{
return _instance;
}
Project:aws-sdk-net-xamarin
File:RetrieveTapeRecoveryPointRequestMarshaller.cs
Examples:1
internal static RetrieveTapeRecoveryPointRequestMarshaller GetInstance()
{
return _instance;
}
Project:aws-sdk-net
File:RetrieveTapeRecoveryPointRequestMarshaller.cs
Examples:1
internal static RetrieveTapeRecoveryPointRequestMarshaller GetInstance()
{
return _instance;
}
Project:myawskendra
File:RetrieveTapeRecoveryPointRequestMarshaller.cs
Examples:1
internal static RetrieveTapeRecoveryPointRequestMarshaller GetInstance()
{
return _instance;
}
Project:aws-sdk-net
File:RetrieveTapeRecoveryPointRequestMarshaller.cs
Examples:1
internal static RetrieveTapeRecoveryPointRequestMarshaller GetInstance()
{
return _instance;
}
Project:AmazonAWS
File:AmazonStorageGatewayClient.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 ActivateGateway
/// <summary>
/// Activates the gateway you previously deployed on your host. For more information,
/// see <a href="http://docs.aws.amazon.com/storagegateway/latest/userguide/GettingStartedActivateGateway-common.html">
/// Activate the AWS Storage Gateway</a>. In the activation process, you specify information
/// such as the you want to use for storing snapshots, the time zone for scheduled snapshots
/// the gateway snapshot schedule window, an activation key, and a name for your gateway.
/// The activation process also associates your gateway with your account; for more information,
/// see <a>UpdateGatewayInformation</a>.
///
/// <note>
/// <para>
/// You must turn on the gateway VM before you can activate your gateway.
/// </para>
/// </note>
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the ActivateGateway service method.</param>
///
/// <returns>The response from the ActivateGateway service method, as returned by StorageGateway.</returns>
/// <exception cref="Amazon.StorageGateway.Model.InternalServerErrorException">
/// An internal server error has occurred during the request. For more information, see
/// the error and message fields.
/// </exception>
/// <exception cref="Amazon.StorageGateway.Model.InvalidGatewayRequestException">
/// An exception occurred because an invalid gateway request was issued to the service.
/// For more information, see the error and message fields.
/// </exception>
public ActivateGatewayResponse ActivateGateway(ActivateGatewayRequest request)
{
var marshaller = new ActivateGatewayRequestMarshaller();
var unmarshaller = ActivateGatewayResponseUnmarshaller.Instance;
return Invoke<ActivateGatewayRequest,ActivateGatewayResponse>(request, marshaller, unmarshaller);
}
/// <summary>
/// Initiates the asynchronous execution of the ActivateGateway operation.
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the ActivateGateway 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<ActivateGatewayResponse> ActivateGatewayAsync(ActivateGatewayRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var marshaller = new ActivateGatewayRequestMarshaller();
var unmarshaller = ActivateGatewayResponseUnmarshaller.Instance;
return InvokeAsync<ActivateGatewayRequest,ActivateGatewayResponse>(request, marshaller,
unmarshaller, cancellationToken);
}
#endregion
#region AddCache
/// <summary>
/// Configures one or more gateway local disks as cache for a cached-volume gateway. This
/// operation is supported only for the gateway-cached volume architecture (see <a href="http://docs.aws.amazon.com/storagegateway/latest/userguide/StorageGatewayConcepts.html">Storage
/// Gateway Concepts</a>).
///
///
/// <para>
/// In the request, you specify the gateway Amazon Resource Name (ARN) to which you want
/// to add cache, and one or more disk IDs that you want to configure as cache.
/// </para>
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AddCache service method.</param>
///
/// <returns>The response from the AddCache service method, as returned by StorageGateway.</returns>
/// <exception cref="Amazon.StorageGateway.Model.InternalServerErrorException">
/// An internal server error has occurred during the request. For more information, see
/// the error and message fields.
/// </exception>
/// <exception cref="Amazon.StorageGateway.Model.InvalidGatewayRequestException">
/// An exception occurred because an invalid gateway request was issued to the service.
/// For more information, see the error and message fields.
/// </exception>
public AddCacheResponse AddCache(AddCacheRequest request)
{
var marshaller = new AddCacheRequestMarshaller();
var unmarshaller = AddCacheResponseUnmarshaller.Instance;
return Invoke<AddCacheRequest,AddCacheResponse>(request, marshaller, unmarshaller);
}
/// <summary>
/// Initiates the asynchronous execution of the AddCache operation.
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the AddCache 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<AddCacheResponse> AddCacheAsync(AddCacheRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var marshaller = new AddCacheRequestMarshaller();
var unmarshaller = AddCacheResponseUnmarshaller.Instance;
return InvokeAsync<AddCacheRequest,AddCacheResponse>(request, marshaller,
unmarshaller, cancellationToken);
}
Project:myawskendra
File:StorageGatewayMarshallingTests.cs
Examples:6
[TestMethod]
[TestCategory("UnitTest")]
[TestCategory("Json")]
[TestCategory("StorageGateway")]
public void ActivateGatewayMarshallTest()
{
var request = InstantiateClassGenerator.Execute<ActivateGatewayRequest>();
var marshaller = new ActivateGatewayRequestMarshaller();
var internalRequest = marshaller.Marshall(request);
var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content);
Comparer.CompareObjectToJson<ActivateGatewayRequest>(request,jsonRequest);
var webResponse = new WebResponseData
{
Headers = {
{"x-amzn-RequestId", Guid.NewGuid().ToString()},
{"x-amz-crc32","0"}
}
};
var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("ActivateGateway").ResponseStructure).Execute();
webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString());
UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse);
var response = ActivateGatewayResponseUnmarshaller.Instance.Unmarshall(context)
as ActivateGatewayResponse;
InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
}
[TestMethod]
[TestCategory("UnitTest")]
[TestCategory("Json")]
[TestCategory("StorageGateway")]
public void AddCacheMarshallTest()
{
var request = InstantiateClassGenerator.Execute<AddCacheRequest>();
var marshaller = new AddCacheRequestMarshaller();
var internalRequest = marshaller.Marshall(request);
var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content);
Comparer.CompareObjectToJson<AddCacheRequest>(request,jsonRequest);
var webResponse = new WebResponseData
{
Headers = {
{"x-amzn-RequestId", Guid.NewGuid().ToString()},
{"x-amz-crc32","0"}
}
};
var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("AddCache").ResponseStructure).Execute();
webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString());
UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse);
var response = AddCacheResponseUnmarshaller.Instance.Unmarshall(context)
as AddCacheResponse;
InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
}
[TestMethod]
[TestCategory("UnitTest")]
[TestCategory("Json")]
[TestCategory("StorageGateway")]
public void AddTagsToResourceMarshallTest()
{
var request = InstantiateClassGenerator.Execute<AddTagsToResourceRequest>();
var marshaller = new AddTagsToResourceRequestMarshaller();
var internalRequest = marshaller.Marshall(request);
var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content);
Comparer.CompareObjectToJson<AddTagsToResourceRequest>(request,jsonRequest);
var webResponse = new WebResponseData
{
Headers = {
{"x-amzn-RequestId", Guid.NewGuid().ToString()},
{"x-amz-crc32","0"}
}
};
var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("AddTagsToResource").ResponseStructure).Execute();
webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString());
UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse);
var response = AddTagsToResourceResponseUnmarshaller.Instance.Unmarshall(context)
as AddTagsToResourceResponse;
InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
}
[TestMethod]
[TestCategory("UnitTest")]
[TestCategory("Json")]
[TestCategory("StorageGateway")]
public void AddUploadBufferMarshallTest()
{
var request = InstantiateClassGenerator.Execute<AddUploadBufferRequest>();
var marshaller = new AddUploadBufferRequestMarshaller();
var internalRequest = marshaller.Marshall(request);
var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content);
Comparer.CompareObjectToJson<AddUploadBufferRequest>(request,jsonRequest);
var webResponse = new WebResponseData
{
Headers = {
{"x-amzn-RequestId", Guid.NewGuid().ToString()},
{"x-amz-crc32","0"}
}
};
var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("AddUploadBuffer").ResponseStructure).Execute();
webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString());
UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse);
var response = AddUploadBufferResponseUnmarshaller.Instance.Unmarshall(context)
as AddUploadBufferResponse;
InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
}
[TestMethod]
[TestCategory("UnitTest")]
[TestCategory("Json")]
[TestCategory("StorageGateway")]
public void AddWorkingStorageMarshallTest()
{
var request = InstantiateClassGenerator.Execute<AddWorkingStorageRequest>();
var marshaller = new AddWorkingStorageRequestMarshaller();
var internalRequest = marshaller.Marshall(request);
var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content);
Comparer.CompareObjectToJson<AddWorkingStorageRequest>(request,jsonRequest);
var webResponse = new WebResponseData
{
Headers = {
{"x-amzn-RequestId", Guid.NewGuid().ToString()},
{"x-amz-crc32","0"}
}
};
var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("AddWorkingStorage").ResponseStructure).Execute();
webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString());
UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse);
var response = AddWorkingStorageResponseUnmarshaller.Instance.Unmarshall(context)
as AddWorkingStorageResponse;
InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
}
[TestMethod]
[TestCategory("UnitTest")]
[TestCategory("Json")]
[TestCategory("StorageGateway")]
public void AssignTapePoolMarshallTest()
{
var request = InstantiateClassGenerator.Execute<AssignTapePoolRequest>();
var marshaller = new AssignTapePoolRequestMarshaller();
var internalRequest = marshaller.Marshall(request);
var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content);
Comparer.CompareObjectToJson<AssignTapePoolRequest>(request,jsonRequest);
var webResponse = new WebResponseData
{
Headers = {
{"x-amzn-RequestId", Guid.NewGuid().ToString()},
{"x-amz-crc32","0"}
}
};
var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("AssignTapePool").ResponseStructure).Execute();
webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString());
UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse);
var response = AssignTapePoolResponseUnmarshaller.Instance.Unmarshall(context)
as AssignTapePoolResponse;
InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
}
Project:awsNaked
File:AmazonStorageGatewayClient.cs
Examples:6
#region Dispose
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
#endregion
/// <summary>
/// <para>This operation activates the gateway you previously deployed on your host. For more information, see <a href="http://docs.aws.amazon.com/storagegateway/latest/userguide/DownloadAndDeploy.html">Downloading and Deploying AWS Storage Gateway
/// VM</a> . In the activation process you specify information such as the region you want to use for storing snapshots, the time zone for
/// scheduled snapshots and the gateway schedule window, an activation key, and a name for your gateway. The activation process also associates
/// your gateway with your account (see UpdateGatewayInformation).</para> <para><b>NOTE:</b>You must power on the gateway VM before you can
/// activate your gateway.</para>
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the ActivateGateway service method on
/// AmazonStorageGateway.</param>
///
/// <returns>The response from the ActivateGateway service method, as returned by AmazonStorageGateway.</returns>
///
/// <exception cref="T:Amazon.StorageGateway.Model.InternalServerErrorException" />
/// <exception cref="T:Amazon.StorageGateway.Model.InvalidGatewayRequestException" />
public ActivateGatewayResponse ActivateGateway(ActivateGatewayRequest request)
{
var task = ActivateGatewayAsync(request);
try
{
return task.Result;
}
catch(AggregateException e)
{
ExceptionDispatchInfo.Capture(e.InnerException).Throw();
return null;
}
}
/// <summary>
/// Initiates the asynchronous execution of the ActivateGateway operation.
/// <seealso cref="Amazon.StorageGateway.IAmazonStorageGateway.ActivateGateway"/>
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the ActivateGateway 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<ActivateGatewayResponse> ActivateGatewayAsync(ActivateGatewayRequest request, CancellationToken cancellationToken = default(CancellationToken))
{
var marshaller = new ActivateGatewayRequestMarshaller();
var unmarshaller = ActivateGatewayResponseUnmarshaller.GetInstance();
return Invoke<IRequest, ActivateGatewayRequest, ActivateGatewayResponse>(request, marshaller, unmarshaller, signer, cancellationToken);
}
/// <summary>
/// <para>This operation configures one or more gateway local disks as cache for a cached-volume gateway. This operation is supported only for
/// the gateway-cached volume architecture (see <a href="http://docs.aws.amazon.com/storagegateway/latest/userguide/StorageGatewayConcepts.html">Storage Gateway Concepts</a> ).</para> <para>In the request, you specify the gateway Amazon Resource Name (ARN) to which you want to add
/// cache, and one or more disk IDs that you want to configure as cache. </para>
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the AddCache service method on AmazonStorageGateway.</param>
///
/// <returns>The response from the AddCache service method, as returned by AmazonStorageGateway.</returns>
///
/// <exception cref="T:Amazon.StorageGateway.Model.InternalServerErrorException" />
/// <exception cref="T:Amazon.StorageGateway.Model.InvalidGatewayRequestException" />
public AddCacheResponse AddCache(AddCacheRequest request)
{
var task = AddCacheAsync(request);
try
{
return task.Result;
}
catch(AggregateException e)
{
ExceptionDispatchInfo.Capture(e.InnerException).Throw();
return null;
}
}
/// <summary>
/// Initiates the asynchronous execution of the AddCache operation.
/// <seealso cref="Amazon.StorageGateway.IAmazonStorageGateway.AddCache"/>
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the AddCache 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<AddCacheResponse> AddCacheAsync(AddCacheRequest request, CancellationToken cancellationToken = default(CancellationToken))
{
var marshaller = new AddCacheRequestMarshaller();
var unmarshaller = AddCacheResponseUnmarshaller.GetInstance();
return Invoke<IRequest, AddCacheRequest, AddCacheResponse>(request, marshaller, unmarshaller, signer, cancellationToken);
}
/// <summary>
/// <para>This operation configures one or more gateway local disks as upload buffer for a specified gateway. This operation is supported for
/// both the gateway-stored and gateway-cached volume architectures. </para> <para> In the request, you specify the gateway Amazon Resource Name
/// (ARN) to which you want to add upload buffer, and one or more disk IDs that you want to configure as upload buffer.</para>
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the AddUploadBuffer service method on
/// AmazonStorageGateway.</param>
///
/// <returns>The response from the AddUploadBuffer service method, as returned by AmazonStorageGateway.</returns>
///
/// <exception cref="T:Amazon.StorageGateway.Model.InternalServerErrorException" />
/// <exception cref="T:Amazon.StorageGateway.Model.InvalidGatewayRequestException" />
public AddUploadBufferResponse AddUploadBuffer(AddUploadBufferRequest request)
{
var task = AddUploadBufferAsync(request);
try
{
return task.Result;
}
catch(AggregateException e)
{
ExceptionDispatchInfo.Capture(e.InnerException).Throw();
return null;
}
}
Project:AmazonAWS
File:AmazonStorageGatewayClient.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 ActivateGateway
/// <summary>
/// Activates the gateway you previously deployed on your host. For more information,
/// see <a href="http://docs.aws.amazon.com/storagegateway/latest/userguide/GettingStartedActivateGateway-common.html">
/// Activate the AWS Storage Gateway</a>. In the activation process, you specify information
/// such as the you want to use for storing snapshots, the time zone for scheduled snapshots
/// the gateway snapshot schedule window, an activation key, and a name for your gateway.
/// The activation process also associates your gateway with your account; for more information,
/// see <a>UpdateGatewayInformation</a>.
///
/// <note>
/// <para>
/// You must turn on the gateway VM before you can activate your gateway.
/// </para>
/// </note>
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the ActivateGateway service method.</param>
///
/// <returns>The response from the ActivateGateway service method, as returned by StorageGateway.</returns>
/// <exception cref="Amazon.StorageGateway.Model.InternalServerErrorException">
/// An internal server error has occurred during the request. For more information, see
/// the error and message fields.
/// </exception>
/// <exception cref="Amazon.StorageGateway.Model.InvalidGatewayRequestException">
/// An exception occurred because an invalid gateway request was issued to the service.
/// For more information, see the error and message fields.
/// </exception>
public ActivateGatewayResponse ActivateGateway(ActivateGatewayRequest request)
{
var marshaller = new ActivateGatewayRequestMarshaller();
var unmarshaller = ActivateGatewayResponseUnmarshaller.Instance;
return Invoke<ActivateGatewayRequest,ActivateGatewayResponse>(request, marshaller, unmarshaller);
}
/// <summary>
/// Initiates the asynchronous execution of the ActivateGateway operation.
/// </summary>
///
/// <param name="request">Container for the necessary parameters to execute the ActivateGateway operation on AmazonStorageGatewayClient.</param>
/// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
/// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.</param>
///
/// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndActivateGateway
/// operation.</returns>
public IAsyncResult BeginActivateGateway(ActivateGatewayRequest request, AsyncCallback callback, object state)
{
var marshaller = new ActivateGatewayRequestMarshaller();
var unmarshaller = ActivateGatewayResponseUnmarshaller.Instance;
return BeginInvoke<ActivateGatewayRequest>(request, marshaller, unmarshaller,
callback, state);
}
/// <summary>
/// Finishes the asynchronous execution of the ActivateGateway operation.
/// </summary>
///
/// <param name="asyncResult">The IAsyncResult returned by the call to BeginActivateGateway.</param>
///
/// <returns>Returns a ActivateGatewayResult from StorageGateway.</returns>
public ActivateGatewayResponse EndActivateGateway(IAsyncResult asyncResult)
{
return EndInvoke<ActivateGatewayResponse>(asyncResult);
}
#endregion
#region AddCache
/// <summary>
/// Configures one or more gateway local disks as cache for a cached-volume gateway. This
/// operation is supported only for the gateway-cached volume architecture (see <a href="http://docs.aws.amazon.com/storagegateway/latest/userguide/StorageGatewayConcepts.html">Storage
/// Gateway Concepts</a>).
///
///
/// <para>
/// In the request, you specify the gateway Amazon Resource Name (ARN) to which you want
/// to add cache, and one or more disk IDs that you want to configure as cache.
/// </para>
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AddCache service method.</param>
///
/// <returns>The response from the AddCache service method, as returned by StorageGateway.</returns>
/// <exception cref="Amazon.StorageGateway.Model.InternalServerErrorException">
/// An internal server error has occurred during the request. For more information, see
/// the error and message fields.
/// </exception>
/// <exception cref="Amazon.StorageGateway.Model.InvalidGatewayRequestException">
/// An exception occurred because an invalid gateway request was issued to the service.
/// For more information, see the error and message fields.
/// </exception>
public AddCacheResponse AddCache(AddCacheRequest request)
{
var marshaller = new AddCacheRequestMarshaller();
var unmarshaller = AddCacheResponseUnmarshaller.Instance;
return Invoke<AddCacheRequest,AddCacheResponse>(request, marshaller, unmarshaller);
}
Amazon.StorageGateway.Model.Internal.MarshallTransformations.RetrieveTapeRecoveryPointRequestMarshaller : IMarshaller
Constructors :
public RetrieveTapeRecoveryPointRequestMarshaller()Methods :
public IRequest Marshall(AmazonWebServiceRequest input = )public IRequest Marshall(RetrieveTapeRecoveryPointRequest publicRequest = )
public static RetrieveTapeRecoveryPointRequestMarshaller get_Instance()
public Type GetType()
public String ToString()
public Boolean Equals(Object obj = )
public Int32 GetHashCode()