NAME gcloud logging operations list - list long running operations SYNOPSIS gcloud logging operations list --location=LOCATION --operation-filter=OPERATION_FILTER [--billing-account=BILLING_ACCOUNT_ID | --folder=FOLDER_ID | --organization=ORGANIZATION_ID | --project=PROJECT_ID] [--limit=LIMIT] [--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [GCLOUD_WIDE_FLAG ...] DESCRIPTION Return a list of long running operation details in given LOCATION. The operations were scheduled by other gcloud commands. For example: a copy_log_entries operation scheduled by command: gcloud alpha logging operations copy BUCKET_ID DESTINATION --location=LOCATION. Note: while listing the operations, the request_type must be specified in filter. Example: --operation-filter=request_type=CopyLogEntries, Supported operation types are: CopyLogEntries, CreateBucket and UpdateBucket. Other supported filter expression are: operation_start_time, operation_finish_time and operation_state. EXAMPLES To list CopyLogEntries operations, run: $ gcloud logging operations list --location=LOCATION \ --operation-filter=request_type=CopyLogEntries To list CopyLogEntries operations that started after a specified time, run: $ gcloud logging operations list --location=LOCATION \ --operation-filter=request_type=CopyLogEntries AND \ operation_start_time>TIMESTAMP To list CopyLogEntries operations that finished before a specified time, run: $ gcloud logging operations list --location=LOCATION \ --operation-filter=request_type=CopyLogEntries AND \ operation_finish_time