Skip to content

StorageGatewayClient

Index > StorageGateway > StorageGatewayClient

Auto-generated documentation for StorageGateway type annotations stubs module types-aiobotocore-storagegateway.

StorageGatewayClient

Type annotations and code completion for session.client("storagegateway") boto3 documentation

Usage example
from aioboto3.session import Session
from types_aiobotocore_storagegateway.client import StorageGatewayClient

session = Session()
async with session.client("storagegateway") as client:
    client: StorageGatewayClient

Exceptions

aioboto3 client exceptions are generated in runtime. This class provides code completion for session.client("storagegateway").exceptions structure.

Usage example
async with session.client("storagegateway") as client:
    try:
        do_something(client)
    except (
            client.ClientError,
        client.InternalServerError,
        client.InvalidGatewayRequestException,
        client.ServiceUnavailableError,
    ) as e:
        print(e)
Type checking example
from types_aiobotocore_storagegateway.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods

activate_gateway

Activates the gateway you previously deployed on your host.

Type annotations and code completion for session.client("storagegateway").activate_gateway method. boto3 documentation

Method definition
await def activate_gateway(
    self,
    *,
    ActivationKey: str,
    GatewayName: str,
    GatewayTimezone: str,
    GatewayRegion: str,
    GatewayType: str = ...,
    TapeDriveType: str = ...,
    MediumChangerType: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> ActivateGatewayOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See ActivateGatewayOutputTypeDef
Usage example with kwargs
kwargs: ActivateGatewayInputRequestTypeDef = {  # (1)
    "ActivationKey": ...,
    "GatewayName": ...,
    "GatewayTimezone": ...,
    "GatewayRegion": ...,
}

parent.activate_gateway(**kwargs)
  1. See ActivateGatewayInputRequestTypeDef

add_cache

Configures one or more gateway local disks as cache for a gateway.

Type annotations and code completion for session.client("storagegateway").add_cache method. boto3 documentation

Method definition
await def add_cache(
    self,
    *,
    GatewayARN: str,
    DiskIds: Sequence[str],
) -> AddCacheOutputTypeDef:  # (1)
    ...
  1. See AddCacheOutputTypeDef
Usage example with kwargs
kwargs: AddCacheInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "DiskIds": ...,
}

parent.add_cache(**kwargs)
  1. See AddCacheInputRequestTypeDef

add_tags_to_resource

Adds one or more tags to the specified resource.

Type annotations and code completion for session.client("storagegateway").add_tags_to_resource method. boto3 documentation

Method definition
await def add_tags_to_resource(
    self,
    *,
    ResourceARN: str,
    Tags: Sequence[TagTypeDef],  # (1)
) -> AddTagsToResourceOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See AddTagsToResourceOutputTypeDef
Usage example with kwargs
kwargs: AddTagsToResourceInputRequestTypeDef = {  # (1)
    "ResourceARN": ...,
    "Tags": ...,
}

parent.add_tags_to_resource(**kwargs)
  1. See AddTagsToResourceInputRequestTypeDef

add_upload_buffer

Configures one or more gateway local disks as upload buffer for a specified gateway.

Type annotations and code completion for session.client("storagegateway").add_upload_buffer method. boto3 documentation

Method definition
await def add_upload_buffer(
    self,
    *,
    GatewayARN: str,
    DiskIds: Sequence[str],
) -> AddUploadBufferOutputTypeDef:  # (1)
    ...
  1. See AddUploadBufferOutputTypeDef
Usage example with kwargs
kwargs: AddUploadBufferInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "DiskIds": ...,
}

parent.add_upload_buffer(**kwargs)
  1. See AddUploadBufferInputRequestTypeDef

add_working_storage

Configures one or more gateway local disks as working storage for a gateway.

Type annotations and code completion for session.client("storagegateway").add_working_storage method. boto3 documentation

Method definition
await def add_working_storage(
    self,
    *,
    GatewayARN: str,
    DiskIds: Sequence[str],
) -> AddWorkingStorageOutputTypeDef:  # (1)
    ...
  1. See AddWorkingStorageOutputTypeDef
Usage example with kwargs
kwargs: AddWorkingStorageInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "DiskIds": ...,
}

parent.add_working_storage(**kwargs)
  1. See AddWorkingStorageInputRequestTypeDef

assign_tape_pool

Assigns a tape to a tape pool for archiving.

Type annotations and code completion for session.client("storagegateway").assign_tape_pool method. boto3 documentation

Method definition
await def assign_tape_pool(
    self,
    *,
    TapeARN: str,
    PoolId: str,
    BypassGovernanceRetention: bool = ...,
) -> AssignTapePoolOutputTypeDef:  # (1)
    ...
  1. See AssignTapePoolOutputTypeDef
Usage example with kwargs
kwargs: AssignTapePoolInputRequestTypeDef = {  # (1)
    "TapeARN": ...,
    "PoolId": ...,
}

parent.assign_tape_pool(**kwargs)
  1. See AssignTapePoolInputRequestTypeDef

associate_file_system

Associate an Amazon FSx file system with the FSx File Gateway.

Type annotations and code completion for session.client("storagegateway").associate_file_system method. boto3 documentation

Method definition
await def associate_file_system(
    self,
    *,
    UserName: str,
    Password: str,
    ClientToken: str,
    GatewayARN: str,
    LocationARN: str,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
    AuditDestinationARN: str = ...,
    CacheAttributes: CacheAttributesTypeDef = ...,  # (2)
    EndpointNetworkConfiguration: EndpointNetworkConfigurationTypeDef = ...,  # (3)
) -> AssociateFileSystemOutputTypeDef:  # (4)
    ...
  1. See TagTypeDef
  2. See CacheAttributesTypeDef
  3. See EndpointNetworkConfigurationTypeDef
  4. See AssociateFileSystemOutputTypeDef
Usage example with kwargs
kwargs: AssociateFileSystemInputRequestTypeDef = {  # (1)
    "UserName": ...,
    "Password": ...,
    "ClientToken": ...,
    "GatewayARN": ...,
    "LocationARN": ...,
}

parent.associate_file_system(**kwargs)
  1. See AssociateFileSystemInputRequestTypeDef

attach_volume

Connects a volume to an iSCSI connection and then attaches the volume to the specified gateway.

Type annotations and code completion for session.client("storagegateway").attach_volume method. boto3 documentation

Method definition
await def attach_volume(
    self,
    *,
    GatewayARN: str,
    VolumeARN: str,
    NetworkInterfaceId: str,
    TargetName: str = ...,
    DiskId: str = ...,
) -> AttachVolumeOutputTypeDef:  # (1)
    ...
  1. See AttachVolumeOutputTypeDef
Usage example with kwargs
kwargs: AttachVolumeInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "VolumeARN": ...,
    "NetworkInterfaceId": ...,
}

parent.attach_volume(**kwargs)
  1. See AttachVolumeInputRequestTypeDef

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for session.client("storagegateway").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

cancel_archival

Cancels archiving of a virtual tape to the virtual tape shelf (VTS) after the archiving process is initiated.

Type annotations and code completion for session.client("storagegateway").cancel_archival method. boto3 documentation

Method definition
await def cancel_archival(
    self,
    *,
    GatewayARN: str,
    TapeARN: str,
) -> CancelArchivalOutputTypeDef:  # (1)
    ...
  1. See CancelArchivalOutputTypeDef
Usage example with kwargs
kwargs: CancelArchivalInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "TapeARN": ...,
}

parent.cancel_archival(**kwargs)
  1. See CancelArchivalInputRequestTypeDef

cancel_retrieval

Cancels retrieval of a virtual tape from the virtual tape shelf (VTS) to a gateway after the retrieval process is initiated.

Type annotations and code completion for session.client("storagegateway").cancel_retrieval method. boto3 documentation

Method definition
await def cancel_retrieval(
    self,
    *,
    GatewayARN: str,
    TapeARN: str,
) -> CancelRetrievalOutputTypeDef:  # (1)
    ...
  1. See CancelRetrievalOutputTypeDef
Usage example with kwargs
kwargs: CancelRetrievalInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "TapeARN": ...,
}

parent.cancel_retrieval(**kwargs)
  1. See CancelRetrievalInputRequestTypeDef

close

Closes underlying endpoint connections.

Type annotations and code completion for session.client("storagegateway").close method. boto3 documentation

Method definition
await def close(
    self,
) -> None:
    ...

create_cached_iscsi_volume

Creates a cached volume on a specified cached volume gateway.

Type annotations and code completion for session.client("storagegateway").create_cached_iscsi_volume method. boto3 documentation

