github.com/Axway/agent-sdk@v1.1.101/pkg/apic/apiserver/models/management/v1alpha1/model_environment_spec.go (about) 1 /* 2 * API Server specification. 3 * 4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) 5 * 6 * API version: SNAPSHOT 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package management 11 12 // EnvironmentSpec (management.v1alpha1.Environment) 13 type EnvironmentSpec struct { 14 Description string `json:"description,omitempty"` 15 // (management.v1alpha1.Environment) 16 Variables map[string]string `json:"variables,omitempty"` 17 // Production environment will be used to perform production processing or connect to a non-Axway gateway. This usage will count against your entitled quota. 18 Production bool `json:"production,omitempty"` 19 // Axway Managed environment is hosted in the Axway Managed Cloud. 20 AxwayManaged bool `json:"axwayManaged,omitempty"` 21 Icon EnvironmentSpecIcon `json:"icon,omitempty"` 22 Compliance EnvironmentSpecCompliance `json:"compliance,omitempty"` 23 }