github.com/openshift/installer@v1.4.17/pkg/types/clusterquota.go (about)

     1  package types
     2  
     3  import (
     4  	"github.com/openshift/installer/pkg/types/gcp"
     5  )
     6  
     7  // ClusterQuota contains the size, in cloud quota, of
     8  // the cluster that was created by installer.
     9  type ClusterQuota struct {
    10  	GCP *gcp.Quota `json:"gcp,omitempty"`
    11  }