Method definition
await def create_cached_iscsi_volume(
    self,
    *,
    GatewayARN: str,
    VolumeSizeInBytes: int,
    TargetName: str,
    NetworkInterfaceId: str,
    ClientToken: str,
    SnapshotId: str = ...,
    SourceVolumeARN: str = ...,
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateCachediSCSIVolumeOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateCachediSCSIVolumeOutputTypeDef
Usage example with kwargs
kwargs: CreateCachediSCSIVolumeInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "VolumeSizeInBytes": ...,
    "TargetName": ...,
    "NetworkInterfaceId": ...,
    "ClientToken": ...,
}

parent.create_cached_iscsi_volume(**kwargs)
  1. See CreateCachediSCSIVolumeInputRequestTypeDef

create_nfs_file_share

Creates a Network File System (NFS) file share on an existing S3 File Gateway.

Type annotations and code completion for session.client("storagegateway").create_nfs_file_share method. boto3 documentation

Method definition
await def create_nfs_file_share(
    self,
    *,
    ClientToken: str,
    GatewayARN: str,
    Role: str,
    LocationARN: str,
    NFSFileShareDefaults: NFSFileShareDefaultsTypeDef = ...,  # (1)
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    DefaultStorageClass: str = ...,
    ObjectACL: ObjectACLType = ...,  # (2)
    ClientList: Sequence[str] = ...,
    Squash: str = ...,
    ReadOnly: bool = ...,
    GuessMIMETypeEnabled: bool = ...,
    RequesterPays: bool = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (3)
    FileShareName: str = ...,
    CacheAttributes: CacheAttributesTypeDef = ...,  # (4)
    NotificationPolicy: str = ...,
    VPCEndpointDNSName: str = ...,
    BucketRegion: str = ...,
    AuditDestinationARN: str = ...,
) -> CreateNFSFileShareOutputTypeDef:  # (5)
    ...
  1. See NFSFileShareDefaultsTypeDef
  2. See ObjectACLType
  3. See TagTypeDef
  4. See CacheAttributesTypeDef
  5. See CreateNFSFileShareOutputTypeDef
Usage example with kwargs
kwargs: CreateNFSFileShareInputRequestTypeDef = {  # (1)
    "ClientToken": ...,
    "GatewayARN": ...,
    "Role": ...,
    "LocationARN": ...,
}

parent.create_nfs_file_share(**kwargs)
  1. See CreateNFSFileShareInputRequestTypeDef

create_smb_file_share

Creates a Server Message Block (SMB) file share on an existing S3 File Gateway.

Type annotations and code completion for session.client("storagegateway").create_smb_file_share method. boto3 documentation

Method definition
await def create_smb_file_share(
    self,
    *,
    ClientToken: str,
    GatewayARN: str,
    Role: str,
    LocationARN: str,
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    DefaultStorageClass: str = ...,
    ObjectACL: ObjectACLType = ...,  # (1)
    ReadOnly: bool = ...,
    GuessMIMETypeEnabled: bool = ...,
    RequesterPays: bool = ...,
    SMBACLEnabled: bool = ...,
    AccessBasedEnumeration: bool = ...,
    AdminUserList: Sequence[str] = ...,
    ValidUserList: Sequence[str] = ...,
    InvalidUserList: Sequence[str] = ...,
    AuditDestinationARN: str = ...,
    Authentication: str = ...,
    CaseSensitivity: CaseSensitivityType = ...,  # (2)
    Tags: Sequence[TagTypeDef] = ...,  # (3)
    FileShareName: str = ...,
    CacheAttributes: CacheAttributesTypeDef = ...,  # (4)
    NotificationPolicy: str = ...,
    VPCEndpointDNSName: str = ...,
    BucketRegion: str = ...,
    OplocksEnabled: bool = ...,
) -> CreateSMBFileShareOutputTypeDef:  # (5)
    ...
  1. See ObjectACLType
  2. See CaseSensitivityType
  3. See TagTypeDef
  4. See CacheAttributesTypeDef
  5. See CreateSMBFileShareOutputTypeDef
Usage example with kwargs
kwargs: CreateSMBFileShareInputRequestTypeDef = {  # (1)
    "ClientToken": ...,
    "GatewayARN": ...,
    "Role": ...,
    "LocationARN": ...,
}

parent.create_smb_file_share(**kwargs)
  1. See CreateSMBFileShareInputRequestTypeDef

create_snapshot

Initiates a snapshot of a volume.

Type annotations and code completion for session.client("storagegateway").create_snapshot method. boto3 documentation

Method definition
await def create_snapshot(
    self,
    *,
    VolumeARN: str,
    SnapshotDescription: str,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateSnapshotOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateSnapshotOutputTypeDef
Usage example with kwargs
kwargs: CreateSnapshotInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
    "SnapshotDescription": ...,
}

parent.create_snapshot(**kwargs)
  1. See CreateSnapshotInputRequestTypeDef

create_snapshot_from_volume_recovery_point

Initiates a snapshot of a gateway from a volume recovery point.

Type annotations and code completion for session.client("storagegateway").create_snapshot_from_volume_recovery_point method. boto3 documentation

Method definition
await def create_snapshot_from_volume_recovery_point(
    self,
    *,
    VolumeARN: str,
    SnapshotDescription: str,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateSnapshotFromVolumeRecoveryPointOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateSnapshotFromVolumeRecoveryPointOutputTypeDef
Usage example with kwargs
kwargs: CreateSnapshotFromVolumeRecoveryPointInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
    "SnapshotDescription": ...,
}

parent.create_snapshot_from_volume_recovery_point(**kwargs)
  1. See CreateSnapshotFromVolumeRecoveryPointInputRequestTypeDef

create_stored_iscsi_volume

Creates a volume on a specified gateway.

Type annotations and code completion for session.client("storagegateway").create_stored_iscsi_volume method. boto3 documentation

Method definition
await def create_stored_iscsi_volume(
    self,
    *,
    GatewayARN: str,
    DiskId: str,
    PreserveExistingData: bool,
    TargetName: str,
    NetworkInterfaceId: str,
    SnapshotId: str = ...,
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateStorediSCSIVolumeOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateStorediSCSIVolumeOutputTypeDef
Usage example with kwargs
kwargs: CreateStorediSCSIVolumeInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "DiskId": ...,
    "PreserveExistingData": ...,
    "TargetName": ...,
    "NetworkInterfaceId": ...,
}

parent.create_stored_iscsi_volume(**kwargs)
  1. See CreateStorediSCSIVolumeInputRequestTypeDef

create_tape_pool

Creates a new custom tape pool.

Type annotations and code completion for session.client("storagegateway").create_tape_pool method. boto3 documentation

Method definition
await def create_tape_pool(
    self,
    *,
    PoolName: str,
    StorageClass: TapeStorageClassType,  # (1)
    RetentionLockType: RetentionLockTypeType = ...,  # (2)
    RetentionLockTimeInDays: int = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (3)
) -> CreateTapePoolOutputTypeDef:  # (4)
    ...
  1. See TapeStorageClassType
  2. See RetentionLockTypeType
  3. See TagTypeDef
  4. See CreateTapePoolOutputTypeDef
Usage example with kwargs
kwargs: CreateTapePoolInputRequestTypeDef = {  # (1)
    "PoolName": ...,
    "StorageClass": ...,
}

parent.create_tape_pool(**kwargs)
  1. See CreateTapePoolInputRequestTypeDef

create_tape_with_barcode

Creates a virtual tape by using your own barcode.

Type annotations and code completion for session.client("storagegateway").create_tape_with_barcode method. boto3 documentation

Method definition
await def create_tape_with_barcode(
    self,
    *,
    GatewayARN: str,
    TapeSizeInBytes: int,
    TapeBarcode: str,
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    PoolId: str = ...,
    Worm: bool = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateTapeWithBarcodeOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateTapeWithBarcodeOutputTypeDef
Usage example with kwargs
kwargs: CreateTapeWithBarcodeInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "TapeSizeInBytes": ...,
    "TapeBarcode": ...,
}

parent.create_tape_with_barcode(**kwargs)
  1. See CreateTapeWithBarcodeInputRequestTypeDef

create_tapes

Creates one or more virtual tapes.

Type annotations and code completion for session.client("storagegateway").create_tapes method. boto3 documentation

