github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/current_backup_operation_status.go (about)

     1  /* Copyright © 2017 VMware, Inc. All Rights Reserved.
     2     SPDX-License-Identifier: BSD-2-Clause
     3  
     4     Generated by: https://github.com/swagger-api/swagger-codegen.git */
     5  
     6  package administration
     7  
     8  type CurrentBackupOperationStatus struct {
     9  
    10  	// Unique identifier of current backup
    11  	BackupId string `json:"backup_id,omitempty"`
    12  
    13  	// Current step of operation
    14  	CurrentStep string `json:"current_step,omitempty"`
    15  
    16  	// Additional human-readable status information about current step
    17  	CurrentStepMessage string `json:"current_step_message,omitempty"`
    18  
    19  	// Time when operation is expected to end
    20  	EndTime int64 `json:"end_time,omitempty"`
    21  
    22  	// Type of operation that is in progress. Returns none if no operation is in progress, in which case none of the other fields will be set.
    23  	OperationType string `json:"operation_type"`
    24  
    25  	// Time when operation was started
    26  	StartTime int64 `json:"start_time,omitempty"`
    27  }