github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/plugin/models/get_service.go (about)

     1  package plugin_models
     2  
     3  type GetService_Model struct {
     4  	Guid            string
     5  	Name            string
     6  	DashboardUrl    string
     7  	IsUserProvided  bool
     8  	ServiceOffering GetService_ServiceFields
     9  	ServicePlan     GetService_ServicePlan
    10  	LastOperation   GetService_LastOperation
    11  }
    12  
    13  type GetService_LastOperation struct {
    14  	Type        string
    15  	State       string
    16  	Description string
    17  	CreatedAt   string
    18  	UpdatedAt   string
    19  }
    20  
    21  type GetService_ServicePlan struct {
    22  	Name string
    23  	Guid string
    24  }
    25  
    26  type GetService_ServiceFields struct {
    27  	Name             string
    28  	DocumentationUrl string
    29  }