Method definition
await def create_tapes(
    self,
    *,
    GatewayARN: str,
    TapeSizeInBytes: int,
    ClientToken: str,
    NumTapesToCreate: int,
    TapeBarcodePrefix: str,
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    PoolId: str = ...,
    Worm: bool = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateTapesOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateTapesOutputTypeDef
Usage example with kwargs
kwargs: CreateTapesInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "TapeSizeInBytes": ...,
    "ClientToken": ...,
    "NumTapesToCreate": ...,
    "TapeBarcodePrefix": ...,
}

parent.create_tapes(**kwargs)
  1. See CreateTapesInputRequestTypeDef

delete_automatic_tape_creation_policy

Deletes the automatic tape creation policy of a gateway.

Type annotations and code completion for session.client("storagegateway").delete_automatic_tape_creation_policy method. boto3 documentation

Method definition
await def delete_automatic_tape_creation_policy(
    self,
    *,
    GatewayARN: str,
) -> DeleteAutomaticTapeCreationPolicyOutputTypeDef:  # (1)
    ...
  1. See DeleteAutomaticTapeCreationPolicyOutputTypeDef
Usage example with kwargs
kwargs: DeleteAutomaticTapeCreationPolicyInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.delete_automatic_tape_creation_policy(**kwargs)
  1. See DeleteAutomaticTapeCreationPolicyInputRequestTypeDef

delete_bandwidth_rate_limit

Deletes the bandwidth rate limits of a gateway.

Type annotations and code completion for session.client("storagegateway").delete_bandwidth_rate_limit method. boto3 documentation

Method definition
await def delete_bandwidth_rate_limit(
    self,
    *,
    GatewayARN: str,
    BandwidthType: str,
) -> DeleteBandwidthRateLimitOutputTypeDef:  # (1)
    ...
  1. See DeleteBandwidthRateLimitOutputTypeDef
Usage example with kwargs
kwargs: DeleteBandwidthRateLimitInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "BandwidthType": ...,
}

parent.delete_bandwidth_rate_limit(**kwargs)
  1. See DeleteBandwidthRateLimitInputRequestTypeDef

delete_chap_credentials

Deletes Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target and initiator pair.

Type annotations and code completion for session.client("storagegateway").delete_chap_credentials method. boto3 documentation

Method definition
await def delete_chap_credentials(
    self,
    *,
    TargetARN: str,
    InitiatorName: str,
) -> DeleteChapCredentialsOutputTypeDef:  # (1)
    ...
  1. See DeleteChapCredentialsOutputTypeDef
Usage example with kwargs
kwargs: DeleteChapCredentialsInputRequestTypeDef = {  # (1)
    "TargetARN": ...,
    "InitiatorName": ...,
}

parent.delete_chap_credentials(**kwargs)
  1. See DeleteChapCredentialsInputRequestTypeDef

delete_file_share

Deletes a file share from an S3 File Gateway.

Type annotations and code completion for session.client("storagegateway").delete_file_share method. boto3 documentation

Method definition
await def delete_file_share(
    self,
    *,
    FileShareARN: str,
    ForceDelete: bool = ...,
) -> DeleteFileShareOutputTypeDef:  # (1)
    ...
  1. See DeleteFileShareOutputTypeDef
Usage example with kwargs
kwargs: DeleteFileShareInputRequestTypeDef = {  # (1)
    "FileShareARN": ...,
}

parent.delete_file_share(**kwargs)
  1. See DeleteFileShareInputRequestTypeDef

delete_gateway

Deletes a gateway.

Type annotations and code completion for session.client("storagegateway").delete_gateway method. boto3 documentation

Method definition
await def delete_gateway(
    self,
    *,
    GatewayARN: str,
) -> DeleteGatewayOutputTypeDef:  # (1)
    ...
  1. See DeleteGatewayOutputTypeDef
Usage example with kwargs
kwargs: DeleteGatewayInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.delete_gateway(**kwargs)
  1. See DeleteGatewayInputRequestTypeDef

delete_snapshot_schedule

Deletes a snapshot of a volume.

Type annotations and code completion for session.client("storagegateway").delete_snapshot_schedule method. boto3 documentation

Method definition
await def delete_snapshot_schedule(
    self,
    *,
    VolumeARN: str,
) -> DeleteSnapshotScheduleOutputTypeDef:  # (1)
    ...
  1. See DeleteSnapshotScheduleOutputTypeDef
Usage example with kwargs
kwargs: DeleteSnapshotScheduleInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
}

parent.delete_snapshot_schedule(**kwargs)
  1. See DeleteSnapshotScheduleInputRequestTypeDef

delete_tape

Deletes the specified virtual tape.

Type annotations and code completion for session.client("storagegateway").delete_tape method. boto3 documentation

Method definition
await def delete_tape(
    self,
    *,
    GatewayARN: str,
    TapeARN: str,
    BypassGovernanceRetention: bool = ...,
) -> DeleteTapeOutputTypeDef:  # (1)
    ...
  1. See DeleteTapeOutputTypeDef
Usage example with kwargs
kwargs: DeleteTapeInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "TapeARN": ...,
}

parent.delete_tape(**kwargs)
  1. See DeleteTapeInputRequestTypeDef

delete_tape_archive

Deletes the specified virtual tape from the virtual tape shelf (VTS).

Type annotations and code completion for session.client("storagegateway").delete_tape_archive method. boto3 documentation

Method definition
await def delete_tape_archive(
    self,
    *,
    TapeARN: str,
    BypassGovernanceRetention: bool = ...,
) -> DeleteTapeArchiveOutputTypeDef:  # (1)
    ...
  1. See DeleteTapeArchiveOutputTypeDef
Usage example with kwargs
kwargs: DeleteTapeArchiveInputRequestTypeDef = {  # (1)
    "TapeARN": ...,
}

parent.delete_tape_archive(**kwargs)
  1. See DeleteTapeArchiveInputRequestTypeDef

delete_tape_pool

Delete a custom tape pool.

Type annotations and code completion for session.client("storagegateway").delete_tape_pool method. boto3 documentation

Method definition
await def delete_tape_pool(
    self,
    *,
    PoolARN: str,
) -> DeleteTapePoolOutputTypeDef:  # (1)
    ...
  1. See DeleteTapePoolOutputTypeDef
Usage example with kwargs
kwargs: DeleteTapePoolInputRequestTypeDef = {  # (1)
    "PoolARN": ...,
}

parent.delete_tape_pool(**kwargs)
  1. See DeleteTapePoolInputRequestTypeDef

delete_volume

Deletes the specified storage volume that you previously created using the CreateCachediSCSIVolume or CreateStorediSCSIVolume API.

Type annotations and code completion for session.client("storagegateway").delete_volume method. boto3 documentation

Method definition
await def delete_volume(
    self,
    *,
    VolumeARN: str,
) -> DeleteVolumeOutputTypeDef:  # (1)
    ...
  1. See DeleteVolumeOutputTypeDef
Usage example with kwargs
kwargs: DeleteVolumeInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
}

parent.delete_volume(**kwargs)
  1. See DeleteVolumeInputRequestTypeDef

describe_availability_monitor_test

Returns information about the most recent high availability monitoring test that was performed on the host in a cluster.

Type annotations and code completion for session.client("storagegateway").describe_availability_monitor_test method. boto3 documentation

Method definition
await def describe_availability_monitor_test(
    self,
    *,
    GatewayARN: str,
) -> DescribeAvailabilityMonitorTestOutputTypeDef:  # (1)
    ...
  1. See DescribeAvailabilityMonitorTestOutputTypeDef
Usage example with kwargs
kwargs: DescribeAvailabilityMonitorTestInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_availability_monitor_test(**kwargs)
  1. See DescribeAvailabilityMonitorTestInputRequestTypeDef

describe_bandwidth_rate_limit

Returns the bandwidth rate limits of a gateway.

Type annotations and code completion for session.client("storagegateway").describe_bandwidth_rate_limit method. boto3 documentation

Method definition
await def describe_bandwidth_rate_limit(
    self,
    *,
    GatewayARN: str,
) -> DescribeBandwidthRateLimitOutputTypeDef:  # (1)
    ...
  1. See DescribeBandwidthRateLimitOutputTypeDef
Usage example with kwargs
kwargs: DescribeBandwidthRateLimitInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_bandwidth_rate_limit(**kwargs)
  1. See DescribeBandwidthRateLimitInputRequestTypeDef

describe_bandwidth_rate_limit_schedule

Returns information about the bandwidth rate limit schedule of a gateway.

Type annotations and code completion for session.client("storagegateway").describe_bandwidth_rate_limit_schedule method. boto3 documentation

Method definition
await def describe_bandwidth_rate_limit_schedule(
    self,
    *,
    GatewayARN: str,
) -> DescribeBandwidthRateLimitScheduleOutputTypeDef:  # (1)
    ...
  1. See DescribeBandwidthRateLimitScheduleOutputTypeDef
