Table of Contents
StorageGateway.Client¶A low-level client representing AWS Storage Gateway:
client = session.create_client('storagegateway')
These are the available methods:
activate_gateway()add_cache()add_tags_to_resource()add_upload_buffer()add_working_storage()can_paginate()cancel_archival()cancel_retrieval()create_cached_iscsi_volume()create_nfs_file_share()create_snapshot()create_snapshot_from_volume_recovery_point()create_stored_iscsi_volume()create_tape_with_barcode()create_tapes()delete_bandwidth_rate_limit()delete_chap_credentials()delete_file_share()delete_gateway()delete_snapshot_schedule()delete_tape()delete_tape_archive()delete_volume()describe_bandwidth_rate_limit()describe_cache()describe_cached_iscsi_volumes()describe_chap_credentials()describe_gateway_information()describe_maintenance_start_time()describe_nfs_file_shares()describe_snapshot_schedule()describe_stored_iscsi_volumes()describe_tape_archives()describe_tape_recovery_points()describe_tapes()describe_upload_buffer()describe_vtl_devices()describe_working_storage()disable_gateway()generate_presigned_url()get_paginator()get_waiter()list_file_shares()list_gateways()list_local_disks()list_tags_for_resource()list_tapes()list_volume_initiators()list_volume_recovery_points()list_volumes()refresh_cache()remove_tags_from_resource()reset_cache()retrieve_tape_archive()retrieve_tape_recovery_point()set_local_console_password()shutdown_gateway()start_gateway()update_bandwidth_rate_limit()update_chap_credentials()update_gateway_information()update_gateway_software_now()update_maintenance_start_time()update_nfs_file_share()update_snapshot_schedule()update_vtl_device_type()activate_gateway(**kwargs)¶Activates the gateway you previously deployed on your host. For more information, see Activate the AWS Storage Gateway . In the activation process, you specify information such as the region you want to use for storing snapshots or tapes, 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 UpdateGatewayInformation .
Note
You must turn on the gateway VM before you can activate your gateway.
See also: AWS API Documentation
Request Syntax
response = client.activate_gateway(
ActivationKey='string',
GatewayName='string',
GatewayTimezone='string',
GatewayRegion='string',
GatewayType='string',
TapeDriveType='string',
MediumChangerType='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
Activates the gateway you previously deployed on your host.
response = client.activate_gateway(
ActivationKey='29AV1-3OFV9-VVIUB-NKT0I-LRO6V',
GatewayName='My_Gateway',
GatewayRegion='us-east-1',
GatewayTimezone='GMT-12:00',
GatewayType='STORED',
MediumChangerType='AWS-Gateway-VTL',
TapeDriveType='IBM-ULT3580-TD5',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B',
'ResponseMetadata': {
'...': '...',
},
}
add_cache(**kwargs)¶Configures one or more gateway local disks as cache for a gateway. This operation is only supported in the cached volume, tape and file gateway architectures (see Storage Gateway Concepts ).
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.
See also: AWS API Documentation
Request Syntax
response = client.add_cache(
GatewayARN='string',
DiskIds=[
'string',
]
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
The following example shows a request that activates a gateway-stored volume.
response = client.add_cache(
DiskIds=[
'pci-0000:03:00.0-scsi-0:0:0:0',
'pci-0000:03:00.0-scsi-0:0:1:0',
],
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
Adds one or more tags to the specified resource. You use tags to add metadata to resources, which you can use to categorize these resources. For example, you can categorize resources by purpose, owner, environment, or team. Each tag consists of a key and a value, which you define. You can add tags to the following AWS Storage Gateway resources:
You can create a maximum of 10 tags for each resource. Virtual tapes and storage volumes that are recovered to a new gateway maintain their tags.
See also: AWS API Documentation
Request Syntax
response = client.add_tags_to_resource(
ResourceARN='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'ResourceARN': 'string'
}
Response Structure
|
Examples
Adds one or more tags to the specified resource.
response = client.add_tags_to_resource(
ResourceARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B',
Tags=[
{
'Key': 'Dev Gatgeway Region',
'Value': 'East Coast',
},
],
)
print(response)
Expected Output:
{
'ResourceARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B',
'ResponseMetadata': {
'...': '...',
},
}
add_upload_buffer(**kwargs)¶Configures one or more gateway local disks as upload buffer for a specified gateway. This operation is supported for the stored volume, cached volume and tape gateway architectures.
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.
See also: AWS API Documentation
Request Syntax
response = client.add_upload_buffer(
GatewayARN='string',
DiskIds=[
'string',
]
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
Configures one or more gateway local disks as upload buffer for a specified gateway.
response = client.add_upload_buffer(
DiskIds=[
'pci-0000:03:00.0-scsi-0:0:0:0',
'pci-0000:03:00.0-scsi-0:0:1:0',
],
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
add_working_storage(**kwargs)¶Configures one or more gateway local disks as working storage for a gateway. This operation is only supported in the stored volume gateway architecture. This operation is deprecated in cached volume API version 20120630. Use AddUploadBuffer instead.
Note
Working storage is also referred to as upload buffer. You can also use the AddUploadBuffer operation to add upload buffer to a stored volume gateway.
In the request, you specify the gateway Amazon Resource Name (ARN) to which you want to add working storage, and one or more disk IDs that you want to configure as working storage.
See also: AWS API Documentation
Request Syntax
response = client.add_working_storage(
GatewayARN='string',
DiskIds=[
'string',
]
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
Configures one or more gateway local disks as working storage for a gateway. (Working storage is also referred to as upload buffer.)
response = client.add_working_storage(
DiskIds=[
'pci-0000:03:00.0-scsi-0:0:0:0',
'pci-0000:03:00.0-scsi-0:0:1:0',
],
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
can_paginate(operation_name)¶Check if an operation can be paginated.
| Parameters: | operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo, and you’d normally invoke the
operation as client.create_foo(**kwargs), if the
create_foo operation can be paginated, you can use the
call client.get_paginator("create_foo"). |
|---|---|
| Returns: | True if the operation can be paginated,
False otherwise. |
cancel_archival(**kwargs)¶Cancels archiving of a virtual tape to the virtual tape shelf (VTS) after the archiving process is initiated. This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.cancel_archival(
GatewayARN='string',
TapeARN='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeARN': 'string'
}
Response Structure
|
Examples
Cancels archiving of a virtual tape to the virtual tape shelf (VTS) after the archiving process is initiated.
response = client.cancel_archival(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
TapeARN='arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4',
)
print(response)
Expected Output:
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4',
'ResponseMetadata': {
'...': '...',
},
}
cancel_retrieval(**kwargs)¶Cancels retrieval of a virtual tape from the virtual tape shelf (VTS) to a gateway after the retrieval process is initiated. The virtual tape is returned to the VTS.
See also: AWS API Documentation
Request Syntax
response = client.cancel_retrieval(
GatewayARN='string',
TapeARN='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeARN': 'string'
}
Response Structure
|
Examples
Cancels retrieval of a virtual tape from the virtual tape shelf (VTS) to a gateway after the retrieval process is initiated.
response = client.cancel_retrieval(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
TapeARN='arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4',
)
print(response)
Expected Output:
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4',
'ResponseMetadata': {
'...': '...',
},
}
create_cached_iscsi_volume(**kwargs)¶Creates a cached volume on a specified cached volume gateway. This operation is only supported in the cached volume gateway architecture.
Note
Cache storage must be allocated to the gateway before you can create a cached volume. Use the AddCache operation to add cache storage to a gateway.
In the request, you must specify the gateway, size of the volume in bytes, the iSCSI target name, an IP address on which to expose the target, and a unique client token. In response, the gateway creates the volume and returns information about it. This information includes the volume Amazon Resource Name (ARN), its size, and the iSCSI target ARN that initiators can use to connect to the volume target.
Optionally, you can provide the ARN for an existing volume as the SourceVolumeARN for this cached volume, which creates an exact copy of the existing volume’s latest recovery point. The VolumeSizeInBytes value must be equal to or larger than the size of the copied volume, in bytes.
See also: AWS API Documentation
Request Syntax
response = client.create_cached_iscsi_volume(
GatewayARN='string',
VolumeSizeInBytes=123,
SnapshotId='string',
TargetName='string',
SourceVolumeARN='string',
NetworkInterfaceId='string',
ClientToken='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'VolumeARN': 'string',
'TargetARN': 'string'
}
Response Structure
|
Examples
Creates a cached volume on a specified cached gateway.
response = client.create_cached_iscsi_volume(
ClientToken='cachedvol112233',
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
NetworkInterfaceId='10.1.1.1',
SnapshotId='snap-f47b7b94',
TargetName='my-volume',
VolumeSizeInBytes=536870912000,
)
print(response)
Expected Output:
{
'TargetARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'ResponseMetadata': {
'...': '...',
},
}
Creates a file share on an existing file gateway. In Storage Gateway, a file share is a file system mount point backed by Amazon S3 cloud storage. Storage Gateway exposes file shares using a Network File System (NFS) interface. This operation is only supported in the file gateway architecture.
Warning
File gateway requires AWS Security Token Service (AWS STS) to be activated to enable you create a file share. Make sure AWS STS is activated in the region you are creating your file gateway in. If AWS STS is not activated in the region, activate it. For information about how to activate AWS STS, see Activating and Deactivating AWS STS in an AWS Region in the AWS Identity and Access Management User Guide.
File gateway does not support creating hard or symbolic links on a file share.
See also: AWS API Documentation
Request Syntax
response = client.create_nfs_file_share(
ClientToken='string',
NFSFileShareDefaults={
'FileMode': 'string',
'DirectoryMode': 'string',
'GroupId': 123,
'OwnerId': 123
},
GatewayARN='string',
KMSEncrypted=True|False,
KMSKey='string',
Role='string',
LocationARN='string',
DefaultStorageClass='string',
ClientList=[
'string',
],
Squash='string',
ReadOnly=True|False
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'FileShareARN': 'string'
}
Response Structure
|
create_snapshot(**kwargs)¶Initiates a snapshot of a volume.
AWS Storage Gateway provides the ability to back up point-in-time snapshots of your data to Amazon Simple Storage (S3) for durable off-site recovery, as well as import the data to an Amazon Elastic Block Store (EBS) volume in Amazon Elastic Compute Cloud (EC2). You can take snapshots of your gateway volume on a scheduled or ad-hoc basis. This API enables you to take ad-hoc snapshot. For more information, see Editing a Snapshot Schedule .
In the CreateSnapshot request you identify the volume by providing its Amazon Resource Name (ARN). You must also provide description for the snapshot. When AWS Storage Gateway takes the snapshot of specified volume, the snapshot and description appears in the AWS Storage Gateway Console. In response, AWS Storage Gateway returns you a snapshot ID. You can use this snapshot ID to check the snapshot progress or later use it when you want to create a volume from a snapshot. This operation is only supported in stored and cached volume gateway architecture.
Note
To list or delete a snapshot, you must use the Amazon EC2 API. For more information, see DescribeSnapshots or DeleteSnapshot in the EC2 API reference .
Warning
Volume and snapshot IDs are changing to a longer length ID format. For more information, see the important note on the Welcome page.
See also: AWS API Documentation
Request Syntax
response = client.create_snapshot(
VolumeARN='string',
SnapshotDescription='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'VolumeARN': 'string',
'SnapshotId': 'string'
}
Response Structure
|
Examples
Initiates an ad-hoc snapshot of a gateway volume.
response = client.create_snapshot(
SnapshotDescription='My root volume snapshot as of 10/03/2017',
VolumeARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
)
print(response)
Expected Output:
{
'SnapshotId': 'snap-78e22663',
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'ResponseMetadata': {
'...': '...',
},
}
create_snapshot_from_volume_recovery_point(**kwargs)¶Initiates a snapshot of a gateway from a volume recovery point. This operation is only supported in the cached volume gateway architecture.
A volume recovery point is a point in time at which all data of the volume is consistent and from which you can create a snapshot. To get a list of volume recovery point for cached volume gateway, use ListVolumeRecoveryPoints .
In the CreateSnapshotFromVolumeRecoveryPoint request, you identify the volume by providing its Amazon Resource Name (ARN). You must also provide a description for the snapshot. When the gateway takes a snapshot of the specified volume, the snapshot and its description appear in the AWS Storage Gateway console. In response, the gateway returns you a snapshot ID. You can use this snapshot ID to check the snapshot progress or later use it when you want to create a volume from a snapshot.
Note
To list or delete a snapshot, you must use the Amazon EC2 API. For more information, in Amazon Elastic Compute Cloud API Reference .
See also: AWS API Documentation
Request Syntax
response = client.create_snapshot_from_volume_recovery_point(
VolumeARN='string',
SnapshotDescription='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'SnapshotId': 'string',
'VolumeARN': 'string',
'VolumeRecoveryPointTime': 'string'
}
Response Structure
|
Examples
Initiates a snapshot of a gateway from a volume recovery point.
response = client.create_snapshot_from_volume_recovery_point(
SnapshotDescription='My root volume snapshot as of 2017-06-30T10:10:10.000Z',
VolumeARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
)
print(response)
Expected Output:
{
'SnapshotId': 'snap-78e22663',
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'VolumeRecoveryPointTime': '2017-06-30T10:10:10.000Z',
'ResponseMetadata': {
'...': '...',
},
}
create_stored_iscsi_volume(**kwargs)¶Creates a volume on a specified gateway. This operation is only supported in the stored volume gateway architecture.
The size of the volume to create is inferred from the disk size. You can choose to preserve existing data on the disk, create volume from an existing snapshot, or create an empty volume. If you choose to create an empty gateway volume, then any existing data on the disk is erased.
In the request you must specify the gateway and the disk information on which you are creating the volume. In response, the gateway creates the volume and returns volume information such as the volume Amazon Resource Name (ARN), its size, and the iSCSI target ARN that initiators can use to connect to the volume target.
See also: AWS API Documentation
Request Syntax
response = client.create_stored_iscsi_volume(
GatewayARN='string',
DiskId='string',
SnapshotId='string',
PreserveExistingData=True|False,
TargetName='string',
NetworkInterfaceId='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'VolumeARN': 'string',
'VolumeSizeInBytes': 123,
'TargetARN': 'string'
}
Response Structure
|
Examples
Creates a stored volume on a specified stored gateway.
response = client.create_stored_iscsi_volume(
DiskId='pci-0000:03:00.0-scsi-0:0:0:0',
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
NetworkInterfaceId='10.1.1.1',
PreserveExistingData=True,
SnapshotId='snap-f47b7b94',
TargetName='my-volume',
)
print(response)
Expected Output:
{
'TargetARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'VolumeSizeInBytes': 1099511627776,
'ResponseMetadata': {
'...': '...',
},
}
create_tape_with_barcode(**kwargs)¶Creates a virtual tape by using your own barcode. You write data to the virtual tape and then archive the tape. This operation is only supported in the tape gateway architecture.
Note
Cache storage must be allocated to the gateway before you can create a virtual tape. Use the AddCache operation to add cache storage to a gateway.
See also: AWS API Documentation
Request Syntax
response = client.create_tape_with_barcode(
GatewayARN='string',
TapeSizeInBytes=123,
TapeBarcode='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeARN': 'string'
}
Response Structure
|
Examples
Creates a virtual tape by using your own barcode.
response = client.create_tape_with_barcode(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
TapeBarcode='TEST12345',
TapeSizeInBytes=107374182400,
)
print(response)
Expected Output:
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST12345',
'ResponseMetadata': {
'...': '...',
},
}
create_tapes(**kwargs)¶Creates one or more virtual tapes. You write data to the virtual tapes and then archive the tapes. This operation is only supported in the tape gateway architecture.
Note
Cache storage must be allocated to the gateway before you can create virtual tapes. Use the AddCache operation to add cache storage to a gateway.
See also: AWS API Documentation
Request Syntax
response = client.create_tapes(
GatewayARN='string',
TapeSizeInBytes=123,
ClientToken='string',
NumTapesToCreate=123,
TapeBarcodePrefix='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeARNs': [
'string',
]
}
Response Structure
|
Examples
Creates one or more virtual tapes.
response = client.create_tapes(
ClientToken='77777',
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
NumTapesToCreate=3,
TapeBarcodePrefix='TEST',
TapeSizeInBytes=107374182400,
)
print(response)
Expected Output:
{
'TapeARNs': [
'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST38A29D',
'arn:aws:storagegateway:us-east-1:204469490176:tape/TEST3AA29F',
'arn:aws:storagegateway:us-east-1:204469490176:tape/TEST3BA29E',
],
'ResponseMetadata': {
'...': '...',
},
}
delete_bandwidth_rate_limit(**kwargs)¶Deletes the bandwidth rate limits of a gateway. You can delete either the upload and download bandwidth rate limit, or you can delete both. If you delete only one of the limits, the other limit remains unchanged. To specify which gateway to work with, use the Amazon Resource Name (ARN) of the gateway in your request.
See also: AWS API Documentation
Request Syntax
response = client.delete_bandwidth_rate_limit(
GatewayARN='string',
BandwidthType='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
Deletes the bandwidth rate limits of a gateway; either the upload or download limit, or both.
response = client.delete_bandwidth_rate_limit(
BandwidthType='All',
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
delete_chap_credentials(**kwargs)¶Deletes Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target and initiator pair.
See also: AWS API Documentation
Request Syntax
response = client.delete_chap_credentials(
TargetARN='string',
InitiatorName='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TargetARN': 'string',
'InitiatorName': 'string'
}
Response Structure
|
Examples
Deletes Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target and initiator pair.
response = client.delete_chap_credentials(
InitiatorName='iqn.1991-05.com.microsoft:computername.domain.example.com',
TargetARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
)
print(response)
Expected Output:
{
'InitiatorName': 'iqn.1991-05.com.microsoft:computername.domain.example.com',
'TargetARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
'ResponseMetadata': {
'...': '...',
},
}
Deletes a file share from a file gateway. This operation is only supported in the file gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.delete_file_share(
FileShareARN='string'
)
| Parameters: | FileShareARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the file share to be deleted. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'FileShareARN': 'string'
}
Response Structure
|
delete_gateway(**kwargs)¶Deletes a gateway. To specify which gateway to delete, use the Amazon Resource Name (ARN) of the gateway in your request. The operation deletes the gateway; however, it does not delete the gateway virtual machine (VM) from your host computer.
After you delete a gateway, you cannot reactivate it. Completed snapshots of the gateway volumes are not deleted upon deleting the gateway, however, pending snapshots will not complete. After you delete a gateway, your next step is to remove it from your environment.
Warning
You no longer pay software charges after the gateway is deleted; however, your existing Amazon EBS snapshots persist and you will continue to be billed for these snapshots. You can choose to remove all remaining Amazon EBS snapshots by canceling your Amazon EC2 subscription. If you prefer not to cancel your Amazon EC2 subscription, you can delete your snapshots using the Amazon EC2 console. For more information, see the AWS Storage Gateway Detail Page .
See also: AWS API Documentation
Request Syntax
response = client.delete_gateway(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string'
}
Response Structure
|
Examples
This operation deletes the gateway, but not the gateway’s VM from the host computer.
response = client.delete_gateway(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
delete_snapshot_schedule(**kwargs)¶Deletes a snapshot of a volume.
You can take snapshots of your gateway volumes on a scheduled or ad hoc basis. This API action enables you to delete a snapshot schedule for a volume. For more information, see Working with Snapshots . In the DeleteSnapshotSchedule request, you identify the volume by providing its Amazon Resource Name (ARN).
Note
To list or delete a snapshot, you must use the Amazon EC2 API. in Amazon Elastic Compute Cloud API Reference .
See also: AWS API Documentation
Request Syntax
response = client.delete_snapshot_schedule(
VolumeARN='string'
)
| Parameters: | VolumeARN (string) – [REQUIRED] |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'VolumeARN': 'string'
}
Response Structure
|
Examples
This action enables you to delete a snapshot schedule for a volume.
response = client.delete_snapshot_schedule(
VolumeARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
)
print(response)
Expected Output:
{
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'ResponseMetadata': {
'...': '...',
},
}
delete_tape(**kwargs)¶Deletes the specified virtual tape. This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.delete_tape(
GatewayARN='string',
TapeARN='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeARN': 'string'
}
Response Structure
|
Examples
This example deletes the specified virtual tape.
response = client.delete_tape(
GatewayARN='arn:aws:storagegateway:us-east-1:204469490176:gateway/sgw-12A3456B',
TapeARN='arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0',
)
print(response)
Expected Output:
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0',
'ResponseMetadata': {
'...': '...',
},
}
delete_tape_archive(**kwargs)¶Deletes the specified virtual tape from the virtual tape shelf (VTS). This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.delete_tape_archive(
TapeARN='string'
)
| Parameters: | TapeARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the virtual tape to delete from the virtual tape shelf (VTS). |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'TapeARN': 'string'
}
Response Structure
|
Examples
Deletes the specified virtual tape from the virtual tape shelf (VTS).
response = client.delete_tape_archive(
TapeARN='arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0',
)
print(response)
Expected Output:
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0',
'ResponseMetadata': {
'...': '...',
},
}
delete_volume(**kwargs)¶Deletes the specified storage volume that you previously created using the CreateCachediSCSIVolume or CreateStorediSCSIVolume API. This operation is only supported in the cached volume and stored volume architectures. For stored volume gateways, the local disk that was configured as the storage volume is not deleted. You can reuse the local disk to create another storage volume.
Before you delete a volume, make sure there are no iSCSI connections to the volume you are deleting. You should also make sure there is no snapshot in progress. You can use the Amazon Elastic Compute Cloud (Amazon EC2) API to query snapshots on the volume you are deleting and check the snapshot status. For more information, go to DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference .
In the request, you must provide the Amazon Resource Name (ARN) of the storage volume you want to delete.
See also: AWS API Documentation
Request Syntax
response = client.delete_volume(
VolumeARN='string'
)
| Parameters: | VolumeARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the volume. Use the ListVolumes operation to return a list of gateway volumes. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'VolumeARN': 'string'
}
Response Structure
|
Examples
Deletes the specified gateway volume that you previously created using the CreateCachediSCSIVolume or CreateStorediSCSIVolume API.
response = client.delete_volume(
VolumeARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
)
print(response)
Expected Output:
{
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'ResponseMetadata': {
'...': '...',
},
}
describe_bandwidth_rate_limit(**kwargs)¶Returns the bandwidth rate limits of a gateway. By default, these limits are not set, which means no bandwidth rate limiting is in effect.
This operation only returns a value for a bandwidth rate limit only if the limit is set. If no limits are set for the gateway, then this operation returns only the gateway ARN in the response body. To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.
See also: AWS API Documentation
Request Syntax
response = client.describe_bandwidth_rate_limit(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'AverageUploadRateLimitInBitsPerSec': 123,
'AverageDownloadRateLimitInBitsPerSec': 123
}
Response Structure
|
Examples
Returns a value for a bandwidth rate limit if set. If not set, then only the gateway ARN is returned.
response = client.describe_bandwidth_rate_limit(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'AverageDownloadRateLimitInBitsPerSec': 204800,
'AverageUploadRateLimitInBitsPerSec': 102400,
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
describe_cache(**kwargs)¶Returns information about the cache of a gateway. This operation is only supported in the cached volume,tape and file gateway architectures.
The response includes disk IDs that are configured as cache, and it includes the amount of cache allocated and used.
See also: AWS API Documentation
Request Syntax
response = client.describe_cache(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'DiskIds': [
'string',
],
'CacheAllocatedInBytes': 123,
'CacheUsedPercentage': 123.0,
'CacheDirtyPercentage': 123.0,
'CacheHitPercentage': 123.0,
'CacheMissPercentage': 123.0
}
Response Structure
|
Examples
Returns information about the cache of a gateway.
response = client.describe_cache(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'CacheAllocatedInBytes': 2199023255552,
'CacheDirtyPercentage': 0.07,
'CacheHitPercentage': 99.68,
'CacheMissPercentage': 0.32,
'CacheUsedPercentage': 0.07,
'DiskIds': [
'pci-0000:03:00.0-scsi-0:0:0:0',
'pci-0000:04:00.0-scsi-0:1:0:0',
],
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
describe_cached_iscsi_volumes(**kwargs)¶Returns a description of the gateway volumes specified in the request. This operation is only supported in the cached volume gateway architecture.
The list of gateway volumes in the request must be from one gateway. In the response Amazon Storage Gateway returns volume information sorted by volume Amazon Resource Name (ARN).
See also: AWS API Documentation
Request Syntax
response = client.describe_cached_iscsi_volumes(
VolumeARNs=[
'string',
]
)
| Parameters: | VolumeARNs (list) – [REQUIRED]
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'CachediSCSIVolumes': [
{
'VolumeARN': 'string',
'VolumeId': 'string',
'VolumeType': 'string',
'VolumeStatus': 'string',
'VolumeSizeInBytes': 123,
'VolumeProgress': 123.0,
'SourceSnapshotId': 'string',
'VolumeiSCSIAttributes': {
'TargetARN': 'string',
'NetworkInterfaceId': 'string',
'NetworkInterfacePort': 123,
'LunNumber': 123,
'ChapEnabled': True|False
},
'CreatedDate': datetime(2015, 1, 1)
},
]
}
Response Structure
|
Examples
Returns a description of the gateway cached iSCSI volumes specified in the request.
response = client.describe_cached_iscsi_volumes(
VolumeARNs=[
'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
],
)
print(response)
Expected Output:
{
'CachediSCSIVolumes': [
{
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'VolumeId': 'vol-1122AABB',
'VolumeSizeInBytes': 1099511627776,
'VolumeStatus': 'AVAILABLE',
'VolumeType': 'CACHED iSCSI',
'VolumeiSCSIAttributes': {
'ChapEnabled': True,
'LunNumber': 1,
'NetworkInterfaceId': '10.243.43.207',
'NetworkInterfacePort': 3260,
'TargetARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
},
},
],
'ResponseMetadata': {
'...': '...',
},
}
describe_chap_credentials(**kwargs)¶Returns an array of Challenge-Handshake Authentication Protocol (CHAP) credentials information for a specified iSCSI target, one for each target-initiator pair.
See also: AWS API Documentation
Request Syntax
response = client.describe_chap_credentials(
TargetARN='string'
)
| Parameters: | TargetARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the iSCSI volume target. Use the DescribeStorediSCSIVolumes operation to return to retrieve the TargetARN for specified VolumeARN. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'ChapCredentials': [
{
'TargetARN': 'string',
'SecretToAuthenticateInitiator': 'string',
'InitiatorName': 'string',
'SecretToAuthenticateTarget': 'string'
},
]
}
Response Structure
|
Examples
Returns an array of Challenge-Handshake Authentication Protocol (CHAP) credentials information for a specified iSCSI target, one for each target-initiator pair.
response = client.describe_chap_credentials(
TargetARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
)
print(response)
Expected Output:
{
'ChapCredentials': [
{
'InitiatorName': 'iqn.1991-05.com.microsoft:computername.domain.example.com',
'SecretToAuthenticateInitiator': '111111111111',
'SecretToAuthenticateTarget': '222222222222',
'TargetARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
},
],
'ResponseMetadata': {
'...': '...',
},
}
describe_gateway_information(**kwargs)¶Returns metadata about a gateway such as its name, network interfaces, configured time zone, and the state (whether the gateway is running or not). To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.
See also: AWS API Documentation
Request Syntax
response = client.describe_gateway_information(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'GatewayId': 'string',
'GatewayName': 'string',
'GatewayTimezone': 'string',
'GatewayState': 'string',
'GatewayNetworkInterfaces': [
{
'Ipv4Address': 'string',
'MacAddress': 'string',
'Ipv6Address': 'string'
},
],
'GatewayType': 'string',
'NextUpdateAvailabilityDate': 'string',
'LastSoftwareUpdate': 'string'
}
Response Structure
|
Examples
Returns metadata about a gateway such as its name, network interfaces, configured time zone, and the state (whether the gateway is running or not).
response = client.describe_gateway_information(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'GatewayId': 'sgw-AABB1122',
'GatewayName': 'My_Gateway',
'GatewayNetworkInterfaces': [
{
'Ipv4Address': '10.35.69.216',
},
],
'GatewayState': 'STATE_RUNNING',
'GatewayTimezone': 'GMT-8:00',
'GatewayType': 'STORED',
'LastSoftwareUpdate': '2016-01-02T16:00:00',
'NextUpdateAvailabilityDate': '2017-01-02T16:00:00',
'ResponseMetadata': {
'...': '...',
},
}
describe_maintenance_start_time(**kwargs)¶Returns your gateway’s weekly maintenance start time including the day and time of the week. Note that values are in terms of the gateway’s time zone.
See also: AWS API Documentation
Request Syntax
response = client.describe_maintenance_start_time(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'HourOfDay': 123,
'MinuteOfHour': 123,
'DayOfWeek': 123,
'Timezone': 'string'
}
Response Structure
|
Examples
Returns your gateway’s weekly maintenance start time including the day and time of the week.
response = client.describe_maintenance_start_time(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'DayOfWeek': 2,
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'HourOfDay': 15,
'MinuteOfHour': 35,
'Timezone': 'GMT+7:00',
'ResponseMetadata': {
'...': '...',
},
}
Gets a description for one or more file shares from a file gateway. This operation is only supported in file gateways.
See also: AWS API Documentation
Request Syntax
response = client.describe_nfs_file_shares(
FileShareARNList=[
'string',
]
)
| Parameters: | FileShareARNList (list) – [REQUIRED] An array containing the Amazon Resource Name (ARN) of each file share to be described.
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'NFSFileShareInfoList': [
{
'NFSFileShareDefaults': {
'FileMode': 'string',
'DirectoryMode': 'string',
'GroupId': 123,
'OwnerId': 123
},
'FileShareARN': 'string',
'FileShareId': 'string',
'FileShareStatus': 'string',
'GatewayARN': 'string',
'KMSEncrypted': True|False,
'KMSKey': 'string',
'Path': 'string',
'Role': 'string',
'LocationARN': 'string',
'DefaultStorageClass': 'string',
'ClientList': [
'string',
],
'Squash': 'string',
'ReadOnly': True|False
},
]
}
Response Structure
|
describe_snapshot_schedule(**kwargs)¶Describes the snapshot schedule for the specified gateway volume. The snapshot schedule information includes intervals at which snapshots are automatically initiated on the volume. This operation is only supported in the cached volume and stored volume architectures.
See also: AWS API Documentation
Request Syntax
response = client.describe_snapshot_schedule(
VolumeARN='string'
)
| Parameters: | VolumeARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the volume. Use the ListVolumes operation to return a list of gateway volumes. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'VolumeARN': 'string',
'StartAt': 123,
'RecurrenceInHours': 123,
'Description': 'string',
'Timezone': 'string'
}
Response Structure
|
Examples
Describes the snapshot schedule for the specified gateway volume including intervals at which snapshots are automatically initiated.
response = client.describe_snapshot_schedule(
VolumeARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
)
print(response)
Expected Output:
{
'Description': 'sgw-AABB1122:vol-AABB1122:Schedule',
'RecurrenceInHours': 24,
'StartAt': 6,
'Timezone': 'GMT+7:00',
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'ResponseMetadata': {
'...': '...',
},
}
describe_stored_iscsi_volumes(**kwargs)¶Returns the description of the gateway volumes specified in the request. The list of gateway volumes in the request must be from one gateway. In the response Amazon Storage Gateway returns volume information sorted by volume ARNs. This operation is only supported in stored volume gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.describe_stored_iscsi_volumes(
VolumeARNs=[
'string',
]
)
| Parameters: | VolumeARNs (list) – [REQUIRED] An array of strings where each string represents the Amazon Resource Name (ARN) of a stored volume. All of the specified stored volumes must from the same gateway. Use ListVolumes to get volume ARNs for a gateway.
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'StorediSCSIVolumes': [
{
'VolumeARN': 'string',
'VolumeId': 'string',
'VolumeType': 'string',
'VolumeStatus': 'string',
'VolumeSizeInBytes': 123,
'VolumeProgress': 123.0,
'VolumeDiskId': 'string',
'SourceSnapshotId': 'string',
'PreservedExistingData': True|False,
'VolumeiSCSIAttributes': {
'TargetARN': 'string',
'NetworkInterfaceId': 'string',
'NetworkInterfacePort': 123,
'LunNumber': 123,
'ChapEnabled': True|False
},
'CreatedDate': datetime(2015, 1, 1)
},
]
}
Response Structure
|
Examples
Returns the description of the gateway volumes specified in the request belonging to the same gateway.
response = client.describe_stored_iscsi_volumes(
VolumeARNs=[
'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
],
)
print(response)
Expected Output:
{
'StorediSCSIVolumes': [
{
'PreservedExistingData': False,
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'VolumeDiskId': 'pci-0000:03:00.0-scsi-0:0:0:0',
'VolumeId': 'vol-1122AABB',
'VolumeProgress': 23.7,
'VolumeSizeInBytes': 1099511627776,
'VolumeStatus': 'BOOTSTRAPPING',
'VolumeiSCSIAttributes': {
'ChapEnabled': True,
'NetworkInterfaceId': '10.243.43.207',
'NetworkInterfacePort': 3260,
'TargetARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
},
},
],
'ResponseMetadata': {
'...': '...',
},
}
describe_tape_archives(**kwargs)¶Returns a description of specified virtual tapes in the virtual tape shelf (VTS). This operation is only supported in the tape gateway architecture.
If a specific TapeARN is not specified, AWS Storage Gateway returns a description of all virtual tapes found in the VTS associated with your account.
See also: AWS API Documentation
Request Syntax
response = client.describe_tape_archives(
TapeARNs=[
'string',
],
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeArchives': [
{
'TapeARN': 'string',
'TapeBarcode': 'string',
'TapeCreatedDate': datetime(2015, 1, 1),
'TapeSizeInBytes': 123,
'CompletionTime': datetime(2015, 1, 1),
'RetrievedTo': 'string',
'TapeStatus': 'string',
'TapeUsedInBytes': 123
},
],
'Marker': 'string'
}
Response Structure
|
Examples
Returns a description of specified virtual tapes in the virtual tape shelf (VTS).
response = client.describe_tape_archives(
Limit=123,
Marker='1',
TapeARNs=[
'arn:aws:storagegateway:us-east-1:999999999999:tape/AM08A1AD',
'arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4',
],
)
print(response)
Expected Output:
{
'Marker': '1',
'TapeArchives': [
{
'CompletionTime': datetime(2016, 12, 16, 13, 50, 0, 4, 351, 0),
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999:tape/AM08A1AD',
'TapeBarcode': 'AM08A1AD',
'TapeSizeInBytes': 107374182400,
'TapeStatus': 'ARCHIVED',
},
{
'CompletionTime': datetime(2016, 12, 16, 13, 59, 0, 4, 351, 0),
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999:tape/AMZN01A2A4',
'TapeBarcode': 'AMZN01A2A4',
'TapeSizeInBytes': 429496729600,
'TapeStatus': 'ARCHIVED',
},
],
'ResponseMetadata': {
'...': '...',
},
}
describe_tape_recovery_points(**kwargs)¶Returns a list of virtual tape recovery points that are available for the specified tape gateway.
A recovery point is a point-in-time view of a virtual tape at which all the data on the virtual tape is consistent. If your gateway crashes, virtual tapes that have recovery points can be recovered to a new gateway. This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.describe_tape_recovery_points(
GatewayARN='string',
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string',
'TapeRecoveryPointInfos': [
{
'TapeARN': 'string',
'TapeRecoveryPointTime': datetime(2015, 1, 1),
'TapeSizeInBytes': 123,
'TapeStatus': 'string'
},
],
'Marker': 'string'
}
Response Structure
|
Examples
Returns a list of virtual tape recovery points that are available for the specified gateway-VTL.
response = client.describe_tape_recovery_points(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
Limit=1,
Marker='1',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'Marker': '1',
'TapeRecoveryPointInfos': [
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999:tape/AMZN01A2A4',
'TapeRecoveryPointTime': datetime(2016, 12, 16, 13, 50, 0, 4, 351, 0),
'TapeSizeInBytes': 1471550497,
'TapeStatus': 'AVAILABLE',
},
],
'ResponseMetadata': {
'...': '...',
},
}
describe_tapes(**kwargs)¶Returns a description of the specified Amazon Resource Name (ARN) of virtual tapes. If a TapeARN is not specified, returns a description of all virtual tapes associated with the specified gateway. This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.describe_tapes(
GatewayARN='string',
TapeARNs=[
'string',
],
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'Tapes': [
{
'TapeARN': 'string',
'TapeBarcode': 'string',
'TapeCreatedDate': datetime(2015, 1, 1),
'TapeSizeInBytes': 123,
'TapeStatus': 'string',
'VTLDevice': 'string',
'Progress': 123.0,
'TapeUsedInBytes': 123
},
],
'Marker': 'string'
}
Response Structure
|
Examples
Returns a description of the specified Amazon Resource Name (ARN) of virtual tapes. If a TapeARN is not specified, returns a description of all virtual tapes.
response = client.describe_tapes(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
Limit=2,
Marker='1',
TapeARNs=[
'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST04A2A1',
'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST05A2A0',
],
)
print(response)
Expected Output:
{
'Marker': '1',
'Tapes': [
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST04A2A1',
'TapeBarcode': 'TEST04A2A1',
'TapeSizeInBytes': 107374182400,
'TapeStatus': 'AVAILABLE',
},
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST05A2A0',
'TapeBarcode': 'TEST05A2A0',
'TapeSizeInBytes': 107374182400,
'TapeStatus': 'AVAILABLE',
},
],
'ResponseMetadata': {
'...': '...',
},
}
describe_upload_buffer(**kwargs)¶Returns information about the upload buffer of a gateway. This operation is supported for the stored volume, cached volume and tape gateway architectures.
The response includes disk IDs that are configured as upload buffer space, and it includes the amount of upload buffer space allocated and used.
See also: AWS API Documentation
Request Syntax
response = client.describe_upload_buffer(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'DiskIds': [
'string',
],
'UploadBufferUsedInBytes': 123,
'UploadBufferAllocatedInBytes': 123
}
Response Structure
|
Examples
Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated/used.
response = client.describe_upload_buffer(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'DiskIds': [
'pci-0000:03:00.0-scsi-0:0:0:0',
'pci-0000:04:00.0-scsi-0:1:0:0',
],
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'UploadBufferAllocatedInBytes': 0,
'UploadBufferUsedInBytes': 161061273600,
'ResponseMetadata': {
'...': '...',
},
}
Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated and used.
response = client.describe_upload_buffer(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'DiskIds': [
'pci-0000:03:00.0-scsi-0:0:0:0',
'pci-0000:04:00.0-scsi-0:1:0:0',
],
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'UploadBufferAllocatedInBytes': 161061273600,
'UploadBufferUsedInBytes': 0,
'ResponseMetadata': {
'...': '...',
},
}
describe_vtl_devices(**kwargs)¶Returns a description of virtual tape library (VTL) devices for the specified tape gateway. In the response, AWS Storage Gateway returns VTL device information.
This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.describe_vtl_devices(
GatewayARN='string',
VTLDeviceARNs=[
'string',
],
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string',
'VTLDevices': [
{
'VTLDeviceARN': 'string',
'VTLDeviceType': 'string',
'VTLDeviceVendor': 'string',
'VTLDeviceProductIdentifier': 'string',
'DeviceiSCSIAttributes': {
'TargetARN': 'string',
'NetworkInterfaceId': 'string',
'NetworkInterfacePort': 123,
'ChapEnabled': True|False
}
},
],
'Marker': 'string'
}
Response Structure
|
Examples
Returns a description of virtual tape library (VTL) devices for the specified gateway.
response = client.describe_vtl_devices(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
Limit=123,
Marker='1',
VTLDeviceARNs=[
],
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
'Marker': '1',
'VTLDevices': [
{
'DeviceiSCSIAttributes': {
'ChapEnabled': False,
'NetworkInterfaceId': '10.243.43.207',
'NetworkInterfacePort': 3260,
'TargetARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-mediachanger',
},
'VTLDeviceARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001',
'VTLDeviceProductIdentifier': 'L700',
'VTLDeviceType': 'Medium Changer',
'VTLDeviceVendor': 'STK',
},
{
'DeviceiSCSIAttributes': {
'ChapEnabled': False,
'NetworkInterfaceId': '10.243.43.209',
'NetworkInterfacePort': 3260,
'TargetARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-01',
},
'VTLDeviceARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00001',
'VTLDeviceProductIdentifier': 'ULT3580-TD5',
'VTLDeviceType': 'Tape Drive',
'VTLDeviceVendor': 'IBM',
},
{
'DeviceiSCSIAttributes': {
'ChapEnabled': False,
'NetworkInterfaceId': '10.243.43.209',
'NetworkInterfacePort': 3260,
'TargetARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-02',
},
'VTLDeviceARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00002',
'VTLDeviceProductIdentifier': 'ULT3580-TD5',
'VTLDeviceType': 'Tape Drive',
'VTLDeviceVendor': 'IBM',
},
],
'ResponseMetadata': {
'...': '...',
},
}
describe_working_storage(**kwargs)¶Returns information about the working storage of a gateway. This operation is only supported in the stored volumes gateway architecture. This operation is deprecated in cached volumes API version (20120630). Use DescribeUploadBuffer instead.
Note
Working storage is also referred to as upload buffer. You can also use the DescribeUploadBuffer operation to add upload buffer to a stored volume gateway.
The response includes disk IDs that are configured as working storage, and it includes the amount of working storage allocated and used.
See also: AWS API Documentation
Request Syntax
response = client.describe_working_storage(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'DiskIds': [
'string',
],
'WorkingStorageUsedInBytes': 123,
'WorkingStorageAllocatedInBytes': 123
}
Response Structure
|
Examples
This operation is supported only for the gateway-stored volume architecture. This operation is deprecated in cached-volumes API version (20120630). Use DescribeUploadBuffer instead.
response = client.describe_working_storage(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'DiskIds': [
'pci-0000:03:00.0-scsi-0:0:0:0',
'pci-0000:03:00.0-scsi-0:0:1:0',
],
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'WorkingStorageAllocatedInBytes': 2199023255552,
'WorkingStorageUsedInBytes': 789207040,
'ResponseMetadata': {
'...': '...',
},
}
disable_gateway(**kwargs)¶Disables a tape gateway when the gateway is no longer functioning. For example, if your gateway VM is damaged, you can disable the gateway so you can recover virtual tapes.
Use this operation for a tape gateway that is not reachable or not functioning. This operation is only supported in the tape gateway architectures.
Warning
Once a gateway is disabled it cannot be enabled.
See also: AWS API Documentation
Request Syntax
response = client.disable_gateway(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string'
}
Response Structure
|
Examples
Disables a gateway when the gateway is no longer functioning. Use this operation for a gateway-VTL that is not reachable or not functioning.
response = client.disable_gateway(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
generate_presigned_url(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)¶Generate a presigned url given a client, its method, and arguments
| Parameters: |
|
|---|---|
| Returns: | The presigned url |
get_paginator(operation_name)¶Create a paginator for an operation.
| Parameters: | operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo, and you’d normally invoke the
operation as client.create_foo(**kwargs), if the
create_foo operation can be paginated, you can use the
call client.get_paginator("create_foo"). |
|---|---|
| Raises: | OperationNotPageableError – Raised if the operation is not
pageable. You can use the client.can_paginate method to
check if an operation is pageable. |
| Return type: | L{botocore.paginate.Paginator} |
| Returns: | A paginator object. |
get_waiter(waiter_name)¶Gets a list of the file shares for a specific file gateway, or the list of file shares that belong to the calling user account. This operation is only supported in the file gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.list_file_shares(
GatewayARN='string',
Limit=123,
Marker='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'Marker': 'string',
'NextMarker': 'string',
'FileShareInfoList': [
{
'FileShareARN': 'string',
'FileShareId': 'string',
'FileShareStatus': 'string',
'GatewayARN': 'string'
},
]
}
Response Structure
|
list_gateways(**kwargs)¶Lists gateways owned by an AWS account in a region specified in the request. The returned list is ordered by gateway Amazon Resource Name (ARN).
By default, the operation returns a maximum of 100 gateways. This operation supports pagination that allows you to optionally reduce the number of gateways returned in a response.
If you have more gateways than are returned in a response (that is, the response returns only a truncated list of your gateways), the response contains a marker that you can specify in your next request to fetch the next page of gateways.
See also: AWS API Documentation
Request Syntax
response = client.list_gateways(
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'Gateways': [
{
'GatewayId': 'string',
'GatewayARN': 'string',
'GatewayType': 'string',
'GatewayOperationalState': 'string',
'GatewayName': 'string'
},
],
'Marker': 'string'
}
Response Structure
|
Examples
Lists gateways owned by an AWS account in a specified region as requested. Results are sorted by gateway ARN up to a maximum of 100 gateways.
response = client.list_gateways(
Limit=2,
Marker='1',
)
print(response)
Expected Output:
{
'Gateways': [
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
},
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-23A4567C',
},
],
'Marker': '1',
'ResponseMetadata': {
'...': '...',
},
}
list_local_disks(**kwargs)¶Returns a list of the gateway’s local disks. To specify which gateway to describe, you use the Amazon Resource Name (ARN) of the gateway in the body of the request.
The request returns a list of all disks, specifying which are configured as working storage, cache storage, or stored volume or not configured at all. The response includes a DiskStatus field. This field can have a value of present (the disk is available to use), missing (the disk is no longer connected to the gateway), or mismatch (the disk node is occupied by a disk that has incorrect metadata or the disk content is corrupted).
See also: AWS API Documentation
Request Syntax
response = client.list_local_disks(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'Disks': [
{
'DiskId': 'string',
'DiskPath': 'string',
'DiskNode': 'string',
'DiskStatus': 'string',
'DiskSizeInBytes': 123,
'DiskAllocationType': 'string',
'DiskAllocationResource': 'string'
},
]
}
Response Structure
|
Examples
The request returns a list of all disks, specifying which are configured as working storage, cache storage, or stored volume or not configured at all.
response = client.list_local_disks(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'Disks': [
{
'DiskAllocationType': 'CACHE_STORAGE',
'DiskId': 'pci-0000:03:00.0-scsi-0:0:0:0',
'DiskNode': 'SCSI(0:0)',
'DiskPath': '/dev/sda',
'DiskSizeInBytes': 1099511627776,
'DiskStatus': 'missing',
},
{
'DiskAllocationResource': '',
'DiskAllocationType': 'UPLOAD_BUFFER',
'DiskId': 'pci-0000:03:00.0-scsi-0:0:1:0',
'DiskNode': 'SCSI(0:1)',
'DiskPath': '/dev/sdb',
'DiskSizeInBytes': 1099511627776,
'DiskStatus': 'present',
},
],
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
Lists the tags that have been added to the specified resource. This operation is only supported in the cached volume, stored volume and tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
ResourceARN='string',
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'ResourceARN': 'string',
'Marker': 'string',
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
]
}
Response Structure
|
Examples
Lists the tags that have been added to the specified resource.
response = client.list_tags_for_resource(
Limit=1,
Marker='1',
ResourceARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B',
)
print(response)
Expected Output:
{
'Marker': '1',
'ResourceARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B',
'Tags': [
{
'Key': 'Dev Gatgeway Region',
'Value': 'East Coast',
},
],
'ResponseMetadata': {
'...': '...',
},
}
list_tapes(**kwargs)¶Lists virtual tapes in your virtual tape library (VTL) and your virtual tape shelf (VTS). You specify the tapes to list by specifying one or more tape Amazon Resource Names (ARNs). If you don’t specify a tape ARN, the operation lists all virtual tapes in both your VTL and VTS.
This operation supports pagination. By default, the operation returns a maximum of up to 100 tapes. You can optionally specify the Limit parameter in the body to limit the number of tapes in the response. If the number of tapes returned in the response is truncated, the response includes a Marker element that you can use in your subsequent request to retrieve the next set of tapes. This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.list_tapes(
TapeARNs=[
'string',
],
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeInfos': [
{
'TapeARN': 'string',
'TapeBarcode': 'string',
'TapeSizeInBytes': 123,
'TapeStatus': 'string',
'GatewayARN': 'string'
},
],
'Marker': 'string'
}
Response Structure
|
list_volume_initiators(**kwargs)¶Lists iSCSI initiators that are connected to a volume. You can use this operation to determine whether a volume is being used or not. This operation is only supported in the cached volume and stored volume gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.list_volume_initiators(
VolumeARN='string'
)
| Parameters: | VolumeARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the volume. Use the ListVolumes operation to return a list of gateway volumes for the gateway. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'Initiators': [
'string',
]
}
Response Structure
|
list_volume_recovery_points(**kwargs)¶Lists the recovery points for a specified gateway. This operation is only supported in the cached volume gateway architecture.
Each cache volume has one recovery point. A volume recovery point is a point in time at which all data of the volume is consistent and from which you can create a snapshot or clone a new cached volume from a source volume. To create a snapshot from a volume recovery point use the CreateSnapshotFromVolumeRecoveryPoint operation.
See also: AWS API Documentation
Request Syntax
response = client.list_volume_recovery_points(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string',
'VolumeRecoveryPointInfos': [
{
'VolumeARN': 'string',
'VolumeSizeInBytes': 123,
'VolumeUsageInBytes': 123,
'VolumeRecoveryPointTime': 'string'
},
]
}
Response Structure
|
Examples
Lists the recovery points for a specified gateway in which all data of the volume is consistent and can be used to create a snapshot.
response = client.list_volume_recovery_points(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'VolumeRecoveryPointInfos': [
{
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'VolumeRecoveryPointTime': '2012-09-04T21:08:44.627Z',
'VolumeSizeInBytes': 536870912000,
},
],
'ResponseMetadata': {
'...': '...',
},
}
list_volumes(**kwargs)¶Lists the iSCSI stored volumes of a gateway. Results are sorted by volume ARN. The response includes only the volume ARNs. If you want additional volume information, use the DescribeStorediSCSIVolumes or the DescribeCachediSCSIVolumes API.
The operation supports pagination. By default, the operation returns a maximum of up to 100 volumes. You can optionally specify the Limit field in the body to limit the number of volumes in the response. If the number of volumes returned in the response is truncated, the response includes a Marker field. You can use this Marker value in your subsequent request to retrieve the next set of volumes. This operation is only supported in the cached volume and stored volume gateway architectures.
See also: AWS API Documentation
Request Syntax
response = client.list_volumes(
GatewayARN='string',
Marker='string',
Limit=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string',
'Marker': 'string',
'VolumeInfos': [
{
'VolumeARN': 'string',
'VolumeId': 'string',
'GatewayARN': 'string',
'GatewayId': 'string',
'VolumeType': 'string',
'VolumeSizeInBytes': 123
},
]
}
Response Structure
|
Examples
Lists the iSCSI stored volumes of a gateway. Results are sorted by volume ARN up to a maximum of 100 volumes.
response = client.list_volumes(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
Limit=2,
Marker='1',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'Marker': '1',
'VolumeInfos': [
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'GatewayId': 'sgw-12A3456B',
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'VolumeId': 'vol-1122AABB',
'VolumeSizeInBytes': 107374182400,
'VolumeType': 'STORED',
},
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C',
'GatewayId': 'sgw-gw-13B4567C',
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C/volume/vol-3344CCDD',
'VolumeId': 'vol-1122AABB',
'VolumeSizeInBytes': 107374182400,
'VolumeType': 'STORED',
},
],
'ResponseMetadata': {
'...': '...',
},
}
refresh_cache(**kwargs)¶Refreshes the cache for the specified file share. This operation finds objects in the Amazon S3 bucket that were added or removed since the gateway last listed the bucket’s contents and cached the results.
See also: AWS API Documentation
Request Syntax
response = client.refresh_cache(
FileShareARN='string'
)
| Parameters: | FileShareARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the file share. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'FileShareARN': 'string'
}
Response Structure
|
Removes one or more tags from the specified resource. This operation is only supported in the cached volume, stored volume and tape gateway architectures.
See also: AWS API Documentation
Request Syntax
response = client.remove_tags_from_resource(
ResourceARN='string',
TagKeys=[
'string',
]
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'ResourceARN': 'string'
}
Response Structure
|
Examples
Lists the iSCSI stored volumes of a gateway. Removes one or more tags from the specified resource.
response = client.remove_tags_from_resource(
ResourceARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B',
TagKeys=[
'Dev Gatgeway Region',
'East Coast',
],
)
print(response)
Expected Output:
{
'ResourceARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B',
'ResponseMetadata': {
'...': '...',
},
}
reset_cache(**kwargs)¶Resets all cache disks that have encountered a error and makes the disks available for reconfiguration as cache storage. If your cache disk encounters a error, the gateway prevents read and write operations on virtual tapes in the gateway. For example, an error can occur when a disk is corrupted or removed from the gateway. When a cache is reset, the gateway loses its cache storage. At this point you can reconfigure the disks as cache disks. This operation is only supported in the cached volume,tape and file gateway architectures.
Warning
If the cache disk you are resetting contains data that has not been uploaded to Amazon S3 yet, that data can be lost. After you reset cache disks, there will be no configured cache disks left in the gateway, so you must configure at least one new cache disk for your gateway to function properly.
See also: AWS API Documentation
Request Syntax
response = client.reset_cache(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string'
}
Response Structure
|
Examples
Resets all cache disks that have encountered a error and makes the disks available for reconfiguration as cache storage.
response = client.reset_cache(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C',
'ResponseMetadata': {
'...': '...',
},
}
retrieve_tape_archive(**kwargs)¶Retrieves an archived virtual tape from the virtual tape shelf (VTS) to a tape gateway. Virtual tapes archived in the VTS are not associated with any gateway. However after a tape is retrieved, it is associated with a gateway, even though it is also listed in the VTS, that is, archive. This operation is only supported in the tape gateway architecture.
Once a tape is successfully retrieved to a gateway, it cannot be retrieved again to another gateway. You must archive the tape again before you can retrieve it to another gateway. This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.retrieve_tape_archive(
TapeARN='string',
GatewayARN='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeARN': 'string'
}
Response Structure
|
Examples
Retrieves an archived virtual tape from the virtual tape shelf (VTS) to a gateway-VTL. Virtual tapes archived in the VTS are not associated with any gateway.
response = client.retrieve_tape_archive(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
TapeARN='arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF',
)
print(response)
Expected Output:
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF',
'ResponseMetadata': {
'...': '...',
},
}
retrieve_tape_recovery_point(**kwargs)¶Retrieves the recovery point for the specified virtual tape. This operation is only supported in the tape gateway architecture.
A recovery point is a point in time view of a virtual tape at which all the data on the tape is consistent. If your gateway crashes, virtual tapes that have recovery points can be recovered to a new gateway.
Note
The virtual tape can be retrieved to only one gateway. The retrieved tape is read-only. The virtual tape can be retrieved to only a tape gateway. There is no charge for retrieving recovery points.
See also: AWS API Documentation
Request Syntax
response = client.retrieve_tape_recovery_point(
TapeARN='string',
GatewayARN='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeARN': 'string'
}
Response Structure
|
Examples
Retrieves the recovery point for the specified virtual tape.
response = client.retrieve_tape_recovery_point(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
TapeARN='arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF',
)
print(response)
Expected Output:
{
'TapeARN': 'arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF',
'ResponseMetadata': {
'...': '...',
},
}
set_local_console_password(**kwargs)¶Sets the password for your VM local console. When you log in to the local console for the first time, you log in to the VM with the default credentials. We recommend that you set a new password. You don’t need to know the default password to set a new password.
See also: AWS API Documentation
Request Syntax
response = client.set_local_console_password(
GatewayARN='string',
LocalConsolePassword='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
Sets the password for your VM local console.
response = client.set_local_console_password(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
LocalConsolePassword='PassWordMustBeAtLeast6Chars.',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
shutdown_gateway(**kwargs)¶Shuts down a gateway. To specify which gateway to shut down, use the Amazon Resource Name (ARN) of the gateway in the body of your request.
The operation shuts down the gateway service component running in the gateway’s virtual machine (VM) and not the host VM.
Note
If you want to shut down the VM, it is recommended that you first shut down the gateway component in the VM to avoid unpredictable conditions.
After the gateway is shutdown, you cannot call any other API except StartGateway , DescribeGatewayInformation , and ListGateways . For more information, see ActivateGateway . Your applications cannot read from or write to the gateway’s storage volumes, and there are no snapshots taken.
Note
When you make a shutdown request, you will get a 200 OK success response immediately. However, it might take some time for the gateway to shut down. You can call the DescribeGatewayInformation API to check the status. For more information, see ActivateGateway .
If do not intend to use the gateway again, you must delete the gateway (using DeleteGateway ) to no longer pay software charges associated with the gateway.
See also: AWS API Documentation
Request Syntax
response = client.shutdown_gateway(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string'
}
Response Structure
|
Examples
This operation shuts down the gateway service component running in the storage gateway’s virtual machine (VM) and not the VM.
response = client.shutdown_gateway(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
start_gateway(**kwargs)¶Starts a gateway that you previously shut down (see ShutdownGateway ). After the gateway starts, you can then make other API calls, your applications can read from or write to the gateway’s storage volumes and you will be able to take snapshot backups.
Note
When you make a request, you will get a 200 OK success response immediately. However, it might take some time for the gateway to be ready. You should call DescribeGatewayInformation and check the status before making any additional API calls. For more information, see ActivateGateway .
To specify which gateway to start, use the Amazon Resource Name (ARN) of the gateway in your request.
See also: AWS API Documentation
Request Syntax
response = client.start_gateway(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string'
}
Response Structure
|
Examples
Starts a gateway service that was previously shut down.
response = client.start_gateway(
GatewayARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
update_bandwidth_rate_limit(**kwargs)¶Updates the bandwidth rate limits of a gateway. You can update both the upload and download bandwidth rate limit or specify only one of the two. If you don’t set a bandwidth rate limit, the existing rate limit remains.
By default, a gateway’s bandwidth rate limits are not set. If you don’t set any limit, the gateway does not have any limitations on its bandwidth usage and could potentially use the maximum available bandwidth.
To specify which gateway to update, use the Amazon Resource Name (ARN) of the gateway in your request.
See also: AWS API Documentation
Request Syntax
response = client.update_bandwidth_rate_limit(
GatewayARN='string',
AverageUploadRateLimitInBitsPerSec=123,
AverageDownloadRateLimitInBitsPerSec=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
Updates the bandwidth rate limits of a gateway. Both the upload and download bandwidth rate limit can be set, or either one of the two. If a new limit is not set, the existing rate limit remains.
response = client.update_bandwidth_rate_limit(
AverageDownloadRateLimitInBitsPerSec=102400,
AverageUploadRateLimitInBitsPerSec=51200,
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
update_chap_credentials(**kwargs)¶Updates the Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target. By default, a gateway does not have CHAP enabled; however, for added security, you might use it.
Warning
When you update CHAP credentials, all existing connections on the target are closed and initiators must reconnect with the new credentials.
See also: AWS API Documentation
Request Syntax
response = client.update_chap_credentials(
TargetARN='string',
SecretToAuthenticateInitiator='string',
InitiatorName='string',
SecretToAuthenticateTarget='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TargetARN': 'string',
'InitiatorName': 'string'
}
Response Structure
|
Examples
Updates the Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target.
response = client.update_chap_credentials(
InitiatorName='iqn.1991-05.com.microsoft:computername.domain.example.com',
SecretToAuthenticateInitiator='111111111111',
SecretToAuthenticateTarget='222222222222',
TargetARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
)
print(response)
Expected Output:
{
'InitiatorName': 'iqn.1991-05.com.microsoft:computername.domain.example.com',
'TargetARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume',
'ResponseMetadata': {
'...': '...',
},
}
update_gateway_information(**kwargs)¶Updates a gateway’s metadata, which includes the gateway’s name and time zone. To specify which gateway to update, use the Amazon Resource Name (ARN) of the gateway in your request.
Note
For Gateways activated after September 2, 2015, the gateway’s ARN contains the gateway ID rather than the gateway name. However, changing the name of the gateway has no effect on the gateway’s ARN.
See also: AWS API Documentation
Request Syntax
response = client.update_gateway_information(
GatewayARN='string',
GatewayName='string',
GatewayTimezone='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string',
'GatewayName': 'string'
}
Response Structure
|
Examples
Updates a gateway’s metadata, which includes the gateway’s name and time zone.
response = client.update_gateway_information(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
GatewayName='MyGateway2',
GatewayTimezone='GMT-12:00',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'GatewayName': '',
'ResponseMetadata': {
'...': '...',
},
}
update_gateway_software_now(**kwargs)¶Updates the gateway virtual machine (VM) software. The request immediately triggers the software update.
Note
When you make this request, you get a 200 OK success response immediately. However, it might take some time for the update to complete. You can call DescribeGatewayInformation to verify the gateway is in the STATE_RUNNING state.
Warning
A software update forces a system restart of your gateway. You can minimize the chance of any disruption to your applications by increasing your iSCSI Initiators’ timeouts. For more information about increasing iSCSI Initiator timeouts for Windows and Linux, see Customizing Your Windows iSCSI Settings and Customizing Your Linux iSCSI Settings , respectively.
See also: AWS API Documentation
Request Syntax
response = client.update_gateway_software_now(
GatewayARN='string'
)
| Parameters: | GatewayARN (string) – [REQUIRED] The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region. |
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'GatewayARN': 'string'
}
Response Structure
|
Examples
Updates the gateway virtual machine (VM) software. The request immediately triggers the software update.
response = client.update_gateway_software_now(
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
update_maintenance_start_time(**kwargs)¶Updates a gateway’s weekly maintenance start time information, including day and time of the week. The maintenance time is the time in your gateway’s time zone.
See also: AWS API Documentation
Request Syntax
response = client.update_maintenance_start_time(
GatewayARN='string',
HourOfDay=123,
MinuteOfHour=123,
DayOfWeek=123
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string'
}
Response Structure
|
Examples
Updates a gateway’s weekly maintenance start time information, including day and time of the week. The maintenance time is in your gateway’s time zone.
response = client.update_maintenance_start_time(
DayOfWeek=2,
GatewayARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
HourOfDay=0,
MinuteOfHour=30,
)
print(response)
Expected Output:
{
'GatewayARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B',
'ResponseMetadata': {
'...': '...',
},
}
Updates a file share. This operation is only supported in the file gateway architecture.
Note
To leave a file share field unchanged, set the corresponding input field to null.
Updates the following file share setting:
Note
To leave a file share field unchanged, set the corresponding input field to null. This operation is only supported in file gateways.
See also: AWS API Documentation
Request Syntax
response = client.update_nfs_file_share(
FileShareARN='string',
KMSEncrypted=True|False,
KMSKey='string',
NFSFileShareDefaults={
'FileMode': 'string',
'DirectoryMode': 'string',
'GroupId': 123,
'OwnerId': 123
},
DefaultStorageClass='string',
ClientList=[
'string',
],
Squash='string',
ReadOnly=True|False
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'FileShareARN': 'string'
}
Response Structure
|
update_snapshot_schedule(**kwargs)¶Updates a snapshot schedule configured for a gateway volume. This operation is only supported in the cached volume and stored volume gateway architectures.
The default snapshot schedule for volume is once every 24 hours, starting at the creation time of the volume. You can use this API to change the snapshot schedule configured for the volume.
In the request you must identify the gateway volume whose snapshot schedule you want to update, and the schedule information, including when you want the snapshot to begin on a day and the frequency (in hours) of snapshots.
See also: AWS API Documentation
Request Syntax
response = client.update_snapshot_schedule(
VolumeARN='string',
StartAt=123,
RecurrenceInHours=123,
Description='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'VolumeARN': 'string'
}
Response Structure
|
Examples
Updates a snapshot schedule configured for a gateway volume.
response = client.update_snapshot_schedule(
Description='Hourly snapshot',
RecurrenceInHours=1,
StartAt=0,
VolumeARN='arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
)
print(response)
Expected Output:
{
'VolumeARN': 'arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB',
'ResponseMetadata': {
'...': '...',
},
}
update_vtl_device_type(**kwargs)¶Updates the type of medium changer in a tape gateway. When you activate a tape gateway, you select a medium changer type for the tape gateway. This operation enables you to select a different type of medium changer after a tape gateway is activated. This operation is only supported in the tape gateway architecture.
See also: AWS API Documentation
Request Syntax
response = client.update_vtl_device_type(
VTLDeviceARN='string',
DeviceType='string'
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'VTLDeviceARN': 'string'
}
Response Structure
|
Examples
Updates the type of medium changer in a gateway-VTL after a gateway-VTL is activated.
response = client.update_vtl_device_type(
DeviceType='Medium Changer',
VTLDeviceARN='arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001',
)
print(response)
Expected Output:
{
'VTLDeviceARN': 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001',
'ResponseMetadata': {
'...': '...',
},
}
The available paginators are:
StorageGateway.Paginator.DescribeTapeArchivesStorageGateway.Paginator.DescribeTapeRecoveryPointsStorageGateway.Paginator.DescribeTapesStorageGateway.Paginator.DescribeVTLDevicesStorageGateway.Paginator.ListGatewaysStorageGateway.Paginator.ListVolumesStorageGateway.Paginator.DescribeTapeArchives¶paginator = client.get_paginator('describe_tape_archives')
paginate(**kwargs)¶Creates an iterator that will paginate through responses from StorageGateway.Client.describe_tape_archives().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
TapeARNs=[
'string',
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'TapeArchives': [
{
'TapeARN': 'string',
'TapeBarcode': 'string',
'TapeCreatedDate': datetime(2015, 1, 1),
'TapeSizeInBytes': 123,
'CompletionTime': datetime(2015, 1, 1),
'RetrievedTo': 'string',
'TapeStatus': 'string',
'TapeUsedInBytes': 123
},
],
'NextToken': 'string'
}
Response Structure
|
StorageGateway.Paginator.DescribeTapeRecoveryPoints¶paginator = client.get_paginator('describe_tape_recovery_points')
paginate(**kwargs)¶Creates an iterator that will paginate through responses from StorageGateway.Client.describe_tape_recovery_points().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
GatewayARN='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string',
'TapeRecoveryPointInfos': [
{
'TapeARN': 'string',
'TapeRecoveryPointTime': datetime(2015, 1, 1),
'TapeSizeInBytes': 123,
'TapeStatus': 'string'
},
],
'NextToken': 'string'
}
Response Structure
|
StorageGateway.Paginator.DescribeTapes¶paginator = client.get_paginator('describe_tapes')
paginate(**kwargs)¶Creates an iterator that will paginate through responses from StorageGateway.Client.describe_tapes().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
GatewayARN='string',
TapeARNs=[
'string',
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'Tapes': [
{
'TapeARN': 'string',
'TapeBarcode': 'string',
'TapeCreatedDate': datetime(2015, 1, 1),
'TapeSizeInBytes': 123,
'TapeStatus': 'string',
'VTLDevice': 'string',
'Progress': 123.0,
'TapeUsedInBytes': 123
},
],
'NextToken': 'string'
}
Response Structure
|
StorageGateway.Paginator.DescribeVTLDevices¶paginator = client.get_paginator('describe_vtl_devices')
paginate(**kwargs)¶Creates an iterator that will paginate through responses from StorageGateway.Client.describe_vtl_devices().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
GatewayARN='string',
VTLDeviceARNs=[
'string',
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string',
'VTLDevices': [
{
'VTLDeviceARN': 'string',
'VTLDeviceType': 'string',
'VTLDeviceVendor': 'string',
'VTLDeviceProductIdentifier': 'string',
'DeviceiSCSIAttributes': {
'TargetARN': 'string',
'NetworkInterfaceId': 'string',
'NetworkInterfacePort': 123,
'ChapEnabled': True|False
}
},
],
'NextToken': 'string'
}
Response Structure
|
StorageGateway.Paginator.ListGateways¶paginator = client.get_paginator('list_gateways')
paginate(**kwargs)¶Creates an iterator that will paginate through responses from StorageGateway.Client.list_gateways().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
| Parameters: | PaginationConfig (dict) – A dictionary that provides parameters to control pagination.
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax{
'Gateways': [
{
'GatewayId': 'string',
'GatewayARN': 'string',
'GatewayType': 'string',
'GatewayOperationalState': 'string',
'GatewayName': 'string'
},
],
'NextToken': 'string'
}
Response Structure
|
StorageGateway.Paginator.ListVolumes¶paginator = client.get_paginator('list_volumes')
paginate(**kwargs)¶Creates an iterator that will paginate through responses from StorageGateway.Client.list_volumes().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
GatewayARN='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
| Parameters: |
|
|---|---|
| Return type: | dict |
| Returns: | Response Syntax {
'GatewayARN': 'string',
'VolumeInfos': [
{
'VolumeARN': 'string',
'VolumeId': 'string',
'GatewayARN': 'string',
'GatewayId': 'string',
'VolumeType': 'string',
'VolumeSizeInBytes': 123
},
],
'NextToken': 'string'
}
Response Structure
|