github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/upgrade/upgrade_task_properties.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 upgrade
     7  
     8  import (
     9  	"github.com/vmware/go-vmware-nsxt/common"
    10  )
    11  
    12  // Task properties
    13  type UpgradeTaskProperties struct {
    14  
    15  	// helper for the task
    16  	ActionName string `json:"action_name,omitempty"`
    17  
    18  	// Name of Bundle
    19  	BundleName string `json:"bundle_name"`
    20  
    21  	// Bundle arguments
    22  	Parameters []common.KeyValuePair `json:"parameters,omitempty"`
    23  }