Usage example with kwargs
kwargs: DescribeBandwidthRateLimitScheduleInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_bandwidth_rate_limit_schedule(**kwargs)
  1. See DescribeBandwidthRateLimitScheduleInputRequestTypeDef

describe_cache

Returns information about the cache of a gateway.

Type annotations and code completion for session.client("storagegateway").describe_cache method. boto3 documentation

Method definition
await def describe_cache(
    self,
    *,
    GatewayARN: str,
) -> DescribeCacheOutputTypeDef:  # (1)
    ...
  1. See DescribeCacheOutputTypeDef
Usage example with kwargs
kwargs: DescribeCacheInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_cache(**kwargs)
  1. See DescribeCacheInputRequestTypeDef

describe_cached_iscsi_volumes

Returns a description of the gateway volumes specified in the request.

Type annotations and code completion for session.client("storagegateway").describe_cached_iscsi_volumes method. boto3 documentation

Method definition
await def describe_cached_iscsi_volumes(
    self,
    *,
    VolumeARNs: Sequence[str],
) -> DescribeCachediSCSIVolumesOutputTypeDef:  # (1)
    ...
  1. See DescribeCachediSCSIVolumesOutputTypeDef
Usage example with kwargs
kwargs: DescribeCachediSCSIVolumesInputRequestTypeDef = {  # (1)
    "VolumeARNs": ...,
}

parent.describe_cached_iscsi_volumes(**kwargs)
  1. See DescribeCachediSCSIVolumesInputRequestTypeDef

describe_chap_credentials

Returns an array of Challenge-Handshake Authentication Protocol (CHAP) credentials information for a specified iSCSI target, one for each target- initiator pair.

Type annotations and code completion for session.client("storagegateway").describe_chap_credentials method. boto3 documentation

Method definition
await def describe_chap_credentials(
    self,
    *,
    TargetARN: str,
) -> DescribeChapCredentialsOutputTypeDef:  # (1)
    ...
  1. See DescribeChapCredentialsOutputTypeDef
Usage example with kwargs
kwargs: DescribeChapCredentialsInputRequestTypeDef = {  # (1)
    "TargetARN": ...,
}

parent.describe_chap_credentials(**kwargs)
  1. See DescribeChapCredentialsInputRequestTypeDef

describe_file_system_associations

Gets the file system association information.

Type annotations and code completion for session.client("storagegateway").describe_file_system_associations method. boto3 documentation

Method definition
await def describe_file_system_associations(
    self,
    *,
    FileSystemAssociationARNList: Sequence[str],
) -> DescribeFileSystemAssociationsOutputTypeDef:  # (1)
    ...
  1. See DescribeFileSystemAssociationsOutputTypeDef
Usage example with kwargs
kwargs: DescribeFileSystemAssociationsInputRequestTypeDef = {  # (1)
    "FileSystemAssociationARNList": ...,
}

parent.describe_file_system_associations(**kwargs)
  1. See DescribeFileSystemAssociationsInputRequestTypeDef

describe_gateway_information

Returns metadata about a gateway such as its name, network interfaces, configured time zone, and the state (whether the gateway is running or not).

Type annotations and code completion for session.client("storagegateway").describe_gateway_information method. boto3 documentation

Method definition
await def describe_gateway_information(
    self,
    *,
    GatewayARN: str,
) -> DescribeGatewayInformationOutputTypeDef:  # (1)
    ...
  1. See DescribeGatewayInformationOutputTypeDef
Usage example with kwargs
kwargs: DescribeGatewayInformationInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_gateway_information(**kwargs)
  1. See DescribeGatewayInformationInputRequestTypeDef

describe_maintenance_start_time

Returns your gateway's weekly maintenance start time including the day and time of the week.

Type annotations and code completion for session.client("storagegateway").describe_maintenance_start_time method. boto3 documentation

Method definition
await def describe_maintenance_start_time(
    self,
    *,
    GatewayARN: str,
) -> DescribeMaintenanceStartTimeOutputTypeDef:  # (1)
    ...
  1. See DescribeMaintenanceStartTimeOutputTypeDef
Usage example with kwargs
kwargs: DescribeMaintenanceStartTimeInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_maintenance_start_time(**kwargs)
  1. See DescribeMaintenanceStartTimeInputRequestTypeDef

describe_nfs_file_shares

Gets a description for one or more Network File System (NFS) file shares from an S3 File Gateway.

Type annotations and code completion for session.client("storagegateway").describe_nfs_file_shares method. boto3 documentation

Method definition
await def describe_nfs_file_shares(
    self,
    *,
    FileShareARNList: Sequence[str],
) -> DescribeNFSFileSharesOutputTypeDef:  # (1)
    ...
  1. See DescribeNFSFileSharesOutputTypeDef
Usage example with kwargs
kwargs: DescribeNFSFileSharesInputRequestTypeDef = {  # (1)
    "FileShareARNList": ...,
}

parent.describe_nfs_file_shares(**kwargs)
  1. See DescribeNFSFileSharesInputRequestTypeDef

describe_smb_file_shares

Gets a description for one or more Server Message Block (SMB) file shares from a S3 File Gateway.

Type annotations and code completion for session.client("storagegateway").describe_smb_file_shares method. boto3 documentation

Method definition
await def describe_smb_file_shares(
    self,
    *,
    FileShareARNList: Sequence[str],
) -> DescribeSMBFileSharesOutputTypeDef:  # (1)
    ...
  1. See DescribeSMBFileSharesOutputTypeDef
Usage example with kwargs
kwargs: DescribeSMBFileSharesInputRequestTypeDef = {  # (1)
    "FileShareARNList": ...,
}

parent.describe_smb_file_shares(**kwargs)
  1. See DescribeSMBFileSharesInputRequestTypeDef

describe_smb_settings

Gets a description of a Server Message Block (SMB) file share settings from a file gateway.

Type annotations and code completion for session.client("storagegateway").describe_smb_settings method. boto3 documentation

Method definition
await def describe_smb_settings(
    self,
    *,
    GatewayARN: str,
) -> DescribeSMBSettingsOutputTypeDef:  # (1)
    ...
  1. See DescribeSMBSettingsOutputTypeDef
Usage example with kwargs
kwargs: DescribeSMBSettingsInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_smb_settings(**kwargs)
  1. See DescribeSMBSettingsInputRequestTypeDef

describe_snapshot_schedule

Describes the snapshot schedule for the specified gateway volume.

Type annotations and code completion for session.client("storagegateway").describe_snapshot_schedule method. boto3 documentation

Method definition
await def describe_snapshot_schedule(
    self,
    *,
    VolumeARN: str,
) -> DescribeSnapshotScheduleOutputTypeDef:  # (1)
    ...
  1. See DescribeSnapshotScheduleOutputTypeDef
Usage example with kwargs
kwargs: DescribeSnapshotScheduleInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
}

parent.describe_snapshot_schedule(**kwargs)
  1. See DescribeSnapshotScheduleInputRequestTypeDef

describe_stored_iscsi_volumes

Returns the description of the gateway volumes specified in the request.

Type annotations and code completion for session.client("storagegateway").describe_stored_iscsi_volumes method. boto3 documentation

Method definition
await def describe_stored_iscsi_volumes(
    self,
    *,
    VolumeARNs: Sequence[str],
) -> DescribeStorediSCSIVolumesOutputTypeDef:  # (1)
    ...
  1. See DescribeStorediSCSIVolumesOutputTypeDef
Usage example with kwargs
kwargs: DescribeStorediSCSIVolumesInputRequestTypeDef = {  # (1)
    "VolumeARNs": ...,
}

parent.describe_stored_iscsi_volumes(**kwargs)
  1. See DescribeStorediSCSIVolumesInputRequestTypeDef

describe_tape_archives

Returns a description of specified virtual tapes in the virtual tape shelf (VTS).

Type annotations and code completion for session.client("storagegateway").describe_tape_archives method. boto3 documentation

Method definition
await def describe_tape_archives(
    self,
    *,
    TapeARNs: Sequence[str] = ...,
    Marker: str = ...,
    Limit: int = ...,
) -> DescribeTapeArchivesOutputTypeDef:  # (1)
    ...
  1. See DescribeTapeArchivesOutputTypeDef
Usage example with kwargs
kwargs: DescribeTapeArchivesInputRequestTypeDef = {  # (1)
    "TapeARNs": ...,
}

parent.describe_tape_archives(**kwargs)
  1. See DescribeTapeArchivesInputRequestTypeDef

