github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/providers/nifcloud/computing/instance.go (about)

     1  package computing
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type Instance struct {
     8  	Metadata          defsecTypes.Metadata
     9  	SecurityGroup     defsecTypes.StringValue
    10  	NetworkInterfaces []NetworkInterface
    11  }
    12  
    13  type NetworkInterface struct {
    14  	Metadata  defsecTypes.Metadata
    15  	NetworkID defsecTypes.StringValue
    16  }