github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/appdiscovery/start_app_discovery_session_parameters.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 appdiscovery
     7  
     8  // Parameters to start an application discovery session. It can have NSGroup Ids as well as the App Profile Ids.
     9  type StartAppDiscoverySessionParameters struct {
    10  
    11  	// App Profile Ids
    12  	AppProfileIds []string `json:"app_profile_ids,omitempty"`
    13  
    14  	// NSGroup Ids
    15  	NsGroupIds []string `json:"ns_group_ids"`
    16  }