describe_tape_recovery_points

Returns a list of virtual tape recovery points that are available for the specified tape gateway.

Type annotations and code completion for session.client("storagegateway").describe_tape_recovery_points method. boto3 documentation

Method definition
await def describe_tape_recovery_points(
    self,
    *,
    GatewayARN: str,
    Marker: str = ...,
    Limit: int = ...,
) -> DescribeTapeRecoveryPointsOutputTypeDef:  # (1)
    ...
  1. See DescribeTapeRecoveryPointsOutputTypeDef
Usage example with kwargs
kwargs: DescribeTapeRecoveryPointsInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_tape_recovery_points(**kwargs)
  1. See DescribeTapeRecoveryPointsInputRequestTypeDef

describe_tapes

Returns a description of the specified Amazon Resource Name (ARN) of virtual tapes.

Type annotations and code completion for session.client("storagegateway").describe_tapes method. boto3 documentation

Method definition
await def describe_tapes(
    self,
    *,
    GatewayARN: str,
    TapeARNs: Sequence[str] = ...,
    Marker: str = ...,
    Limit: int = ...,
) -> DescribeTapesOutputTypeDef:  # (1)
    ...
  1. See DescribeTapesOutputTypeDef
Usage example with kwargs
kwargs: DescribeTapesInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_tapes(**kwargs)
  1. See DescribeTapesInputRequestTypeDef

describe_upload_buffer

Returns information about the upload buffer of a gateway.

Type annotations and code completion for session.client("storagegateway").describe_upload_buffer method. boto3 documentation

Method definition
await def describe_upload_buffer(
    self,
    *,
    GatewayARN: str,
) -> DescribeUploadBufferOutputTypeDef:  # (1)
    ...
  1. See DescribeUploadBufferOutputTypeDef
Usage example with kwargs
kwargs: DescribeUploadBufferInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_upload_buffer(**kwargs)
  1. See DescribeUploadBufferInputRequestTypeDef

describe_vtl_devices

Returns a description of virtual tape library (VTL) devices for the specified tape gateway.

Type annotations and code completion for session.client("storagegateway").describe_vtl_devices method. boto3 documentation

Method definition
await def describe_vtl_devices(
    self,
    *,
    GatewayARN: str,
    VTLDeviceARNs: Sequence[str] = ...,
    Marker: str = ...,
    Limit: int = ...,
) -> DescribeVTLDevicesOutputTypeDef:  # (1)
    ...
  1. See DescribeVTLDevicesOutputTypeDef
Usage example with kwargs
kwargs: DescribeVTLDevicesInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_vtl_devices(**kwargs)
  1. See DescribeVTLDevicesInputRequestTypeDef

describe_working_storage

Returns information about the working storage of a gateway.

Type annotations and code completion for session.client("storagegateway").describe_working_storage method. boto3 documentation

Method definition
await def describe_working_storage(
    self,
    *,
    GatewayARN: str,
) -> DescribeWorkingStorageOutputTypeDef:  # (1)
    ...
  1. See DescribeWorkingStorageOutputTypeDef
Usage example with kwargs
kwargs: DescribeWorkingStorageInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.describe_working_storage(**kwargs)
  1. See DescribeWorkingStorageInputRequestTypeDef

detach_volume

Disconnects a volume from an iSCSI connection and then detaches the volume from the specified gateway.

Type annotations and code completion for session.client("storagegateway").detach_volume method. boto3 documentation

Method definition
await def detach_volume(
    self,
    *,
    VolumeARN: str,
    ForceDetach: bool = ...,
) -> DetachVolumeOutputTypeDef:  # (1)
    ...
  1. See DetachVolumeOutputTypeDef
Usage example with kwargs
kwargs: DetachVolumeInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
}

parent.detach_volume(**kwargs)
  1. See DetachVolumeInputRequestTypeDef

disable_gateway

Disables a tape gateway when the gateway is no longer functioning.

Type annotations and code completion for session.client("storagegateway").disable_gateway method. boto3 documentation

Method definition
await def disable_gateway(
    self,
    *,
    GatewayARN: str,
) -> DisableGatewayOutputTypeDef:  # (1)
    ...
  1. See DisableGatewayOutputTypeDef
Usage example with kwargs
kwargs: DisableGatewayInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.disable_gateway(**kwargs)
  1. See DisableGatewayInputRequestTypeDef

disassociate_file_system

Disassociates an Amazon FSx file system from the specified gateway.

Type annotations and code completion for session.client("storagegateway").disassociate_file_system method. boto3 documentation

Method definition
await def disassociate_file_system(
    self,
    *,
    FileSystemAssociationARN: str,
    ForceDelete: bool = ...,
) -> DisassociateFileSystemOutputTypeDef:  # (1)
    ...
  1. See DisassociateFileSystemOutputTypeDef
Usage example with kwargs
kwargs: DisassociateFileSystemInputRequestTypeDef = {  # (1)
    "FileSystemAssociationARN": ...,
}

parent.disassociate_file_system(**kwargs)
  1. See DisassociateFileSystemInputRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.client("storagegateway").generate_presigned_url method. boto3 documentation

Method definition
await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

join_domain

Adds a file gateway to an Active Directory domain.

Type annotations and code completion for session.client("storagegateway").join_domain method. boto3 documentation

Method definition
await def join_domain(
    self,
    *,
    GatewayARN: str,
    DomainName: str,
    UserName: str,
    Password: str,
    OrganizationalUnit: str = ...,
    DomainControllers: Sequence[str] = ...,
    TimeoutInSeconds: int = ...,
) -> JoinDomainOutputTypeDef:  # (1)
    ...
  1. See JoinDomainOutputTypeDef
Usage example with kwargs
kwargs: JoinDomainInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "DomainName": ...,
    "UserName": ...,
    "Password": ...,
}

parent.join_domain(**kwargs)
  1. See JoinDomainInputRequestTypeDef

list_automatic_tape_creation_policies

Lists the automatic tape creation policies for a gateway.

Type annotations and code completion for session.client("storagegateway").list_automatic_tape_creation_policies method. boto3 documentation

Method definition
await def list_automatic_tape_creation_policies(
    self,
    *,
    GatewayARN: str = ...,
) -> ListAutomaticTapeCreationPoliciesOutputTypeDef:  # (1)
    ...
  1. See ListAutomaticTapeCreationPoliciesOutputTypeDef
Usage example with kwargs
kwargs: ListAutomaticTapeCreationPoliciesInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.list_automatic_tape_creation_policies(**kwargs)
  1. See ListAutomaticTapeCreationPoliciesInputRequestTypeDef

list_file_shares

Gets a list of the file shares for a specific S3 File Gateway, or the list of file shares that belong to the calling user account.

Type annotations and code completion for session.client("storagegateway").list_file_shares method. boto3 documentation

Method definition
await def list_file_shares(
    self,
    *,
    GatewayARN: str = ...,
    Limit: int = ...,
    Marker: str = ...,
) -> ListFileSharesOutputTypeDef:  # (1)
    ...
  1. See ListFileSharesOutputTypeDef
Usage example with kwargs
kwargs: ListFileSharesInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.list_file_shares(**kwargs)
  1. See ListFileSharesInputRequestTypeDef

list_file_system_associations

Gets a list of FileSystemAssociationSummary objects.

Type annotations and code completion for session.client("storagegateway").list_file_system_associations method. boto3 documentation

Method definition
await def list_file_system_associations(
    self,
    *,
    GatewayARN: str = ...,
    Limit: int = ...,
    Marker: str = ...,
) -> ListFileSystemAssociationsOutputTypeDef:  # (1)
    ...
  1. See ListFileSystemAssociationsOutputTypeDef
Usage example with kwargs
kwargs: ListFileSystemAssociationsInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.list_file_system_associations(**kwargs)
  1. See ListFileSystemAssociationsInputRequestTypeDef

list_gateways

Lists gateways owned by an Amazon Web Services account in an Amazon Web Services Region specified in the request.

Type annotations and code completion for session.client("storagegateway").list_gateways method. boto3 documentation

Method definition
await def list_gateways(
    self,
    *,
    Marker: str = ...,
    Limit: int = ...,
) -> ListGatewaysOutputTypeDef:  # (1)
    ...
  1. See ListGatewaysOutputTypeDef
Usage example with kwargs
kwargs: ListGatewaysInputRequestTypeDef = {  # (1)
    "Marker": ...,
}

parent.list_gateways(**kwargs)
  1. See ListGatewaysInputRequestTypeDef

list_local_disks

