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

     1  package securitycenter
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type SecurityCenter struct {
     8  	Contacts      []Contact
     9  	Subscriptions []SubscriptionPricing
    10  }
    11  
    12  type Contact struct {
    13  	Metadata                 defsecTypes.Metadata
    14  	EnableAlertNotifications defsecTypes.BoolValue
    15  	Phone                    defsecTypes.StringValue
    16  }
    17  
    18  const (
    19  	TierFree     = "Free"
    20  	TierStandard = "Standard"
    21  )
    22  
    23  type SubscriptionPricing struct {
    24  	Metadata defsecTypes.Metadata
    25  	Tier     defsecTypes.StringValue
    26  }