Documentation ¶
Index ¶
- Constants
- func ContainsEmptyString(ss ...string) bool
- func DebugMode() bool
- func GetAuthMiddleware() *jwt.GinJWTMiddleware
- func GetUserMail(c *gin.Context) string
- func GetUserName(c *gin.Context) string
- func RandomString(length int) string
- func RemoveDuplicates(elements []string) []string
- type AdminList
- type ApiResponse
- type Bucket
- type BucketListResponse
- type CreateLogseneAppCommand
- type CreateSnapshotCommand
- type DDCBilling
- type DDCBillingRow
- type EditBillingDataCommand
- type EditQuotasCommand
- type EditSematextPlanCommand
- type FixVolumeCommand
- type GrowVolumeCommand
- type Instance
- type InstanceListResponse
- type JsonPatch
- type NewProjectCommand
- type NewPullSecretCommand
- type NewS3BucketCommand
- type NewS3UserCommand
- type NewServiceAccountCommand
- type NewTestProjectCommand
- type NewVolumeApiResponse
- type NewVolumeCommand
- type NewVolumeResponse
- type OpenshiftBase
- type ProjectName
- type S3CredentialsResponse
- type SematextAppList
- type SematextLogsenePlan
- type SnapshotApiResponse
- type User
- type Volume
- type WorkflowCommand
- type WorkflowExecutionProgress
- type WorkflowJob
- type WorkflowJobStatus
- type WorkflowKeyValue
Constants ¶
View Source
const ConfigNotSetError = "Funktion deaktiviert oder falsch konfiguriert. Kontaktieren Sie bitte das CLP Team"
Variables ¶
This section is empty.
Functions ¶
func ContainsEmptyString ¶ added in v1.3.21
func GetAuthMiddleware ¶
func GetAuthMiddleware() *jwt.GinJWTMiddleware
GetAuthMiddleware returns a gin middleware for JWT with cookie based auth
func GetUserMail ¶ added in v1.2.0
GetUserMail returns the users mail address based of the gin.Context
func GetUserName ¶
GetUserName returns the username based of the gin.Context
func RandomString ¶ added in v1.3.21
func RemoveDuplicates ¶ added in v1.3.9
Types ¶
type ApiResponse ¶ added in v1.0.9
type ApiResponse struct {
Message string `json:"message"`
}
type BucketListResponse ¶ added in v1.1.6
type BucketListResponse struct {
Buckets []Bucket `json:"buckets"`
}
type CreateLogseneAppCommand ¶ added in v1.2.0
type CreateLogseneAppCommand struct { AppName string `json:"appName"` DiscountCode string `json:"discountCode"` EditSematextPlanCommand EditBillingDataCommand }
type CreateSnapshotCommand ¶ added in v1.3.0
type DDCBilling ¶ added in v1.0.9
type DDCBilling struct { Rows []DDCBillingRow `json:"rows"` CSV string `json:"csv"` }
type DDCBillingRow ¶ added in v1.1.0
type DDCBillingRow struct { Sender string `json:"sender"` Text string `json:"text"` Art string `json:"art"` Project string `json:"project"` Host string `json:"host"` Backup bool `json:"backup"` ReceptionAssignment string `json:"receptionAssignment"` OrderReception string `json:"orderReception"` PspElement string `json:"pspElement"` TotalCPU float64 `json:"totalCpu"` TotalMemory float64 `json:"totalMemory"` TotalStorage float64 `json:"totalStorage"` Total float64 `json:"total"` }
type EditBillingDataCommand ¶ added in v1.0.9
type EditBillingDataCommand struct { OpenshiftBase Billing string `json:"billing"` }
type EditQuotasCommand ¶ added in v1.0.9
type EditQuotasCommand struct { OpenshiftBase CPU int `json:"cpu"` Memory int `json:"memory"` }
type EditSematextPlanCommand ¶ added in v1.2.0
type FixVolumeCommand ¶ added in v1.0.9
type FixVolumeCommand struct {
OpenshiftBase
}
type GrowVolumeCommand ¶ added in v1.0.9
type Instance ¶ added in v1.2.5
type Instance struct { Name string `json:"name"` InstanceId string `json:"instanceId"` InstanceType string `json:"instanceType"` ImageId string `json:"imageId"` ImageName string `json:"imageName"` LaunchTime *time.Time `json:"launchTime"` State string `json:"state"` PrivateIpAddress string `json:"privateIpAddress"` Account string `json:"account"` Snapshots []*ec2.Snapshot `json:"snapshots"` Volumes []Volume `json:"volumes"` Tags []*ec2.Tag `json:"tags"` }
type InstanceListResponse ¶ added in v1.2.5
type InstanceListResponse struct {
Instances []Instance `json:"instances"`
}
type NewProjectCommand ¶ added in v1.0.9
type NewProjectCommand struct { OpenshiftBase Billing string `json:"billing"` MegaId string `json:"megaId"` }
type NewPullSecretCommand ¶ added in v1.3.21
type NewPullSecretCommand struct { OpenshiftBase Username string Password string }
type NewS3BucketCommand ¶ added in v1.1.6
type NewS3BucketCommand struct { ProjectName BucketName string `json:"bucketname"` Billing string `json:"billing"` Stage string `json:"stage"` }
type NewS3UserCommand ¶ added in v1.1.6
type NewServiceAccountCommand ¶ added in v1.0.9
type NewServiceAccountCommand struct { OpenshiftBase ServiceAccount string `json:"serviceAccount"` OrganizationKey string `json:"organizationKey"` }
type NewTestProjectCommand ¶ added in v1.0.9
type NewTestProjectCommand struct {
OpenshiftBase
}
type NewVolumeApiResponse ¶ added in v1.3.2
type NewVolumeApiResponse struct { Message string `json:"message"` Data NewVolumeResponse `json:"data"` }
type NewVolumeCommand ¶ added in v1.0.9
type NewVolumeCommand struct { OpenshiftBase Size string `json:"size"` PvcName string `json:"pvcName"` Mode string `json:"mode"` Technology string `json:"technology"` }
type NewVolumeResponse ¶ added in v1.3.2
type OpenshiftBase ¶ added in v1.4.0
type ProjectName ¶ added in v1.0.9
type ProjectName struct {
Project string `json:"project"`
}
type S3CredentialsResponse ¶ added in v1.1.6
type SematextAppList ¶ added in v1.2.0
type SematextLogsenePlan ¶ added in v1.2.0
type SnapshotApiResponse ¶ added in v1.3.0
type WorkflowCommand ¶ added in v1.3.2
type WorkflowCommand struct {
UserInputValues []WorkflowKeyValue `json:"userInputValues"`
}
type WorkflowExecutionProgress ¶ added in v1.3.2
type WorkflowJob ¶ added in v1.3.2
type WorkflowJob struct { JobId int `json:"jobId"` JobStatus WorkflowJobStatus `json:"jobStatus"` }
type WorkflowJobStatus ¶ added in v1.3.2
type WorkflowJobStatus struct { JobStatus string `json:"jobStatus"` ErrorMessage string `json:"errorMessage"` ReturnParameters []WorkflowKeyValue `json:"returnParameters"` WorkflowExecutionProgress WorkflowExecutionProgress `json:"workflow-execution-progress"` }
type WorkflowKeyValue ¶ added in v1.3.2
Click to show internal directories.
Click to hide internal directories.