Returns a list of the gateway's local disks.

Type annotations and code completion for session.client("storagegateway").list_local_disks method. boto3 documentation

Method definition
await def list_local_disks(
    self,
    *,
    GatewayARN: str,
) -> ListLocalDisksOutputTypeDef:  # (1)
    ...
  1. See ListLocalDisksOutputTypeDef
Usage example with kwargs
kwargs: ListLocalDisksInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.list_local_disks(**kwargs)
  1. See ListLocalDisksInputRequestTypeDef

list_tags_for_resource

Lists the tags that have been added to the specified resource.

Type annotations and code completion for session.client("storagegateway").list_tags_for_resource method. boto3 documentation

Method definition
await def list_tags_for_resource(
    self,
    *,
    ResourceARN: str,
    Marker: str = ...,
    Limit: int = ...,
) -> ListTagsForResourceOutputTypeDef:  # (1)
    ...
  1. See ListTagsForResourceOutputTypeDef
Usage example with kwargs
kwargs: ListTagsForResourceInputRequestTypeDef = {  # (1)
    "ResourceARN": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceInputRequestTypeDef

list_tape_pools

Lists custom tape pools.

Type annotations and code completion for session.client("storagegateway").list_tape_pools method. boto3 documentation

Method definition
await def list_tape_pools(
    self,
    *,
    PoolARNs: Sequence[str] = ...,
    Marker: str = ...,
    Limit: int = ...,
) -> ListTapePoolsOutputTypeDef:  # (1)
    ...
  1. See ListTapePoolsOutputTypeDef
Usage example with kwargs
kwargs: ListTapePoolsInputRequestTypeDef = {  # (1)
    "PoolARNs": ...,
}

parent.list_tape_pools(**kwargs)
  1. See ListTapePoolsInputRequestTypeDef

list_tapes

Lists virtual tapes in your virtual tape library (VTL) and your virtual tape shelf (VTS).

Type annotations and code completion for session.client("storagegateway").list_tapes method. boto3 documentation

Method definition
await def list_tapes(
    self,
    *,
    TapeARNs: Sequence[str] = ...,
    Marker: str = ...,
    Limit: int = ...,
) -> ListTapesOutputTypeDef:  # (1)
    ...
  1. See ListTapesOutputTypeDef
Usage example with kwargs
kwargs: ListTapesInputRequestTypeDef = {  # (1)
    "TapeARNs": ...,
}

parent.list_tapes(**kwargs)
  1. See ListTapesInputRequestTypeDef

list_volume_initiators

Lists iSCSI initiators that are connected to a volume.

Type annotations and code completion for session.client("storagegateway").list_volume_initiators method. boto3 documentation

Method definition
await def list_volume_initiators(
    self,
    *,
    VolumeARN: str,
) -> ListVolumeInitiatorsOutputTypeDef:  # (1)
    ...
  1. See ListVolumeInitiatorsOutputTypeDef
Usage example with kwargs
kwargs: ListVolumeInitiatorsInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
}

parent.list_volume_initiators(**kwargs)
  1. See ListVolumeInitiatorsInputRequestTypeDef

list_volume_recovery_points

Lists the recovery points for a specified gateway.

Type annotations and code completion for session.client("storagegateway").list_volume_recovery_points method. boto3 documentation

Method definition
await def list_volume_recovery_points(
    self,
    *,
    GatewayARN: str,
) -> ListVolumeRecoveryPointsOutputTypeDef:  # (1)
    ...
  1. See ListVolumeRecoveryPointsOutputTypeDef
Usage example with kwargs
kwargs: ListVolumeRecoveryPointsInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.list_volume_recovery_points(**kwargs)
  1. See ListVolumeRecoveryPointsInputRequestTypeDef

list_volumes

Lists the iSCSI stored volumes of a gateway.

Type annotations and code completion for session.client("storagegateway").list_volumes method. boto3 documentation

Method definition
await def list_volumes(
    self,
    *,
    GatewayARN: str = ...,
    Marker: str = ...,
    Limit: int = ...,
) -> ListVolumesOutputTypeDef:  # (1)
    ...
  1. See ListVolumesOutputTypeDef
Usage example with kwargs
kwargs: ListVolumesInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.list_volumes(**kwargs)
  1. See ListVolumesInputRequestTypeDef

notify_when_uploaded

Sends you notification through CloudWatch Events when all files written to your file share have been uploaded to S3.

Type annotations and code completion for session.client("storagegateway").notify_when_uploaded method. boto3 documentation

Method definition
await def notify_when_uploaded(
    self,
    *,
    FileShareARN: str,
) -> NotifyWhenUploadedOutputTypeDef:  # (1)
    ...
  1. See NotifyWhenUploadedOutputTypeDef
Usage example with kwargs
kwargs: NotifyWhenUploadedInputRequestTypeDef = {  # (1)
    "FileShareARN": ...,
}

parent.notify_when_uploaded(**kwargs)
  1. See NotifyWhenUploadedInputRequestTypeDef

refresh_cache

Refreshes the cached inventory of objects for the specified file share.

Type annotations and code completion for session.client("storagegateway").refresh_cache method. boto3 documentation

Method definition
await def refresh_cache(
    self,
    *,
    FileShareARN: str,
    FolderList: Sequence[str] = ...,
    Recursive: bool = ...,
) -> RefreshCacheOutputTypeDef:  # (1)
    ...
  1. See RefreshCacheOutputTypeDef
Usage example with kwargs
kwargs: RefreshCacheInputRequestTypeDef = {  # (1)
    "FileShareARN": ...,
}

parent.refresh_cache(**kwargs)
  1. See RefreshCacheInputRequestTypeDef

remove_tags_from_resource

Removes one or more tags from the specified resource.

Type annotations and code completion for session.client("storagegateway").remove_tags_from_resource method. boto3 documentation

Method definition
await def remove_tags_from_resource(
    self,
    *,
    ResourceARN: str,
    TagKeys: Sequence[str],
) -> RemoveTagsFromResourceOutputTypeDef:  # (1)
    ...
  1. See RemoveTagsFromResourceOutputTypeDef
Usage example with kwargs
kwargs: RemoveTagsFromResourceInputRequestTypeDef = {  # (1)
    "ResourceARN": ...,
    "TagKeys": ...,
}

parent.remove_tags_from_resource(**kwargs)
  1. See RemoveTagsFromResourceInputRequestTypeDef

reset_cache

Resets all cache disks that have encountered an error and makes the disks available for reconfiguration as cache storage.

Type annotations and code completion for session.client("storagegateway").reset_cache method. boto3 documentation

Method definition
await def reset_cache(
    self,
    *,
    GatewayARN: str,
) -> ResetCacheOutputTypeDef:  # (1)
    ...
  1. See ResetCacheOutputTypeDef
Usage example with kwargs
kwargs: ResetCacheInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.reset_cache(**kwargs)
  1. See ResetCacheInputRequestTypeDef

retrieve_tape_archive

Retrieves an archived virtual tape from the virtual tape shelf (VTS) to a tape gateway.

Type annotations and code completion for session.client("storagegateway").retrieve_tape_archive method. boto3 documentation

Method definition
await def retrieve_tape_archive(
    self,
    *,
    TapeARN: str,
    GatewayARN: str,
) -> RetrieveTapeArchiveOutputTypeDef:  # (1)
    ...
  1. See RetrieveTapeArchiveOutputTypeDef
Usage example with kwargs
kwargs: RetrieveTapeArchiveInputRequestTypeDef = {  # (1)
    "TapeARN": ...,
    "GatewayARN": ...,
}

parent.retrieve_tape_archive(**kwargs)
  1. See RetrieveTapeArchiveInputRequestTypeDef

retrieve_tape_recovery_point

Retrieves the recovery point for the specified virtual tape.

Type annotations and code completion for session.client("storagegateway").retrieve_tape_recovery_point method. boto3 documentation

Method definition
await def retrieve_tape_recovery_point(
    self,
    *,
    TapeARN: str,
    GatewayARN: str,
) -> RetrieveTapeRecoveryPointOutputTypeDef:  # (1)
    ...
  1. See RetrieveTapeRecoveryPointOutputTypeDef
Usage example with kwargs
kwargs: RetrieveTapeRecoveryPointInputRequestTypeDef = {  # (1)
    "TapeARN": ...,
    "GatewayARN": ...,
}

parent.retrieve_tape_recovery_point(**kwargs)
  1. See RetrieveTapeRecoveryPointInputRequestTypeDef

set_local_console_password

Sets the password for your VM local console.

