github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelSecurity.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Security undocumented
     6  type Security struct {
     7  	// Entity is the base model of Security
     8  	Entity
     9  	// Alerts undocumented
    10  	Alerts []Alert `json:"alerts,omitempty"`
    11  	// SecureScoreControlProfiles undocumented
    12  	SecureScoreControlProfiles []SecureScoreControlProfile `json:"secureScoreControlProfiles,omitempty"`
    13  	// SecureScores undocumented
    14  	SecureScores []SecureScore `json:"secureScores,omitempty"`
    15  }
    16  
    17  // SecurityVendorInformation undocumented
    18  type SecurityVendorInformation struct {
    19  	// Object is the base model of SecurityVendorInformation
    20  	Object
    21  	// Provider undocumented
    22  	Provider *string `json:"provider,omitempty"`
    23  	// ProviderVersion undocumented
    24  	ProviderVersion *string `json:"providerVersion,omitempty"`
    25  	// SubProvider undocumented
    26  	SubProvider *string `json:"subProvider,omitempty"`
    27  	// Vendor undocumented
    28  	Vendor *string `json:"vendor,omitempty"`
    29  }