Type annotations and code completion for session.client("storagegateway").set_local_console_password method. boto3 documentation

Method definition
await def set_local_console_password(
    self,
    *,
    GatewayARN: str,
    LocalConsolePassword: str,
) -> SetLocalConsolePasswordOutputTypeDef:  # (1)
    ...
  1. See SetLocalConsolePasswordOutputTypeDef
Usage example with kwargs
kwargs: SetLocalConsolePasswordInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "LocalConsolePassword": ...,
}

parent.set_local_console_password(**kwargs)
  1. See SetLocalConsolePasswordInputRequestTypeDef

set_smb_guest_password

Sets the password for the guest user smbguest.

Type annotations and code completion for session.client("storagegateway").set_smb_guest_password method. boto3 documentation

Method definition
await def set_smb_guest_password(
    self,
    *,
    GatewayARN: str,
    Password: str,
) -> SetSMBGuestPasswordOutputTypeDef:  # (1)
    ...
  1. See SetSMBGuestPasswordOutputTypeDef
Usage example with kwargs
kwargs: SetSMBGuestPasswordInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "Password": ...,
}

parent.set_smb_guest_password(**kwargs)
  1. See SetSMBGuestPasswordInputRequestTypeDef

shutdown_gateway

Shuts down a gateway.

Type annotations and code completion for session.client("storagegateway").shutdown_gateway method. boto3 documentation

Method definition
await def shutdown_gateway(
    self,
    *,
    GatewayARN: str,
) -> ShutdownGatewayOutputTypeDef:  # (1)
    ...
  1. See ShutdownGatewayOutputTypeDef
Usage example with kwargs
kwargs: ShutdownGatewayInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.shutdown_gateway(**kwargs)
  1. See ShutdownGatewayInputRequestTypeDef

start_availability_monitor_test

Start a test that verifies that the specified gateway is configured for High Availability monitoring in your host environment.

Type annotations and code completion for session.client("storagegateway").start_availability_monitor_test method. boto3 documentation

Method definition
await def start_availability_monitor_test(
    self,
    *,
    GatewayARN: str,
) -> StartAvailabilityMonitorTestOutputTypeDef:  # (1)
    ...
  1. See StartAvailabilityMonitorTestOutputTypeDef
Usage example with kwargs
kwargs: StartAvailabilityMonitorTestInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.start_availability_monitor_test(**kwargs)
  1. See StartAvailabilityMonitorTestInputRequestTypeDef

start_gateway

Starts a gateway that you previously shut down (see ShutdownGateway ).

Type annotations and code completion for session.client("storagegateway").start_gateway method. boto3 documentation

Method definition
await def start_gateway(
    self,
    *,
    GatewayARN: str,
) -> StartGatewayOutputTypeDef:  # (1)
    ...
  1. See StartGatewayOutputTypeDef
Usage example with kwargs
kwargs: StartGatewayInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.start_gateway(**kwargs)
  1. See StartGatewayInputRequestTypeDef

update_automatic_tape_creation_policy

Updates the automatic tape creation policy of a gateway.

Type annotations and code completion for session.client("storagegateway").update_automatic_tape_creation_policy method. boto3 documentation

Method definition
await def update_automatic_tape_creation_policy(
    self,
    *,
    AutomaticTapeCreationRules: Sequence[AutomaticTapeCreationRuleTypeDef],  # (1)
    GatewayARN: str,
) -> UpdateAutomaticTapeCreationPolicyOutputTypeDef:  # (2)
    ...
  1. See AutomaticTapeCreationRuleTypeDef
  2. See UpdateAutomaticTapeCreationPolicyOutputTypeDef
Usage example with kwargs
kwargs: UpdateAutomaticTapeCreationPolicyInputRequestTypeDef = {  # (1)
    "AutomaticTapeCreationRules": ...,
    "GatewayARN": ...,
}

parent.update_automatic_tape_creation_policy(**kwargs)
  1. See UpdateAutomaticTapeCreationPolicyInputRequestTypeDef

update_bandwidth_rate_limit

Updates the bandwidth rate limits of a gateway.

Type annotations and code completion for session.client("storagegateway").update_bandwidth_rate_limit method. boto3 documentation

Method definition
await def update_bandwidth_rate_limit(
    self,
    *,
    GatewayARN: str,
    AverageUploadRateLimitInBitsPerSec: int = ...,
    AverageDownloadRateLimitInBitsPerSec: int = ...,
) -> UpdateBandwidthRateLimitOutputTypeDef:  # (1)
    ...
  1. See UpdateBandwidthRateLimitOutputTypeDef
Usage example with kwargs
kwargs: UpdateBandwidthRateLimitInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.update_bandwidth_rate_limit(**kwargs)
  1. See UpdateBandwidthRateLimitInputRequestTypeDef

update_bandwidth_rate_limit_schedule

Updates the bandwidth rate limit schedule for a specified gateway.

Type annotations and code completion for session.client("storagegateway").update_bandwidth_rate_limit_schedule method. boto3 documentation

Method definition
await def update_bandwidth_rate_limit_schedule(
    self,
    *,
    GatewayARN: str,
    BandwidthRateLimitIntervals: Sequence[BandwidthRateLimitIntervalTypeDef],  # (1)
) -> UpdateBandwidthRateLimitScheduleOutputTypeDef:  # (2)
    ...
  1. See BandwidthRateLimitIntervalTypeDef
  2. See UpdateBandwidthRateLimitScheduleOutputTypeDef
Usage example with kwargs
kwargs: UpdateBandwidthRateLimitScheduleInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "BandwidthRateLimitIntervals": ...,
}

parent.update_bandwidth_rate_limit_schedule(**kwargs)
  1. See UpdateBandwidthRateLimitScheduleInputRequestTypeDef

update_chap_credentials

Updates the Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target.

Type annotations and code completion for session.client("storagegateway").update_chap_credentials method. boto3 documentation

Method definition
await def update_chap_credentials(
    self,
    *,
    TargetARN: str,
    SecretToAuthenticateInitiator: str,
    InitiatorName: str,
    SecretToAuthenticateTarget: str = ...,
) -> UpdateChapCredentialsOutputTypeDef:  # (1)
    ...
  1. See UpdateChapCredentialsOutputTypeDef
Usage example with kwargs
kwargs: UpdateChapCredentialsInputRequestTypeDef = {  # (1)
    "TargetARN": ...,
    "SecretToAuthenticateInitiator": ...,
    "InitiatorName": ...,
}

parent.update_chap_credentials(**kwargs)
  1. See UpdateChapCredentialsInputRequestTypeDef

update_file_system_association

Updates a file system association.

Type annotations and code completion for session.client("storagegateway").update_file_system_association method. boto3 documentation

Method definition
await def update_file_system_association(
    self,
    *,
    FileSystemAssociationARN: str,
    UserName: str = ...,
    Password: str = ...,
    AuditDestinationARN: str = ...,
    CacheAttributes: CacheAttributesTypeDef = ...,  # (1)
) -> UpdateFileSystemAssociationOutputTypeDef:  # (2)
    ...
  1. See CacheAttributesTypeDef
  2. See UpdateFileSystemAssociationOutputTypeDef
Usage example with kwargs
kwargs: UpdateFileSystemAssociationInputRequestTypeDef = {  # (1)
    "FileSystemAssociationARN": ...,
}

parent.update_file_system_association(**kwargs)
  1. See UpdateFileSystemAssociationInputRequestTypeDef

update_gateway_information

Updates a gateway's metadata, which includes the gateway's name and time zone.

Type annotations and code completion for session.client("storagegateway").update_gateway_information method. boto3 documentation

Method definition
await def update_gateway_information(
    self,
    *,
    GatewayARN: str,
    GatewayName: str = ...,
    GatewayTimezone: str = ...,
    CloudWatchLogGroupARN: str = ...,
    GatewayCapacity: GatewayCapacityType = ...,  # (1)
) -> UpdateGatewayInformationOutputTypeDef:  # (2)
    ...
  1. See GatewayCapacityType
  2. See UpdateGatewayInformationOutputTypeDef
Usage example with kwargs
kwargs: UpdateGatewayInformationInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.update_gateway_information(**kwargs)
  1. See UpdateGatewayInformationInputRequestTypeDef

update_gateway_software_now

Updates the gateway virtual machine (VM) software.

Type annotations and code completion for session.client("storagegateway").update_gateway_software_now method. boto3 documentation

Method definition
await def update_gateway_software_now(
    self,
    *,
    GatewayARN: str,
) -> UpdateGatewaySoftwareNowOutputTypeDef:  # (1)
    ...
  1. See UpdateGatewaySoftwareNowOutputTypeDef
Usage example with kwargs
kwargs: UpdateGatewaySoftwareNowInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
}

parent.update_gateway_software_now(**kwargs)
  1. See UpdateGatewaySoftwareNowInputRequestTypeDef

update_maintenance_start_time

Updates a gateway's weekly maintenance start time information, including day and time of the week.

Type annotations and code completion for session.client("storagegateway").update_maintenance_start_time method. boto3 documentation

Method definition
await def update_maintenance_start_time(
    self,
    *,
    GatewayARN: str,
    HourOfDay: int,
    MinuteOfHour: int,
    DayOfWeek: int = ...,
    DayOfMonth: int = ...,
) -> UpdateMaintenanceStartTimeOutputTypeDef:  # (1)
    ...
  1. See UpdateMaintenanceStartTimeOutputTypeDef
Usage example with kwargs
kwargs: UpdateMaintenanceStartTimeInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "HourOfDay": ...,
    "MinuteOfHour": ...,
}

parent.update_maintenance_start_time(**kwargs)
  1. See UpdateMaintenanceStartTimeInputRequestTypeDef

update_nfs_file_share

Updates a Network File System (NFS) file share.

Type annotations and code completion for session.client("storagegateway").update_nfs_file_share method. boto3 documentation

Method definition
await def update_nfs_file_share(
    self,
    *,
    FileShareARN: str,
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    NFSFileShareDefaults: NFSFileShareDefaultsTypeDef = ...,  # (1)
    DefaultStorageClass: str = ...,
    ObjectACL: ObjectACLType = ...,  # (2)
    ClientList: Sequence[str] = ...,
    Squash: str = ...,
    ReadOnly: bool = ...,
    GuessMIMETypeEnabled: bool = ...,
    RequesterPays: bool = ...,
    FileShareName: str = ...,
    CacheAttributes: CacheAttributesTypeDef = ...,  # (3)
    NotificationPolicy: str = ...,
    AuditDestinationARN: str = ...,
) -> UpdateNFSFileShareOutputTypeDef:  # (4)
    ...
  1. See NFSFileShareDefaultsTypeDef
  2. See ObjectACLType
  3. See CacheAttributesTypeDef
  4. See UpdateNFSFileShareOutputTypeDef
Usage example with kwargs
kwargs: UpdateNFSFileShareInputRequestTypeDef = {  # (1)
    "FileShareARN": ...,
}

parent.update_nfs_file_share(**kwargs)
  1. See UpdateNFSFileShareInputRequestTypeDef

update_smb_file_share

Updates a Server Message Block (SMB) file share.

Type annotations and code completion for session.client("storagegateway").update_smb_file_share method. boto3 documentation

Method definition
await def update_smb_file_share(
    self,
    *,
    FileShareARN: str,
    KMSEncrypted: bool = ...,
    KMSKey: str = ...,
    DefaultStorageClass: str = ...,
    ObjectACL: ObjectACLType = ...,  # (1)
    ReadOnly: bool = ...,
    GuessMIMETypeEnabled: bool = ...,
    RequesterPays: bool = ...,
    SMBACLEnabled: bool = ...,
    AccessBasedEnumeration: bool = ...,
    AdminUserList: Sequence[str] = ...,
    ValidUserList: Sequence[str] = ...,
    InvalidUserList: Sequence[str] = ...,
    AuditDestinationARN: str = ...,
    CaseSensitivity: CaseSensitivityType = ...,  # (2)
    FileShareName: str = ...,
    CacheAttributes: CacheAttributesTypeDef = ...,  # (3)
    NotificationPolicy: str = ...,
    OplocksEnabled: bool = ...,
) -> UpdateSMBFileShareOutputTypeDef:  # (4)
    ...
  1. See ObjectACLType
  2. See CaseSensitivityType
  3. See CacheAttributesTypeDef
  4. See UpdateSMBFileShareOutputTypeDef
Usage example with kwargs
kwargs: UpdateSMBFileShareInputRequestTypeDef = {  # (1)
    "FileShareARN": ...,
}

parent.update_smb_file_share(**kwargs)
  1. See UpdateSMBFileShareInputRequestTypeDef

update_smb_file_share_visibility

Controls whether the shares on an S3 File Gateway are visible in a net view or browse list.

Type annotations and code completion for session.client("storagegateway").update_smb_file_share_visibility method. boto3 documentation

Method definition
await def update_smb_file_share_visibility(
    self,
    *,
    GatewayARN: str,
    FileSharesVisible: bool,
) -> UpdateSMBFileShareVisibilityOutputTypeDef:  # (1)
    ...
  1. See UpdateSMBFileShareVisibilityOutputTypeDef
Usage example with kwargs
kwargs: UpdateSMBFileShareVisibilityInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "FileSharesVisible": ...,
}

parent.update_smb_file_share_visibility(**kwargs)
  1. See UpdateSMBFileShareVisibilityInputRequestTypeDef

update_smb_local_groups

Updates the list of Active Directory users and groups that have special permissions for SMB file shares on the gateway.

Type annotations and code completion for session.client("storagegateway").update_smb_local_groups method. boto3 documentation

Method definition
await def update_smb_local_groups(
    self,
    *,
    GatewayARN: str,
    SMBLocalGroups: SMBLocalGroupsTypeDef,  # (1)
) -> UpdateSMBLocalGroupsOutputTypeDef:  # (2)
    ...
  1. See SMBLocalGroupsTypeDef
  2. See UpdateSMBLocalGroupsOutputTypeDef
Usage example with kwargs
kwargs: UpdateSMBLocalGroupsInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "SMBLocalGroups": ...,
}

parent.update_smb_local_groups(**kwargs)
  1. See UpdateSMBLocalGroupsInputRequestTypeDef

update_smb_security_strategy

Updates the SMB security strategy on a file gateway.

Type annotations and code completion for session.client("storagegateway").update_smb_security_strategy method. boto3 documentation

Method definition
await def update_smb_security_strategy(
    self,
    *,
    GatewayARN: str,
    SMBSecurityStrategy: SMBSecurityStrategyType,  # (1)
) -> UpdateSMBSecurityStrategyOutputTypeDef:  # (2)
    ...
  1. See SMBSecurityStrategyType
  2. See UpdateSMBSecurityStrategyOutputTypeDef
Usage example with kwargs
kwargs: UpdateSMBSecurityStrategyInputRequestTypeDef = {  # (1)
    "GatewayARN": ...,
    "SMBSecurityStrategy": ...,
}

parent.update_smb_security_strategy(**kwargs)
  1. See UpdateSMBSecurityStrategyInputRequestTypeDef

update_snapshot_schedule

Updates a snapshot schedule configured for a gateway volume.

Type annotations and code completion for session.client("storagegateway").update_snapshot_schedule method. boto3 documentation

Method definition
await def update_snapshot_schedule(
    self,
    *,
    VolumeARN: str,
    StartAt: int,
    RecurrenceInHours: int,
    Description: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> UpdateSnapshotScheduleOutputTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See UpdateSnapshotScheduleOutputTypeDef
Usage example with kwargs
kwargs: UpdateSnapshotScheduleInputRequestTypeDef = {  # (1)
    "VolumeARN": ...,
    "StartAt": ...,
    "RecurrenceInHours": ...,
}

parent.update_snapshot_schedule(**kwargs)
  1. See UpdateSnapshotScheduleInputRequestTypeDef

update_vtl_device_type

Updates the type of medium changer in a tape gateway.

Type annotations and code completion for session.client("storagegateway").update_vtl_device_type method. boto3 documentation

Method definition
await def update_vtl_device_type(
    self,
    *,
    VTLDeviceARN: str,
    DeviceType: str,
) -> UpdateVTLDeviceTypeOutputTypeDef:  # (1)
    ...
  1. See UpdateVTLDeviceTypeOutputTypeDef
Usage example with kwargs
kwargs: UpdateVTLDeviceTypeInputRequestTypeDef = {  # (1)
    "VTLDeviceARN": ...,
    "DeviceType": ...,
}

parent.update_vtl_device_type(**kwargs)
  1. See UpdateVTLDeviceTypeInputRequestTypeDef

__aenter__

Type annotations and code completion for session.client("storagegateway").__aenter__ method. boto3 documentation

Method definition
await def __aenter__(
    self,
) -> StorageGatewayClient:
    ...

__aexit__

Type annotations and code completion for session.client("storagegateway").__aexit__ method. boto3 documentation

Method definition
await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator

Type annotations and code completion for session.client("storagegateway").get_paginator method with overloads.