openapi

package
v0.0.0-...-f194855 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 11, 2025 License: AGPL-3.0 Imports: 20 Imported by: 0

README

Go API client for openapi

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: version not set
  • Package version: 1.0.0
  • Generator version: 7.9.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi "github.com/bopmatic/sdk/golang/openapi"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value openapi.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value openapi.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using openapi.ContextOperationServerIndices and openapi.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api.bopmatic.com

Class Method HTTP request Description
ServiceRunnerAPI CreateApiKey Post /ServiceRunner/CreateApiKey
ServiceRunnerAPI CreateDeployment Post /ServiceRunner/CreateDeployment
ServiceRunnerAPI CreateEnvironment Post /ServiceRunner/CreateEnvironment
ServiceRunnerAPI CreateProject Post /ServiceRunner/CreateProject
ServiceRunnerAPI DeactivateProject Post /ServiceRunner/DeactivateProject
ServiceRunnerAPI DeleteApiKey Post /ServiceRunner/DeleteApiKey
ServiceRunnerAPI DeleteEnvironment Post /ServiceRunner/DeleteEnvironment
ServiceRunnerAPI DeletePackage Post /ServiceRunner/DeletePackage
ServiceRunnerAPI DeleteProject Post /ServiceRunner/DeleteProject
ServiceRunnerAPI DescribeApiKey Post /ServiceRunner/DescribeApiKey
ServiceRunnerAPI DescribeDatabase Post /ServiceRunner/DescribeDatabase
ServiceRunnerAPI DescribeDatastore Post /ServiceRunner/DescribeDatastore
ServiceRunnerAPI DescribeDeployment Post /ServiceRunner/DescribeDeployment
ServiceRunnerAPI DescribeEnvironment Post /ServiceRunner/DescribeEnvironment
ServiceRunnerAPI DescribePackage Post /ServiceRunner/DescribePackage
ServiceRunnerAPI DescribeProject Post /ServiceRunner/DescribeProject
ServiceRunnerAPI DescribeService Post /ServiceRunner/DescribeService
ServiceRunnerAPI DescribeSite Post /ServiceRunner/DescribeSite
ServiceRunnerAPI GetLogs Post /ServiceRunner/GetLogs
ServiceRunnerAPI GetMetricSamples Post /ServiceRunner/GetMetricSamples
ServiceRunnerAPI GetUploadURL Post /ServiceRunner/GetUploadURL
ServiceRunnerAPI ListApiKeys Post /ServiceRunner/ListApiKeys
ServiceRunnerAPI ListDatabases Post /ServiceRunner/ListDatabases
ServiceRunnerAPI ListDatastores Post /ServiceRunner/ListDatastores
ServiceRunnerAPI ListDeployments Post /ServiceRunner/ListDeployments
ServiceRunnerAPI ListEnvironments Post /ServiceRunner/ListEnvironments
ServiceRunnerAPI ListMetrics Post /ServiceRunner/ListMetrics
ServiceRunnerAPI ListPackages Post /ServiceRunner/ListPackages
ServiceRunnerAPI ListProjects Post /ServiceRunner/ListProjects
ServiceRunnerAPI ListServices Post /ServiceRunner/ListServices
ServiceRunnerAPI UploadPackage Post /ServiceRunner/UploadPackage

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

ApiKeyAuth
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: ApiKeyAuth and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"ApiKeyAuth": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
BearerAuth
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: BearerAuth and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"BearerAuth": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedDeploymentInitiatorEnumValues = []DeploymentInitiator{
	"INVALID_DEPLOY_INIT",
	"CUSTOMER",
	"SERVICE",
	"UNKNOWN_DEPLOY_INIT",
}

All allowed values of DeploymentInitiator enum

View Source
var AllowedDeploymentStateDetailEnumValues = []DeploymentStateDetail{
	"INVALID_DEPLOY_STATE_DET",
	"NONE",
	"PKG_INVALID",
	"BLD_INVALID",
	"DPLY_SUPPORT_NEEDED",
	"UNKNOWN_DEPLOY_STATE_DET",
}

All allowed values of DeploymentStateDetail enum

View Source
var AllowedDeploymentStateEnumValues = []DeploymentState{
	"INVALID_DEPLOY_STATE",
	"CREATED",
	"DPLY_VALIDATING",
	"DPLY_BUILDING",
	"DEPLOYING",
	"SUCCESS",
	"FAILED",
	"UNKNOWN_DEPLOY_STATE",
}

All allowed values of DeploymentState enum

View Source
var AllowedDeploymentTypeEnumValues = []DeploymentType{
	"INVALID_DEPLOY_TYPE",
	"NEW_PACKAGE",
	"ENV_TEARDOWN",
	"SECURITY_UPDATE",
	"INF_UPDATE",
	"UNKNOWN_DEPLOY_TYPE",
}

All allowed values of DeploymentType enum

View Source
var AllowedMetricsFormatEnumValues = []MetricsFormat{
	"INVALID_METRIC_FORMAT",
	"METRIC_FORMAT_OPENMETRICS",
	"UNKNOWN_METRIC_FORMAT",
}

All allowed values of MetricsFormat enum

View Source
var AllowedMetricsScopeEnumValues = []MetricsScope{
	"INVALID_METRIC_SCOPE",
	"METRIC_SCOPE_ALL",
	"METRIC_SCOPE_SERVICE",
	"METRIC_SCOPE_DATASTORE",
	"METRIC_SCOPE_DATABASE",
	"UNKNOWN_METRIC_SCOPE",
}

All allowed values of MetricsScope enum

View Source
var AllowedPackageStateEnumValues = []PackageState{
	"INVALID_PKG_STATE",
	"UPLOADING",
	"UPLOADED",
	"PKG_VALIDATING",
	"INVALID",
	"PKG_BUILDING",
	"PKG_SUPPORT_NEEDED",
	"PKG_DELETED",
	"BUILT",
	"UNKNOWN_PKG_STATE",
}

All allowed values of PackageState enum

View Source
var AllowedProjectStateEnumValues = []ProjectState{
	"INVALID_PROJ_STATE",
	"INACTIVE",
	"ACTIVE",
	"PROJ_STATE_DELETED",
	"UNKNOWN_PROJ_STATE",
}

All allowed values of ProjectState enum

View Source
var AllowedServiceRunnerStatusEnumValues = []ServiceRunnerStatus{
	"STATUS_INVALID",
	"STATUS_OK",
	"STATUS_INTERNAL_ERR",
	"STATUS_DNS_CONFLICT",
	"STATUS_ACCT_LIMIT_REACHED",
	"STATUS_EXISTS",
	"STATUS_NOT_EXISTS",
	"STATUS_INVALID_REQUEST",
	"STATUS_UNKNOWN",
}

All allowed values of ServiceRunnerStatus enum

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	ServiceRunnerAPI *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the pb/sr.proto API vversion not set In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiCreateApiKeyRequest

type ApiCreateApiKeyRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiCreateApiKeyRequest) Body

func (ApiCreateApiKeyRequest) Execute

type ApiCreateDeploymentRequest

type ApiCreateDeploymentRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDeploymentRequest) Body

func (ApiCreateDeploymentRequest) Execute

type ApiCreateEnvironmentRequest

type ApiCreateEnvironmentRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEnvironmentRequest) Body

func (ApiCreateEnvironmentRequest) Execute

type ApiCreateProjectRequest

type ApiCreateProjectRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiCreateProjectRequest) Body

func (ApiCreateProjectRequest) Execute

type ApiDeactivateProjectRequest

type ApiDeactivateProjectRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDeactivateProjectRequest) Body

func (ApiDeactivateProjectRequest) Execute

type ApiDeleteApiKeyRequest

type ApiDeleteApiKeyRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteApiKeyRequest) Body

func (ApiDeleteApiKeyRequest) Execute

type ApiDeleteEnvironmentRequest

type ApiDeleteEnvironmentRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteEnvironmentRequest) Body

func (ApiDeleteEnvironmentRequest) Execute

type ApiDeletePackageRequest

type ApiDeletePackageRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDeletePackageRequest) Body

func (ApiDeletePackageRequest) Execute

type ApiDeleteProjectRequest

type ApiDeleteProjectRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteProjectRequest) Body

func (ApiDeleteProjectRequest) Execute

type ApiDescribeApiKeyRequest

type ApiDescribeApiKeyRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeApiKeyRequest) Body

func (ApiDescribeApiKeyRequest) Execute

type ApiDescribeDatabaseRequest

type ApiDescribeDatabaseRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeDatabaseRequest) Body

func (ApiDescribeDatabaseRequest) Execute

type ApiDescribeDatastoreRequest

type ApiDescribeDatastoreRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeDatastoreRequest) Body

func (ApiDescribeDatastoreRequest) Execute

type ApiDescribeDeploymentRequest

type ApiDescribeDeploymentRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeDeploymentRequest) Body

func (ApiDescribeDeploymentRequest) Execute

type ApiDescribeEnvironmentRequest

type ApiDescribeEnvironmentRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeEnvironmentRequest) Body

func (ApiDescribeEnvironmentRequest) Execute

type ApiDescribePackageRequest

type ApiDescribePackageRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribePackageRequest) Body

func (ApiDescribePackageRequest) Execute

type ApiDescribeProjectRequest

type ApiDescribeProjectRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeProjectRequest) Body

func (ApiDescribeProjectRequest) Execute

type ApiDescribeServiceRequest

type ApiDescribeServiceRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeServiceRequest) Body

func (ApiDescribeServiceRequest) Execute

type ApiDescribeSiteRequest

type ApiDescribeSiteRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiDescribeSiteRequest) Body

func (ApiDescribeSiteRequest) Execute

type ApiGetLogsRequest

type ApiGetLogsRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiGetLogsRequest) Body

func (ApiGetLogsRequest) Execute

func (r ApiGetLogsRequest) Execute() (*GetLogsReply, *http.Response, error)

type ApiGetMetricSamplesRequest

type ApiGetMetricSamplesRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiGetMetricSamplesRequest) Body

func (ApiGetMetricSamplesRequest) Execute

type ApiGetUploadURLRequest

type ApiGetUploadURLRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiGetUploadURLRequest) Body

func (ApiGetUploadURLRequest) Execute

type ApiKeyDescription

type ApiKeyDescription struct {
	KeyId       *string `json:"keyId,omitempty"`
	Name        *string `json:"name,omitempty"`
	Description *string `json:"description,omitempty"`
	// time the key was created expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.
	CreateTime *string `json:"createTime,omitempty"`
	// time the key should expire expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC. A value of 0 indicates the key should never expire.
	ExpireTime *string `json:"expireTime,omitempty"`
	// time the key was last uzed expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC. A value of 0 indicates the key was never used.
	LastUsed *string `json:"lastUsed,omitempty"`
}

ApiKeyDescription struct for ApiKeyDescription

func NewApiKeyDescription

func NewApiKeyDescription() *ApiKeyDescription

NewApiKeyDescription instantiates a new ApiKeyDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiKeyDescriptionWithDefaults

func NewApiKeyDescriptionWithDefaults() *ApiKeyDescription

NewApiKeyDescriptionWithDefaults instantiates a new ApiKeyDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiKeyDescription) GetCreateTime

func (o *ApiKeyDescription) GetCreateTime() string

GetCreateTime returns the CreateTime field value if set, zero value otherwise.

func (*ApiKeyDescription) GetCreateTimeOk

func (o *ApiKeyDescription) GetCreateTimeOk() (*string, bool)

GetCreateTimeOk returns a tuple with the CreateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKeyDescription) GetDescription

func (o *ApiKeyDescription) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ApiKeyDescription) GetDescriptionOk

func (o *ApiKeyDescription) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKeyDescription) GetExpireTime

func (o *ApiKeyDescription) GetExpireTime() string

GetExpireTime returns the ExpireTime field value if set, zero value otherwise.

func (*ApiKeyDescription) GetExpireTimeOk

func (o *ApiKeyDescription) GetExpireTimeOk() (*string, bool)

GetExpireTimeOk returns a tuple with the ExpireTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKeyDescription) GetKeyId

func (o *ApiKeyDescription) GetKeyId() string

GetKeyId returns the KeyId field value if set, zero value otherwise.

func (*ApiKeyDescription) GetKeyIdOk

func (o *ApiKeyDescription) GetKeyIdOk() (*string, bool)

GetKeyIdOk returns a tuple with the KeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKeyDescription) GetLastUsed

func (o *ApiKeyDescription) GetLastUsed() string

GetLastUsed returns the LastUsed field value if set, zero value otherwise.

func (*ApiKeyDescription) GetLastUsedOk

func (o *ApiKeyDescription) GetLastUsedOk() (*string, bool)

GetLastUsedOk returns a tuple with the LastUsed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKeyDescription) GetName

func (o *ApiKeyDescription) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ApiKeyDescription) GetNameOk

func (o *ApiKeyDescription) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKeyDescription) HasCreateTime

func (o *ApiKeyDescription) HasCreateTime() bool

HasCreateTime returns a boolean if a field has been set.

func (*ApiKeyDescription) HasDescription

func (o *ApiKeyDescription) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ApiKeyDescription) HasExpireTime

func (o *ApiKeyDescription) HasExpireTime() bool

HasExpireTime returns a boolean if a field has been set.

func (*ApiKeyDescription) HasKeyId

func (o *ApiKeyDescription) HasKeyId() bool

HasKeyId returns a boolean if a field has been set.

func (*ApiKeyDescription) HasLastUsed

func (o *ApiKeyDescription) HasLastUsed() bool

HasLastUsed returns a boolean if a field has been set.

func (*ApiKeyDescription) HasName

func (o *ApiKeyDescription) HasName() bool

HasName returns a boolean if a field has been set.

func (ApiKeyDescription) MarshalJSON

func (o ApiKeyDescription) MarshalJSON() ([]byte, error)

func (*ApiKeyDescription) SetCreateTime

func (o *ApiKeyDescription) SetCreateTime(v string)

SetCreateTime gets a reference to the given string and assigns it to the CreateTime field.

func (*ApiKeyDescription) SetDescription

func (o *ApiKeyDescription) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ApiKeyDescription) SetExpireTime

func (o *ApiKeyDescription) SetExpireTime(v string)

SetExpireTime gets a reference to the given string and assigns it to the ExpireTime field.

func (*ApiKeyDescription) SetKeyId

func (o *ApiKeyDescription) SetKeyId(v string)

SetKeyId gets a reference to the given string and assigns it to the KeyId field.

func (*ApiKeyDescription) SetLastUsed

func (o *ApiKeyDescription) SetLastUsed(v string)

SetLastUsed gets a reference to the given string and assigns it to the LastUsed field.

func (*ApiKeyDescription) SetName

func (o *ApiKeyDescription) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ApiKeyDescription) ToMap

func (o ApiKeyDescription) ToMap() (map[string]interface{}, error)

type ApiListApiKeysRequest

type ApiListApiKeysRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListApiKeysRequest) Body

func (r ApiListApiKeysRequest) Body(body map[string]interface{}) ApiListApiKeysRequest

func (ApiListApiKeysRequest) Execute

type ApiListDatabasesRequest

type ApiListDatabasesRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListDatabasesRequest) Body

func (ApiListDatabasesRequest) Execute

type ApiListDatastoresRequest

type ApiListDatastoresRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListDatastoresRequest) Body

func (ApiListDatastoresRequest) Execute

type ApiListDeploymentsRequest

type ApiListDeploymentsRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListDeploymentsRequest) Body

func (ApiListDeploymentsRequest) Execute

type ApiListEnvironmentsRequest

type ApiListEnvironmentsRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListEnvironmentsRequest) Body

func (r ApiListEnvironmentsRequest) Body(body map[string]interface{}) ApiListEnvironmentsRequest

func (ApiListEnvironmentsRequest) Execute

type ApiListMetricsRequest

type ApiListMetricsRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListMetricsRequest) Body

func (ApiListMetricsRequest) Execute

type ApiListPackagesRequest

type ApiListPackagesRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListPackagesRequest) Body

func (ApiListPackagesRequest) Execute

type ApiListProjectsRequest

type ApiListProjectsRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListProjectsRequest) Body

func (r ApiListProjectsRequest) Body(body map[string]interface{}) ApiListProjectsRequest

func (ApiListProjectsRequest) Execute

type ApiListServicesRequest

type ApiListServicesRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiListServicesRequest) Body

func (ApiListServicesRequest) Execute

type ApiUploadPackageRequest

type ApiUploadPackageRequest struct {
	ApiService *ServiceRunnerAPIService
	// contains filtered or unexported fields
}

func (ApiUploadPackageRequest) Body

func (ApiUploadPackageRequest) Execute

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CreateApiKeyReply

type CreateApiKeyReply struct {
	Result  *ServiceRunnerResult `json:"result,omitempty"`
	KeyId   *string              `json:"keyId,omitempty"`
	KeyData *string              `json:"keyData,omitempty"`
}

CreateApiKeyReply struct for CreateApiKeyReply

func NewCreateApiKeyReply

func NewCreateApiKeyReply() *CreateApiKeyReply

NewCreateApiKeyReply instantiates a new CreateApiKeyReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateApiKeyReplyWithDefaults

func NewCreateApiKeyReplyWithDefaults() *CreateApiKeyReply

NewCreateApiKeyReplyWithDefaults instantiates a new CreateApiKeyReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateApiKeyReply) GetKeyData

func (o *CreateApiKeyReply) GetKeyData() string

GetKeyData returns the KeyData field value if set, zero value otherwise.

func (*CreateApiKeyReply) GetKeyDataOk

func (o *CreateApiKeyReply) GetKeyDataOk() (*string, bool)

GetKeyDataOk returns a tuple with the KeyData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateApiKeyReply) GetKeyId

func (o *CreateApiKeyReply) GetKeyId() string

GetKeyId returns the KeyId field value if set, zero value otherwise.

func (*CreateApiKeyReply) GetKeyIdOk

func (o *CreateApiKeyReply) GetKeyIdOk() (*string, bool)

GetKeyIdOk returns a tuple with the KeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateApiKeyReply) GetResult

func (o *CreateApiKeyReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*CreateApiKeyReply) GetResultOk

func (o *CreateApiKeyReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateApiKeyReply) HasKeyData

func (o *CreateApiKeyReply) HasKeyData() bool

HasKeyData returns a boolean if a field has been set.

func (*CreateApiKeyReply) HasKeyId

func (o *CreateApiKeyReply) HasKeyId() bool

HasKeyId returns a boolean if a field has been set.

func (*CreateApiKeyReply) HasResult

func (o *CreateApiKeyReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (CreateApiKeyReply) MarshalJSON

func (o CreateApiKeyReply) MarshalJSON() ([]byte, error)

func (*CreateApiKeyReply) SetKeyData

func (o *CreateApiKeyReply) SetKeyData(v string)

SetKeyData gets a reference to the given string and assigns it to the KeyData field.

func (*CreateApiKeyReply) SetKeyId

func (o *CreateApiKeyReply) SetKeyId(v string)

SetKeyId gets a reference to the given string and assigns it to the KeyId field.

func (*CreateApiKeyReply) SetResult

func (o *CreateApiKeyReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (CreateApiKeyReply) ToMap

func (o CreateApiKeyReply) ToMap() (map[string]interface{}, error)

type CreateApiKeyRequest

type CreateApiKeyRequest struct {
	Name        *string `json:"name,omitempty"`
	Description *string `json:"description,omitempty"`
	// time the key should expire expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC. A value of 0 indicates the key should never expire.
	ExpireTime *string `json:"expireTime,omitempty"`
}

CreateApiKeyRequest struct for CreateApiKeyRequest

func NewCreateApiKeyRequest

func NewCreateApiKeyRequest() *CreateApiKeyRequest

NewCreateApiKeyRequest instantiates a new CreateApiKeyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateApiKeyRequestWithDefaults

func NewCreateApiKeyRequestWithDefaults() *CreateApiKeyRequest

NewCreateApiKeyRequestWithDefaults instantiates a new CreateApiKeyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateApiKeyRequest) GetDescription

func (o *CreateApiKeyRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateApiKeyRequest) GetDescriptionOk

func (o *CreateApiKeyRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateApiKeyRequest) GetExpireTime

func (o *CreateApiKeyRequest) GetExpireTime() string

GetExpireTime returns the ExpireTime field value if set, zero value otherwise.

func (*CreateApiKeyRequest) GetExpireTimeOk

func (o *CreateApiKeyRequest) GetExpireTimeOk() (*string, bool)

GetExpireTimeOk returns a tuple with the ExpireTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateApiKeyRequest) GetName

func (o *CreateApiKeyRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CreateApiKeyRequest) GetNameOk

func (o *CreateApiKeyRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateApiKeyRequest) HasDescription

func (o *CreateApiKeyRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateApiKeyRequest) HasExpireTime

func (o *CreateApiKeyRequest) HasExpireTime() bool

HasExpireTime returns a boolean if a field has been set.

func (*CreateApiKeyRequest) HasName

func (o *CreateApiKeyRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateApiKeyRequest) MarshalJSON

func (o CreateApiKeyRequest) MarshalJSON() ([]byte, error)

func (*CreateApiKeyRequest) SetDescription

func (o *CreateApiKeyRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateApiKeyRequest) SetExpireTime

func (o *CreateApiKeyRequest) SetExpireTime(v string)

SetExpireTime gets a reference to the given string and assigns it to the ExpireTime field.

func (*CreateApiKeyRequest) SetName

func (o *CreateApiKeyRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (CreateApiKeyRequest) ToMap

func (o CreateApiKeyRequest) ToMap() (map[string]interface{}, error)

type CreateDeploymentReply

type CreateDeploymentReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Id     *string              `json:"id,omitempty"`
}

CreateDeploymentReply struct for CreateDeploymentReply

func NewCreateDeploymentReply

func NewCreateDeploymentReply() *CreateDeploymentReply

NewCreateDeploymentReply instantiates a new CreateDeploymentReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateDeploymentReplyWithDefaults

func NewCreateDeploymentReplyWithDefaults() *CreateDeploymentReply

NewCreateDeploymentReplyWithDefaults instantiates a new CreateDeploymentReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateDeploymentReply) GetId

func (o *CreateDeploymentReply) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CreateDeploymentReply) GetIdOk

func (o *CreateDeploymentReply) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateDeploymentReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*CreateDeploymentReply) GetResultOk

func (o *CreateDeploymentReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateDeploymentReply) HasId

func (o *CreateDeploymentReply) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateDeploymentReply) HasResult

func (o *CreateDeploymentReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (CreateDeploymentReply) MarshalJSON

func (o CreateDeploymentReply) MarshalJSON() ([]byte, error)

func (*CreateDeploymentReply) SetId

func (o *CreateDeploymentReply) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CreateDeploymentReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (CreateDeploymentReply) ToMap

func (o CreateDeploymentReply) ToMap() (map[string]interface{}, error)

type CreateDeploymentRequest

type CreateDeploymentRequest struct {
	Header *DeploymentHeader `json:"header,omitempty"`
}

CreateDeploymentRequest struct for CreateDeploymentRequest

func NewCreateDeploymentRequest

func NewCreateDeploymentRequest() *CreateDeploymentRequest

NewCreateDeploymentRequest instantiates a new CreateDeploymentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateDeploymentRequestWithDefaults

func NewCreateDeploymentRequestWithDefaults() *CreateDeploymentRequest

NewCreateDeploymentRequestWithDefaults instantiates a new CreateDeploymentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateDeploymentRequest) GetHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*CreateDeploymentRequest) GetHeaderOk

func (o *CreateDeploymentRequest) GetHeaderOk() (*DeploymentHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateDeploymentRequest) HasHeader

func (o *CreateDeploymentRequest) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (CreateDeploymentRequest) MarshalJSON

func (o CreateDeploymentRequest) MarshalJSON() ([]byte, error)

func (*CreateDeploymentRequest) SetHeader

func (o *CreateDeploymentRequest) SetHeader(v DeploymentHeader)

SetHeader gets a reference to the given DeploymentHeader and assigns it to the Header field.

func (CreateDeploymentRequest) ToMap

func (o CreateDeploymentRequest) ToMap() (map[string]interface{}, error)

type CreateEnvironmentReply

type CreateEnvironmentReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Id     *string              `json:"id,omitempty"`
}

CreateEnvironmentReply struct for CreateEnvironmentReply

func NewCreateEnvironmentReply

func NewCreateEnvironmentReply() *CreateEnvironmentReply

NewCreateEnvironmentReply instantiates a new CreateEnvironmentReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironmentReplyWithDefaults

func NewCreateEnvironmentReplyWithDefaults() *CreateEnvironmentReply

NewCreateEnvironmentReplyWithDefaults instantiates a new CreateEnvironmentReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironmentReply) GetId

func (o *CreateEnvironmentReply) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CreateEnvironmentReply) GetIdOk

func (o *CreateEnvironmentReply) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*CreateEnvironmentReply) GetResultOk

func (o *CreateEnvironmentReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentReply) HasId

func (o *CreateEnvironmentReply) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateEnvironmentReply) HasResult

func (o *CreateEnvironmentReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (CreateEnvironmentReply) MarshalJSON

func (o CreateEnvironmentReply) MarshalJSON() ([]byte, error)

func (*CreateEnvironmentReply) SetId

func (o *CreateEnvironmentReply) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CreateEnvironmentReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (CreateEnvironmentReply) ToMap

func (o CreateEnvironmentReply) ToMap() (map[string]interface{}, error)

type CreateEnvironmentRequest

type CreateEnvironmentRequest struct {
	Header *EnvironmentHeader `json:"header,omitempty"`
}

CreateEnvironmentRequest struct for CreateEnvironmentRequest

func NewCreateEnvironmentRequest

func NewCreateEnvironmentRequest() *CreateEnvironmentRequest

NewCreateEnvironmentRequest instantiates a new CreateEnvironmentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironmentRequestWithDefaults

func NewCreateEnvironmentRequestWithDefaults() *CreateEnvironmentRequest

NewCreateEnvironmentRequestWithDefaults instantiates a new CreateEnvironmentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironmentRequest) GetHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*CreateEnvironmentRequest) GetHeaderOk

func (o *CreateEnvironmentRequest) GetHeaderOk() (*EnvironmentHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentRequest) HasHeader

func (o *CreateEnvironmentRequest) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (CreateEnvironmentRequest) MarshalJSON

func (o CreateEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*CreateEnvironmentRequest) SetHeader

SetHeader gets a reference to the given EnvironmentHeader and assigns it to the Header field.

func (CreateEnvironmentRequest) ToMap

func (o CreateEnvironmentRequest) ToMap() (map[string]interface{}, error)

type CreateProjectReply

type CreateProjectReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Id     *string              `json:"id,omitempty"`
}

CreateProjectReply struct for CreateProjectReply

func NewCreateProjectReply

func NewCreateProjectReply() *CreateProjectReply

NewCreateProjectReply instantiates a new CreateProjectReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateProjectReplyWithDefaults

func NewCreateProjectReplyWithDefaults() *CreateProjectReply

NewCreateProjectReplyWithDefaults instantiates a new CreateProjectReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateProjectReply) GetId

func (o *CreateProjectReply) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CreateProjectReply) GetIdOk

func (o *CreateProjectReply) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectReply) GetResult

func (o *CreateProjectReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*CreateProjectReply) GetResultOk

func (o *CreateProjectReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectReply) HasId

func (o *CreateProjectReply) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateProjectReply) HasResult

func (o *CreateProjectReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (CreateProjectReply) MarshalJSON

func (o CreateProjectReply) MarshalJSON() ([]byte, error)

func (*CreateProjectReply) SetId

func (o *CreateProjectReply) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CreateProjectReply) SetResult

func (o *CreateProjectReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (CreateProjectReply) ToMap

func (o CreateProjectReply) ToMap() (map[string]interface{}, error)

type CreateProjectRequest

type CreateProjectRequest struct {
	Header *ProjectHeader `json:"header,omitempty"`
}

CreateProjectRequest struct for CreateProjectRequest

func NewCreateProjectRequest

func NewCreateProjectRequest() *CreateProjectRequest

NewCreateProjectRequest instantiates a new CreateProjectRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateProjectRequestWithDefaults

func NewCreateProjectRequestWithDefaults() *CreateProjectRequest

NewCreateProjectRequestWithDefaults instantiates a new CreateProjectRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateProjectRequest) GetHeader

func (o *CreateProjectRequest) GetHeader() ProjectHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*CreateProjectRequest) GetHeaderOk

func (o *CreateProjectRequest) GetHeaderOk() (*ProjectHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectRequest) HasHeader

func (o *CreateProjectRequest) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (CreateProjectRequest) MarshalJSON

func (o CreateProjectRequest) MarshalJSON() ([]byte, error)

func (*CreateProjectRequest) SetHeader

func (o *CreateProjectRequest) SetHeader(v ProjectHeader)

SetHeader gets a reference to the given ProjectHeader and assigns it to the Header field.

func (CreateProjectRequest) ToMap

func (o CreateProjectRequest) ToMap() (map[string]interface{}, error)

type DatabaseDescription

type DatabaseDescription struct {
	DatabaseHeader *DatabaseHeader            `json:"databaseHeader,omitempty"`
	Tables         []DatabaseTableDescription `json:"tables,omitempty"`
	ServiceNames   []string                   `json:"serviceNames,omitempty"`
}

DatabaseDescription struct for DatabaseDescription

func NewDatabaseDescription

func NewDatabaseDescription() *DatabaseDescription

NewDatabaseDescription instantiates a new DatabaseDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDatabaseDescriptionWithDefaults

func NewDatabaseDescriptionWithDefaults() *DatabaseDescription

NewDatabaseDescriptionWithDefaults instantiates a new DatabaseDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DatabaseDescription) GetDatabaseHeader

func (o *DatabaseDescription) GetDatabaseHeader() DatabaseHeader

GetDatabaseHeader returns the DatabaseHeader field value if set, zero value otherwise.

func (*DatabaseDescription) GetDatabaseHeaderOk

func (o *DatabaseDescription) GetDatabaseHeaderOk() (*DatabaseHeader, bool)

GetDatabaseHeaderOk returns a tuple with the DatabaseHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseDescription) GetServiceNames

func (o *DatabaseDescription) GetServiceNames() []string

GetServiceNames returns the ServiceNames field value if set, zero value otherwise.

func (*DatabaseDescription) GetServiceNamesOk

func (o *DatabaseDescription) GetServiceNamesOk() ([]string, bool)

GetServiceNamesOk returns a tuple with the ServiceNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseDescription) GetTables

GetTables returns the Tables field value if set, zero value otherwise.

func (*DatabaseDescription) GetTablesOk

func (o *DatabaseDescription) GetTablesOk() ([]DatabaseTableDescription, bool)

GetTablesOk returns a tuple with the Tables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseDescription) HasDatabaseHeader

func (o *DatabaseDescription) HasDatabaseHeader() bool

HasDatabaseHeader returns a boolean if a field has been set.

func (*DatabaseDescription) HasServiceNames

func (o *DatabaseDescription) HasServiceNames() bool

HasServiceNames returns a boolean if a field has been set.

func (*DatabaseDescription) HasTables

func (o *DatabaseDescription) HasTables() bool

HasTables returns a boolean if a field has been set.

func (DatabaseDescription) MarshalJSON

func (o DatabaseDescription) MarshalJSON() ([]byte, error)

func (*DatabaseDescription) SetDatabaseHeader

func (o *DatabaseDescription) SetDatabaseHeader(v DatabaseHeader)

SetDatabaseHeader gets a reference to the given DatabaseHeader and assigns it to the DatabaseHeader field.

func (*DatabaseDescription) SetServiceNames

func (o *DatabaseDescription) SetServiceNames(v []string)

SetServiceNames gets a reference to the given []string and assigns it to the ServiceNames field.

func (*DatabaseDescription) SetTables

SetTables gets a reference to the given []DatabaseTableDescription and assigns it to the Tables field.

func (DatabaseDescription) ToMap

func (o DatabaseDescription) ToMap() (map[string]interface{}, error)

type DatabaseHeader

type DatabaseHeader struct {
	ProjEnvHeader *ProjEnvHeader `json:"projEnvHeader,omitempty"`
	DatabaseName  *string        `json:"databaseName,omitempty"`
}

DatabaseHeader struct for DatabaseHeader

func NewDatabaseHeader

func NewDatabaseHeader() *DatabaseHeader

NewDatabaseHeader instantiates a new DatabaseHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDatabaseHeaderWithDefaults

func NewDatabaseHeaderWithDefaults() *DatabaseHeader

NewDatabaseHeaderWithDefaults instantiates a new DatabaseHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DatabaseHeader) GetDatabaseName

func (o *DatabaseHeader) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*DatabaseHeader) GetDatabaseNameOk

func (o *DatabaseHeader) GetDatabaseNameOk() (*string, bool)

GetDatabaseNameOk returns a tuple with the DatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseHeader) GetProjEnvHeader

func (o *DatabaseHeader) GetProjEnvHeader() ProjEnvHeader

GetProjEnvHeader returns the ProjEnvHeader field value if set, zero value otherwise.

func (*DatabaseHeader) GetProjEnvHeaderOk

func (o *DatabaseHeader) GetProjEnvHeaderOk() (*ProjEnvHeader, bool)

GetProjEnvHeaderOk returns a tuple with the ProjEnvHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseHeader) HasDatabaseName

func (o *DatabaseHeader) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*DatabaseHeader) HasProjEnvHeader

func (o *DatabaseHeader) HasProjEnvHeader() bool

HasProjEnvHeader returns a boolean if a field has been set.

func (DatabaseHeader) MarshalJSON

func (o DatabaseHeader) MarshalJSON() ([]byte, error)

func (*DatabaseHeader) SetDatabaseName

func (o *DatabaseHeader) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*DatabaseHeader) SetProjEnvHeader

func (o *DatabaseHeader) SetProjEnvHeader(v ProjEnvHeader)

SetProjEnvHeader gets a reference to the given ProjEnvHeader and assigns it to the ProjEnvHeader field.

func (DatabaseHeader) ToMap

func (o DatabaseHeader) ToMap() (map[string]interface{}, error)

type DatabaseTableDescription

type DatabaseTableDescription struct {
	Name         *string  `json:"Name,omitempty"`
	NumRows      *string  `json:"NumRows,omitempty"`
	Size         *string  `json:"Size,omitempty"`
	ServiceNames []string `json:"serviceNames,omitempty"`
}

DatabaseTableDescription struct for DatabaseTableDescription

func NewDatabaseTableDescription

func NewDatabaseTableDescription() *DatabaseTableDescription

NewDatabaseTableDescription instantiates a new DatabaseTableDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDatabaseTableDescriptionWithDefaults

func NewDatabaseTableDescriptionWithDefaults() *DatabaseTableDescription

NewDatabaseTableDescriptionWithDefaults instantiates a new DatabaseTableDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DatabaseTableDescription) GetName

func (o *DatabaseTableDescription) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*DatabaseTableDescription) GetNameOk

func (o *DatabaseTableDescription) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseTableDescription) GetNumRows

func (o *DatabaseTableDescription) GetNumRows() string

GetNumRows returns the NumRows field value if set, zero value otherwise.

func (*DatabaseTableDescription) GetNumRowsOk

func (o *DatabaseTableDescription) GetNumRowsOk() (*string, bool)

GetNumRowsOk returns a tuple with the NumRows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseTableDescription) GetServiceNames

func (o *DatabaseTableDescription) GetServiceNames() []string

GetServiceNames returns the ServiceNames field value if set, zero value otherwise.

func (*DatabaseTableDescription) GetServiceNamesOk

func (o *DatabaseTableDescription) GetServiceNamesOk() ([]string, bool)

GetServiceNamesOk returns a tuple with the ServiceNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseTableDescription) GetSize

func (o *DatabaseTableDescription) GetSize() string

GetSize returns the Size field value if set, zero value otherwise.

func (*DatabaseTableDescription) GetSizeOk

func (o *DatabaseTableDescription) GetSizeOk() (*string, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatabaseTableDescription) HasName

func (o *DatabaseTableDescription) HasName() bool

HasName returns a boolean if a field has been set.

func (*DatabaseTableDescription) HasNumRows

func (o *DatabaseTableDescription) HasNumRows() bool

HasNumRows returns a boolean if a field has been set.

func (*DatabaseTableDescription) HasServiceNames

func (o *DatabaseTableDescription) HasServiceNames() bool

HasServiceNames returns a boolean if a field has been set.

func (*DatabaseTableDescription) HasSize

func (o *DatabaseTableDescription) HasSize() bool

HasSize returns a boolean if a field has been set.

func (DatabaseTableDescription) MarshalJSON

func (o DatabaseTableDescription) MarshalJSON() ([]byte, error)

func (*DatabaseTableDescription) SetName

func (o *DatabaseTableDescription) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*DatabaseTableDescription) SetNumRows

func (o *DatabaseTableDescription) SetNumRows(v string)

SetNumRows gets a reference to the given string and assigns it to the NumRows field.

func (*DatabaseTableDescription) SetServiceNames

func (o *DatabaseTableDescription) SetServiceNames(v []string)

SetServiceNames gets a reference to the given []string and assigns it to the ServiceNames field.

func (*DatabaseTableDescription) SetSize

func (o *DatabaseTableDescription) SetSize(v string)

SetSize gets a reference to the given string and assigns it to the Size field.

func (DatabaseTableDescription) ToMap

func (o DatabaseTableDescription) ToMap() (map[string]interface{}, error)

type DatastoreDescription

type DatastoreDescription struct {
	DatastoreHeader         *DatastoreHeader `json:"datastoreHeader,omitempty"`
	NumObjects              *string          `json:"numObjects,omitempty"`
	CapacityConsumedInBytes *string          `json:"capacityConsumedInBytes,omitempty"`
	ServiceNames            []string         `json:"serviceNames,omitempty"`
}

DatastoreDescription struct for DatastoreDescription

func NewDatastoreDescription

func NewDatastoreDescription() *DatastoreDescription

NewDatastoreDescription instantiates a new DatastoreDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDatastoreDescriptionWithDefaults

func NewDatastoreDescriptionWithDefaults() *DatastoreDescription

NewDatastoreDescriptionWithDefaults instantiates a new DatastoreDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DatastoreDescription) GetCapacityConsumedInBytes

func (o *DatastoreDescription) GetCapacityConsumedInBytes() string

GetCapacityConsumedInBytes returns the CapacityConsumedInBytes field value if set, zero value otherwise.

func (*DatastoreDescription) GetCapacityConsumedInBytesOk

func (o *DatastoreDescription) GetCapacityConsumedInBytesOk() (*string, bool)

GetCapacityConsumedInBytesOk returns a tuple with the CapacityConsumedInBytes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatastoreDescription) GetDatastoreHeader

func (o *DatastoreDescription) GetDatastoreHeader() DatastoreHeader

GetDatastoreHeader returns the DatastoreHeader field value if set, zero value otherwise.

func (*DatastoreDescription) GetDatastoreHeaderOk

func (o *DatastoreDescription) GetDatastoreHeaderOk() (*DatastoreHeader, bool)

GetDatastoreHeaderOk returns a tuple with the DatastoreHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatastoreDescription) GetNumObjects

func (o *DatastoreDescription) GetNumObjects() string

GetNumObjects returns the NumObjects field value if set, zero value otherwise.

func (*DatastoreDescription) GetNumObjectsOk

func (o *DatastoreDescription) GetNumObjectsOk() (*string, bool)

GetNumObjectsOk returns a tuple with the NumObjects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatastoreDescription) GetServiceNames

func (o *DatastoreDescription) GetServiceNames() []string

GetServiceNames returns the ServiceNames field value if set, zero value otherwise.

func (*DatastoreDescription) GetServiceNamesOk

func (o *DatastoreDescription) GetServiceNamesOk() ([]string, bool)

GetServiceNamesOk returns a tuple with the ServiceNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatastoreDescription) HasCapacityConsumedInBytes

func (o *DatastoreDescription) HasCapacityConsumedInBytes() bool

HasCapacityConsumedInBytes returns a boolean if a field has been set.

func (*DatastoreDescription) HasDatastoreHeader

func (o *DatastoreDescription) HasDatastoreHeader() bool

HasDatastoreHeader returns a boolean if a field has been set.

func (*DatastoreDescription) HasNumObjects

func (o *DatastoreDescription) HasNumObjects() bool

HasNumObjects returns a boolean if a field has been set.

func (*DatastoreDescription) HasServiceNames

func (o *DatastoreDescription) HasServiceNames() bool

HasServiceNames returns a boolean if a field has been set.

func (DatastoreDescription) MarshalJSON

func (o DatastoreDescription) MarshalJSON() ([]byte, error)

func (*DatastoreDescription) SetCapacityConsumedInBytes

func (o *DatastoreDescription) SetCapacityConsumedInBytes(v string)

SetCapacityConsumedInBytes gets a reference to the given string and assigns it to the CapacityConsumedInBytes field.

func (*DatastoreDescription) SetDatastoreHeader

func (o *DatastoreDescription) SetDatastoreHeader(v DatastoreHeader)

SetDatastoreHeader gets a reference to the given DatastoreHeader and assigns it to the DatastoreHeader field.

func (*DatastoreDescription) SetNumObjects

func (o *DatastoreDescription) SetNumObjects(v string)

SetNumObjects gets a reference to the given string and assigns it to the NumObjects field.

func (*DatastoreDescription) SetServiceNames

func (o *DatastoreDescription) SetServiceNames(v []string)

SetServiceNames gets a reference to the given []string and assigns it to the ServiceNames field.

func (DatastoreDescription) ToMap

func (o DatastoreDescription) ToMap() (map[string]interface{}, error)

type DatastoreHeader

type DatastoreHeader struct {
	ProjEnvHeader *ProjEnvHeader `json:"projEnvHeader,omitempty"`
	DatastoreName *string        `json:"datastoreName,omitempty"`
}

DatastoreHeader struct for DatastoreHeader

func NewDatastoreHeader

func NewDatastoreHeader() *DatastoreHeader

NewDatastoreHeader instantiates a new DatastoreHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDatastoreHeaderWithDefaults

func NewDatastoreHeaderWithDefaults() *DatastoreHeader

NewDatastoreHeaderWithDefaults instantiates a new DatastoreHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DatastoreHeader) GetDatastoreName

func (o *DatastoreHeader) GetDatastoreName() string

GetDatastoreName returns the DatastoreName field value if set, zero value otherwise.

func (*DatastoreHeader) GetDatastoreNameOk

func (o *DatastoreHeader) GetDatastoreNameOk() (*string, bool)

GetDatastoreNameOk returns a tuple with the DatastoreName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatastoreHeader) GetProjEnvHeader

func (o *DatastoreHeader) GetProjEnvHeader() ProjEnvHeader

GetProjEnvHeader returns the ProjEnvHeader field value if set, zero value otherwise.

func (*DatastoreHeader) GetProjEnvHeaderOk

func (o *DatastoreHeader) GetProjEnvHeaderOk() (*ProjEnvHeader, bool)

GetProjEnvHeaderOk returns a tuple with the ProjEnvHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatastoreHeader) HasDatastoreName

func (o *DatastoreHeader) HasDatastoreName() bool

HasDatastoreName returns a boolean if a field has been set.

func (*DatastoreHeader) HasProjEnvHeader

func (o *DatastoreHeader) HasProjEnvHeader() bool

HasProjEnvHeader returns a boolean if a field has been set.

func (DatastoreHeader) MarshalJSON

func (o DatastoreHeader) MarshalJSON() ([]byte, error)

func (*DatastoreHeader) SetDatastoreName

func (o *DatastoreHeader) SetDatastoreName(v string)

SetDatastoreName gets a reference to the given string and assigns it to the DatastoreName field.

func (*DatastoreHeader) SetProjEnvHeader

func (o *DatastoreHeader) SetProjEnvHeader(v ProjEnvHeader)

SetProjEnvHeader gets a reference to the given ProjEnvHeader and assigns it to the ProjEnvHeader field.

func (DatastoreHeader) ToMap

func (o DatastoreHeader) ToMap() (map[string]interface{}, error)

type DeactivateProjectReply

type DeactivateProjectReply struct {
	Result   *ServiceRunnerResult `json:"result,omitempty"`
	DeployId *string              `json:"deployId,omitempty"`
}

DeactivateProjectReply struct for DeactivateProjectReply

func NewDeactivateProjectReply

func NewDeactivateProjectReply() *DeactivateProjectReply

NewDeactivateProjectReply instantiates a new DeactivateProjectReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeactivateProjectReplyWithDefaults

func NewDeactivateProjectReplyWithDefaults() *DeactivateProjectReply

NewDeactivateProjectReplyWithDefaults instantiates a new DeactivateProjectReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeactivateProjectReply) GetDeployId

func (o *DeactivateProjectReply) GetDeployId() string

GetDeployId returns the DeployId field value if set, zero value otherwise.

func (*DeactivateProjectReply) GetDeployIdOk

func (o *DeactivateProjectReply) GetDeployIdOk() (*string, bool)

GetDeployIdOk returns a tuple with the DeployId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeactivateProjectReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DeactivateProjectReply) GetResultOk

func (o *DeactivateProjectReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeactivateProjectReply) HasDeployId

func (o *DeactivateProjectReply) HasDeployId() bool

HasDeployId returns a boolean if a field has been set.

func (*DeactivateProjectReply) HasResult

func (o *DeactivateProjectReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DeactivateProjectReply) MarshalJSON

func (o DeactivateProjectReply) MarshalJSON() ([]byte, error)

func (*DeactivateProjectReply) SetDeployId

func (o *DeactivateProjectReply) SetDeployId(v string)

SetDeployId gets a reference to the given string and assigns it to the DeployId field.

func (*DeactivateProjectReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DeactivateProjectReply) ToMap

func (o DeactivateProjectReply) ToMap() (map[string]interface{}, error)

type DeactivateProjectRequest

type DeactivateProjectRequest struct {
	ProjEnvHeader *ProjEnvHeader `json:"projEnvHeader,omitempty"`
}

DeactivateProjectRequest struct for DeactivateProjectRequest

func NewDeactivateProjectRequest

func NewDeactivateProjectRequest() *DeactivateProjectRequest

NewDeactivateProjectRequest instantiates a new DeactivateProjectRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeactivateProjectRequestWithDefaults

func NewDeactivateProjectRequestWithDefaults() *DeactivateProjectRequest

NewDeactivateProjectRequestWithDefaults instantiates a new DeactivateProjectRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeactivateProjectRequest) GetProjEnvHeader

func (o *DeactivateProjectRequest) GetProjEnvHeader() ProjEnvHeader

GetProjEnvHeader returns the ProjEnvHeader field value if set, zero value otherwise.

func (*DeactivateProjectRequest) GetProjEnvHeaderOk

func (o *DeactivateProjectRequest) GetProjEnvHeaderOk() (*ProjEnvHeader, bool)

GetProjEnvHeaderOk returns a tuple with the ProjEnvHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeactivateProjectRequest) HasProjEnvHeader

func (o *DeactivateProjectRequest) HasProjEnvHeader() bool

HasProjEnvHeader returns a boolean if a field has been set.

func (DeactivateProjectRequest) MarshalJSON

func (o DeactivateProjectRequest) MarshalJSON() ([]byte, error)

func (*DeactivateProjectRequest) SetProjEnvHeader

func (o *DeactivateProjectRequest) SetProjEnvHeader(v ProjEnvHeader)

SetProjEnvHeader gets a reference to the given ProjEnvHeader and assigns it to the ProjEnvHeader field.

func (DeactivateProjectRequest) ToMap

func (o DeactivateProjectRequest) ToMap() (map[string]interface{}, error)

type DeleteApiKeyReply

type DeleteApiKeyReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
}

DeleteApiKeyReply struct for DeleteApiKeyReply

func NewDeleteApiKeyReply

func NewDeleteApiKeyReply() *DeleteApiKeyReply

NewDeleteApiKeyReply instantiates a new DeleteApiKeyReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteApiKeyReplyWithDefaults

func NewDeleteApiKeyReplyWithDefaults() *DeleteApiKeyReply

NewDeleteApiKeyReplyWithDefaults instantiates a new DeleteApiKeyReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteApiKeyReply) GetResult

func (o *DeleteApiKeyReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DeleteApiKeyReply) GetResultOk

func (o *DeleteApiKeyReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteApiKeyReply) HasResult

func (o *DeleteApiKeyReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DeleteApiKeyReply) MarshalJSON

func (o DeleteApiKeyReply) MarshalJSON() ([]byte, error)

func (*DeleteApiKeyReply) SetResult

func (o *DeleteApiKeyReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DeleteApiKeyReply) ToMap

func (o DeleteApiKeyReply) ToMap() (map[string]interface{}, error)

type DeleteApiKeyRequest

type DeleteApiKeyRequest struct {
	KeyId *string `json:"keyId,omitempty"`
}

DeleteApiKeyRequest struct for DeleteApiKeyRequest

func NewDeleteApiKeyRequest

func NewDeleteApiKeyRequest() *DeleteApiKeyRequest

NewDeleteApiKeyRequest instantiates a new DeleteApiKeyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteApiKeyRequestWithDefaults

func NewDeleteApiKeyRequestWithDefaults() *DeleteApiKeyRequest

NewDeleteApiKeyRequestWithDefaults instantiates a new DeleteApiKeyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteApiKeyRequest) GetKeyId

func (o *DeleteApiKeyRequest) GetKeyId() string

GetKeyId returns the KeyId field value if set, zero value otherwise.

func (*DeleteApiKeyRequest) GetKeyIdOk

func (o *DeleteApiKeyRequest) GetKeyIdOk() (*string, bool)

GetKeyIdOk returns a tuple with the KeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteApiKeyRequest) HasKeyId

func (o *DeleteApiKeyRequest) HasKeyId() bool

HasKeyId returns a boolean if a field has been set.

func (DeleteApiKeyRequest) MarshalJSON

func (o DeleteApiKeyRequest) MarshalJSON() ([]byte, error)

func (*DeleteApiKeyRequest) SetKeyId

func (o *DeleteApiKeyRequest) SetKeyId(v string)

SetKeyId gets a reference to the given string and assigns it to the KeyId field.

func (DeleteApiKeyRequest) ToMap

func (o DeleteApiKeyRequest) ToMap() (map[string]interface{}, error)

type DeleteEnvironmentReply

type DeleteEnvironmentReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
}

DeleteEnvironmentReply struct for DeleteEnvironmentReply

func NewDeleteEnvironmentReply

func NewDeleteEnvironmentReply() *DeleteEnvironmentReply

NewDeleteEnvironmentReply instantiates a new DeleteEnvironmentReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteEnvironmentReplyWithDefaults

func NewDeleteEnvironmentReplyWithDefaults() *DeleteEnvironmentReply

NewDeleteEnvironmentReplyWithDefaults instantiates a new DeleteEnvironmentReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteEnvironmentReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DeleteEnvironmentReply) GetResultOk

func (o *DeleteEnvironmentReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEnvironmentReply) HasResult

func (o *DeleteEnvironmentReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DeleteEnvironmentReply) MarshalJSON

func (o DeleteEnvironmentReply) MarshalJSON() ([]byte, error)

func (*DeleteEnvironmentReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DeleteEnvironmentReply) ToMap

func (o DeleteEnvironmentReply) ToMap() (map[string]interface{}, error)

type DeleteEnvironmentRequest

type DeleteEnvironmentRequest struct {
	Id *string `json:"id,omitempty"`
}

DeleteEnvironmentRequest struct for DeleteEnvironmentRequest

func NewDeleteEnvironmentRequest

func NewDeleteEnvironmentRequest() *DeleteEnvironmentRequest

NewDeleteEnvironmentRequest instantiates a new DeleteEnvironmentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteEnvironmentRequestWithDefaults

func NewDeleteEnvironmentRequestWithDefaults() *DeleteEnvironmentRequest

NewDeleteEnvironmentRequestWithDefaults instantiates a new DeleteEnvironmentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteEnvironmentRequest) GetId

func (o *DeleteEnvironmentRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DeleteEnvironmentRequest) GetIdOk

func (o *DeleteEnvironmentRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEnvironmentRequest) HasId

func (o *DeleteEnvironmentRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (DeleteEnvironmentRequest) MarshalJSON

func (o DeleteEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*DeleteEnvironmentRequest) SetId

func (o *DeleteEnvironmentRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (DeleteEnvironmentRequest) ToMap

func (o DeleteEnvironmentRequest) ToMap() (map[string]interface{}, error)

type DeletePackageReply

type DeletePackageReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	State  *PackageState        `json:"state,omitempty"`
}

DeletePackageReply struct for DeletePackageReply

func NewDeletePackageReply

func NewDeletePackageReply() *DeletePackageReply

NewDeletePackageReply instantiates a new DeletePackageReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeletePackageReplyWithDefaults

func NewDeletePackageReplyWithDefaults() *DeletePackageReply

NewDeletePackageReplyWithDefaults instantiates a new DeletePackageReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeletePackageReply) GetResult

func (o *DeletePackageReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DeletePackageReply) GetResultOk

func (o *DeletePackageReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeletePackageReply) GetState

func (o *DeletePackageReply) GetState() PackageState

GetState returns the State field value if set, zero value otherwise.

func (*DeletePackageReply) GetStateOk

func (o *DeletePackageReply) GetStateOk() (*PackageState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeletePackageReply) HasResult

func (o *DeletePackageReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*DeletePackageReply) HasState

func (o *DeletePackageReply) HasState() bool

HasState returns a boolean if a field has been set.

func (DeletePackageReply) MarshalJSON

func (o DeletePackageReply) MarshalJSON() ([]byte, error)

func (*DeletePackageReply) SetResult

func (o *DeletePackageReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (*DeletePackageReply) SetState

func (o *DeletePackageReply) SetState(v PackageState)

SetState gets a reference to the given PackageState and assigns it to the State field.

func (DeletePackageReply) ToMap

func (o DeletePackageReply) ToMap() (map[string]interface{}, error)

type DeletePackageRequest

type DeletePackageRequest struct {
	PackageId *string `json:"packageId,omitempty"`
}

DeletePackageRequest struct for DeletePackageRequest

func NewDeletePackageRequest

func NewDeletePackageRequest() *DeletePackageRequest

NewDeletePackageRequest instantiates a new DeletePackageRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeletePackageRequestWithDefaults

func NewDeletePackageRequestWithDefaults() *DeletePackageRequest

NewDeletePackageRequestWithDefaults instantiates a new DeletePackageRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeletePackageRequest) GetPackageId

func (o *DeletePackageRequest) GetPackageId() string

GetPackageId returns the PackageId field value if set, zero value otherwise.

func (*DeletePackageRequest) GetPackageIdOk

func (o *DeletePackageRequest) GetPackageIdOk() (*string, bool)

GetPackageIdOk returns a tuple with the PackageId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeletePackageRequest) HasPackageId

func (o *DeletePackageRequest) HasPackageId() bool

HasPackageId returns a boolean if a field has been set.

func (DeletePackageRequest) MarshalJSON

func (o DeletePackageRequest) MarshalJSON() ([]byte, error)

func (*DeletePackageRequest) SetPackageId

func (o *DeletePackageRequest) SetPackageId(v string)

SetPackageId gets a reference to the given string and assigns it to the PackageId field.

func (DeletePackageRequest) ToMap

func (o DeletePackageRequest) ToMap() (map[string]interface{}, error)

type DeleteProjectReply

type DeleteProjectReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
}

DeleteProjectReply struct for DeleteProjectReply

func NewDeleteProjectReply

func NewDeleteProjectReply() *DeleteProjectReply

NewDeleteProjectReply instantiates a new DeleteProjectReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteProjectReplyWithDefaults

func NewDeleteProjectReplyWithDefaults() *DeleteProjectReply

NewDeleteProjectReplyWithDefaults instantiates a new DeleteProjectReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteProjectReply) GetResult

func (o *DeleteProjectReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DeleteProjectReply) GetResultOk

func (o *DeleteProjectReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteProjectReply) HasResult

func (o *DeleteProjectReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DeleteProjectReply) MarshalJSON

func (o DeleteProjectReply) MarshalJSON() ([]byte, error)

func (*DeleteProjectReply) SetResult

func (o *DeleteProjectReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DeleteProjectReply) ToMap

func (o DeleteProjectReply) ToMap() (map[string]interface{}, error)

type DeleteProjectRequest

type DeleteProjectRequest struct {
	Id *string `json:"id,omitempty"`
}

DeleteProjectRequest struct for DeleteProjectRequest

func NewDeleteProjectRequest

func NewDeleteProjectRequest() *DeleteProjectRequest

NewDeleteProjectRequest instantiates a new DeleteProjectRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteProjectRequestWithDefaults

func NewDeleteProjectRequestWithDefaults() *DeleteProjectRequest

NewDeleteProjectRequestWithDefaults instantiates a new DeleteProjectRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteProjectRequest) GetId

func (o *DeleteProjectRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DeleteProjectRequest) GetIdOk

func (o *DeleteProjectRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteProjectRequest) HasId

func (o *DeleteProjectRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (DeleteProjectRequest) MarshalJSON

func (o DeleteProjectRequest) MarshalJSON() ([]byte, error)

func (*DeleteProjectRequest) SetId

func (o *DeleteProjectRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (DeleteProjectRequest) ToMap

func (o DeleteProjectRequest) ToMap() (map[string]interface{}, error)

type DeploymentDescription

type DeploymentDescription struct {
	Id                  *string                `json:"id,omitempty"`
	Header              *DeploymentHeader      `json:"header,omitempty"`
	State               *DeploymentState       `json:"state,omitempty"`
	StateDetail         *DeploymentStateDetail `json:"stateDetail,omitempty"`
	CreateTime          *string                `json:"createTime,omitempty"`
	ValidationStartTime *string                `json:"validationStartTime,omitempty"`
	BuildStartTime      *string                `json:"buildStartTime,omitempty"`
	DeployStartTime     *string                `json:"deployStartTime,omitempty"`
	EndTime             *string                `json:"endTime,omitempty"`
}

DeploymentDescription struct for DeploymentDescription

func NewDeploymentDescription

func NewDeploymentDescription() *DeploymentDescription

NewDeploymentDescription instantiates a new DeploymentDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeploymentDescriptionWithDefaults

func NewDeploymentDescriptionWithDefaults() *DeploymentDescription

NewDeploymentDescriptionWithDefaults instantiates a new DeploymentDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeploymentDescription) GetBuildStartTime

func (o *DeploymentDescription) GetBuildStartTime() string

GetBuildStartTime returns the BuildStartTime field value if set, zero value otherwise.

func (*DeploymentDescription) GetBuildStartTimeOk

func (o *DeploymentDescription) GetBuildStartTimeOk() (*string, bool)

GetBuildStartTimeOk returns a tuple with the BuildStartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetCreateTime

func (o *DeploymentDescription) GetCreateTime() string

GetCreateTime returns the CreateTime field value if set, zero value otherwise.

func (*DeploymentDescription) GetCreateTimeOk

func (o *DeploymentDescription) GetCreateTimeOk() (*string, bool)

GetCreateTimeOk returns a tuple with the CreateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetDeployStartTime

func (o *DeploymentDescription) GetDeployStartTime() string

GetDeployStartTime returns the DeployStartTime field value if set, zero value otherwise.

func (*DeploymentDescription) GetDeployStartTimeOk

func (o *DeploymentDescription) GetDeployStartTimeOk() (*string, bool)

GetDeployStartTimeOk returns a tuple with the DeployStartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetEndTime

func (o *DeploymentDescription) GetEndTime() string

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*DeploymentDescription) GetEndTimeOk

func (o *DeploymentDescription) GetEndTimeOk() (*string, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetHeader

func (o *DeploymentDescription) GetHeader() DeploymentHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*DeploymentDescription) GetHeaderOk

func (o *DeploymentDescription) GetHeaderOk() (*DeploymentHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetId

func (o *DeploymentDescription) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DeploymentDescription) GetIdOk

func (o *DeploymentDescription) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetState

func (o *DeploymentDescription) GetState() DeploymentState

GetState returns the State field value if set, zero value otherwise.

func (*DeploymentDescription) GetStateDetail

func (o *DeploymentDescription) GetStateDetail() DeploymentStateDetail

GetStateDetail returns the StateDetail field value if set, zero value otherwise.

func (*DeploymentDescription) GetStateDetailOk

func (o *DeploymentDescription) GetStateDetailOk() (*DeploymentStateDetail, bool)

GetStateDetailOk returns a tuple with the StateDetail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetStateOk

func (o *DeploymentDescription) GetStateOk() (*DeploymentState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) GetValidationStartTime

func (o *DeploymentDescription) GetValidationStartTime() string

GetValidationStartTime returns the ValidationStartTime field value if set, zero value otherwise.

func (*DeploymentDescription) GetValidationStartTimeOk

func (o *DeploymentDescription) GetValidationStartTimeOk() (*string, bool)

GetValidationStartTimeOk returns a tuple with the ValidationStartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentDescription) HasBuildStartTime

func (o *DeploymentDescription) HasBuildStartTime() bool

HasBuildStartTime returns a boolean if a field has been set.

func (*DeploymentDescription) HasCreateTime

func (o *DeploymentDescription) HasCreateTime() bool

HasCreateTime returns a boolean if a field has been set.

func (*DeploymentDescription) HasDeployStartTime

func (o *DeploymentDescription) HasDeployStartTime() bool

HasDeployStartTime returns a boolean if a field has been set.

func (*DeploymentDescription) HasEndTime

func (o *DeploymentDescription) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*DeploymentDescription) HasHeader

func (o *DeploymentDescription) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*DeploymentDescription) HasId

func (o *DeploymentDescription) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeploymentDescription) HasState

func (o *DeploymentDescription) HasState() bool

HasState returns a boolean if a field has been set.

func (*DeploymentDescription) HasStateDetail

func (o *DeploymentDescription) HasStateDetail() bool

HasStateDetail returns a boolean if a field has been set.

func (*DeploymentDescription) HasValidationStartTime

func (o *DeploymentDescription) HasValidationStartTime() bool

HasValidationStartTime returns a boolean if a field has been set.

func (DeploymentDescription) MarshalJSON

func (o DeploymentDescription) MarshalJSON() ([]byte, error)

func (*DeploymentDescription) SetBuildStartTime

func (o *DeploymentDescription) SetBuildStartTime(v string)

SetBuildStartTime gets a reference to the given string and assigns it to the BuildStartTime field.

func (*DeploymentDescription) SetCreateTime

func (o *DeploymentDescription) SetCreateTime(v string)

SetCreateTime gets a reference to the given string and assigns it to the CreateTime field.

func (*DeploymentDescription) SetDeployStartTime

func (o *DeploymentDescription) SetDeployStartTime(v string)

SetDeployStartTime gets a reference to the given string and assigns it to the DeployStartTime field.

func (*DeploymentDescription) SetEndTime

func (o *DeploymentDescription) SetEndTime(v string)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*DeploymentDescription) SetHeader

func (o *DeploymentDescription) SetHeader(v DeploymentHeader)

SetHeader gets a reference to the given DeploymentHeader and assigns it to the Header field.

func (*DeploymentDescription) SetId

func (o *DeploymentDescription) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*DeploymentDescription) SetState

func (o *DeploymentDescription) SetState(v DeploymentState)

SetState gets a reference to the given DeploymentState and assigns it to the State field.

func (*DeploymentDescription) SetStateDetail

func (o *DeploymentDescription) SetStateDetail(v DeploymentStateDetail)

SetStateDetail gets a reference to the given DeploymentStateDetail and assigns it to the StateDetail field.

func (*DeploymentDescription) SetValidationStartTime

func (o *DeploymentDescription) SetValidationStartTime(v string)

SetValidationStartTime gets a reference to the given string and assigns it to the ValidationStartTime field.

func (DeploymentDescription) ToMap

func (o DeploymentDescription) ToMap() (map[string]interface{}, error)

type DeploymentHeader

type DeploymentHeader struct {
	PkgId     *string              `json:"pkgId,omitempty"`
	ProjId    *string              `json:"projId,omitempty"`
	EnvId     *string              `json:"envId,omitempty"`
	Type      *DeploymentType      `json:"type,omitempty"`
	Initiator *DeploymentInitiator `json:"initiator,omitempty"`
	Reason    *string              `json:"reason,omitempty"`
}

DeploymentHeader struct for DeploymentHeader

func NewDeploymentHeader

func NewDeploymentHeader() *DeploymentHeader

NewDeploymentHeader instantiates a new DeploymentHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeploymentHeaderWithDefaults

func NewDeploymentHeaderWithDefaults() *DeploymentHeader

NewDeploymentHeaderWithDefaults instantiates a new DeploymentHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeploymentHeader) GetEnvId

func (o *DeploymentHeader) GetEnvId() string

GetEnvId returns the EnvId field value if set, zero value otherwise.

func (*DeploymentHeader) GetEnvIdOk

func (o *DeploymentHeader) GetEnvIdOk() (*string, bool)

GetEnvIdOk returns a tuple with the EnvId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentHeader) GetInitiator

func (o *DeploymentHeader) GetInitiator() DeploymentInitiator

GetInitiator returns the Initiator field value if set, zero value otherwise.

func (*DeploymentHeader) GetInitiatorOk

func (o *DeploymentHeader) GetInitiatorOk() (*DeploymentInitiator, bool)

GetInitiatorOk returns a tuple with the Initiator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentHeader) GetPkgId

func (o *DeploymentHeader) GetPkgId() string

GetPkgId returns the PkgId field value if set, zero value otherwise.

func (*DeploymentHeader) GetPkgIdOk

func (o *DeploymentHeader) GetPkgIdOk() (*string, bool)

GetPkgIdOk returns a tuple with the PkgId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentHeader) GetProjId

func (o *DeploymentHeader) GetProjId() string

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*DeploymentHeader) GetProjIdOk

func (o *DeploymentHeader) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentHeader) GetReason

func (o *DeploymentHeader) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*DeploymentHeader) GetReasonOk

func (o *DeploymentHeader) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentHeader) GetType

func (o *DeploymentHeader) GetType() DeploymentType

GetType returns the Type field value if set, zero value otherwise.

func (*DeploymentHeader) GetTypeOk

func (o *DeploymentHeader) GetTypeOk() (*DeploymentType, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeploymentHeader) HasEnvId

func (o *DeploymentHeader) HasEnvId() bool

HasEnvId returns a boolean if a field has been set.

func (*DeploymentHeader) HasInitiator

func (o *DeploymentHeader) HasInitiator() bool

HasInitiator returns a boolean if a field has been set.

func (*DeploymentHeader) HasPkgId

func (o *DeploymentHeader) HasPkgId() bool

HasPkgId returns a boolean if a field has been set.

func (*DeploymentHeader) HasProjId

func (o *DeploymentHeader) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (*DeploymentHeader) HasReason

func (o *DeploymentHeader) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*DeploymentHeader) HasType

func (o *DeploymentHeader) HasType() bool

HasType returns a boolean if a field has been set.

func (DeploymentHeader) MarshalJSON

func (o DeploymentHeader) MarshalJSON() ([]byte, error)

func (*DeploymentHeader) SetEnvId

func (o *DeploymentHeader) SetEnvId(v string)

SetEnvId gets a reference to the given string and assigns it to the EnvId field.

func (*DeploymentHeader) SetInitiator

func (o *DeploymentHeader) SetInitiator(v DeploymentInitiator)

SetInitiator gets a reference to the given DeploymentInitiator and assigns it to the Initiator field.

func (*DeploymentHeader) SetPkgId

func (o *DeploymentHeader) SetPkgId(v string)

SetPkgId gets a reference to the given string and assigns it to the PkgId field.

func (*DeploymentHeader) SetProjId

func (o *DeploymentHeader) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (*DeploymentHeader) SetReason

func (o *DeploymentHeader) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*DeploymentHeader) SetType

func (o *DeploymentHeader) SetType(v DeploymentType)

SetType gets a reference to the given DeploymentType and assigns it to the Type field.

func (DeploymentHeader) ToMap

func (o DeploymentHeader) ToMap() (map[string]interface{}, error)

type DeploymentInitiator

type DeploymentInitiator string

DeploymentInitiator the model 'DeploymentInitiator'

const (
	INVALID_DEPLOY_INIT DeploymentInitiator = "INVALID_DEPLOY_INIT"
	CUSTOMER            DeploymentInitiator = "CUSTOMER"
	SERVICE             DeploymentInitiator = "SERVICE"
	UNKNOWN_DEPLOY_INIT DeploymentInitiator = "UNKNOWN_DEPLOY_INIT"
)

List of DeploymentInitiator

func NewDeploymentInitiatorFromValue

func NewDeploymentInitiatorFromValue(v string) (*DeploymentInitiator, error)

NewDeploymentInitiatorFromValue returns a pointer to a valid DeploymentInitiator for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DeploymentInitiator) IsValid

func (v DeploymentInitiator) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DeploymentInitiator) Ptr

Ptr returns reference to DeploymentInitiator value

func (*DeploymentInitiator) UnmarshalJSON

func (v *DeploymentInitiator) UnmarshalJSON(src []byte) error

type DeploymentState

type DeploymentState string

DeploymentState the package associated with the deployment passed validation and is in - DEPLOYING: the process of being compiled the package associated with the deployment compiled successfully and is - SUCCESS: in the process of being deployed to the environment specified the deployment was successful and the package associated with the - FAILED: deployment is now active in the environment specified the deployment failed; see DeploymentDescription.stateDetail for further - UNKNOWN_DEPLOY_STATE: MAX_INT

const (
	INVALID_DEPLOY_STATE DeploymentState = "INVALID_DEPLOY_STATE"
	CREATED              DeploymentState = "CREATED"
	DPLY_VALIDATING      DeploymentState = "DPLY_VALIDATING"
	DPLY_BUILDING        DeploymentState = "DPLY_BUILDING"
	DEPLOYING            DeploymentState = "DEPLOYING"
	SUCCESS              DeploymentState = "SUCCESS"
	FAILED               DeploymentState = "FAILED"
	UNKNOWN_DEPLOY_STATE DeploymentState = "UNKNOWN_DEPLOY_STATE"
)

List of DeploymentState

func NewDeploymentStateFromValue

func NewDeploymentStateFromValue(v string) (*DeploymentState, error)

NewDeploymentStateFromValue returns a pointer to a valid DeploymentState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DeploymentState) IsValid

func (v DeploymentState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DeploymentState) Ptr

Ptr returns reference to DeploymentState value

func (*DeploymentState) UnmarshalJSON

func (v *DeploymentState) UnmarshalJSON(src []byte) error

type DeploymentStateDetail

type DeploymentStateDetail string

DeploymentStateDetail the package associated with the deployment failed to compile - DPLY_SUPPORT_NEEDED: the deployment failed for an unknown reason; Bopmatic support - UNKNOWN_DEPLOY_STATE_DET: MAX_INT

const (
	INVALID_DEPLOY_STATE_DET DeploymentStateDetail = "INVALID_DEPLOY_STATE_DET"
	NONE                     DeploymentStateDetail = "NONE"
	PKG_INVALID              DeploymentStateDetail = "PKG_INVALID"
	BLD_INVALID              DeploymentStateDetail = "BLD_INVALID"
	DPLY_SUPPORT_NEEDED      DeploymentStateDetail = "DPLY_SUPPORT_NEEDED"
	UNKNOWN_DEPLOY_STATE_DET DeploymentStateDetail = "UNKNOWN_DEPLOY_STATE_DET"
)

List of DeploymentStateDetail

func NewDeploymentStateDetailFromValue

func NewDeploymentStateDetailFromValue(v string) (*DeploymentStateDetail, error)

NewDeploymentStateDetailFromValue returns a pointer to a valid DeploymentStateDetail for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DeploymentStateDetail) IsValid

func (v DeploymentStateDetail) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DeploymentStateDetail) Ptr

Ptr returns reference to DeploymentStateDetail value

func (*DeploymentStateDetail) UnmarshalJSON

func (v *DeploymentStateDetail) UnmarshalJSON(src []byte) error

type DeploymentType

type DeploymentType string

DeploymentType the deployment was created in order to remove the project from - SECURITY_UPDATE: the environment (customer initiated) the deployment was created in order to perform a security update - INF_UPDATE: on the backend infrastructure (service initiated) the deployment was created in order to perform a non-security related - UNKNOWN_DEPLOY_TYPE: MAX_INT

const (
	INVALID_DEPLOY_TYPE DeploymentType = "INVALID_DEPLOY_TYPE"
	NEW_PACKAGE         DeploymentType = "NEW_PACKAGE"
	ENV_TEARDOWN        DeploymentType = "ENV_TEARDOWN"
	SECURITY_UPDATE     DeploymentType = "SECURITY_UPDATE"
	INF_UPDATE          DeploymentType = "INF_UPDATE"
	UNKNOWN_DEPLOY_TYPE DeploymentType = "UNKNOWN_DEPLOY_TYPE"
)

List of DeploymentType

func NewDeploymentTypeFromValue

func NewDeploymentTypeFromValue(v string) (*DeploymentType, error)

NewDeploymentTypeFromValue returns a pointer to a valid DeploymentType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DeploymentType) IsValid

func (v DeploymentType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DeploymentType) Ptr

func (v DeploymentType) Ptr() *DeploymentType

Ptr returns reference to DeploymentType value

func (*DeploymentType) UnmarshalJSON

func (v *DeploymentType) UnmarshalJSON(src []byte) error

type DescribeApiKeyReply

type DescribeApiKeyReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Desc   *ApiKeyDescription   `json:"desc,omitempty"`
}

DescribeApiKeyReply struct for DescribeApiKeyReply

func NewDescribeApiKeyReply

func NewDescribeApiKeyReply() *DescribeApiKeyReply

NewDescribeApiKeyReply instantiates a new DescribeApiKeyReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeApiKeyReplyWithDefaults

func NewDescribeApiKeyReplyWithDefaults() *DescribeApiKeyReply

NewDescribeApiKeyReplyWithDefaults instantiates a new DescribeApiKeyReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeApiKeyReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribeApiKeyReply) GetDescOk

func (o *DescribeApiKeyReply) GetDescOk() (*ApiKeyDescription, bool)

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeApiKeyReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeApiKeyReply) GetResultOk

func (o *DescribeApiKeyReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeApiKeyReply) HasDesc

func (o *DescribeApiKeyReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribeApiKeyReply) HasResult

func (o *DescribeApiKeyReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribeApiKeyReply) MarshalJSON

func (o DescribeApiKeyReply) MarshalJSON() ([]byte, error)

func (*DescribeApiKeyReply) SetDesc

func (o *DescribeApiKeyReply) SetDesc(v ApiKeyDescription)

SetDesc gets a reference to the given ApiKeyDescription and assigns it to the Desc field.

func (*DescribeApiKeyReply) SetResult

func (o *DescribeApiKeyReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribeApiKeyReply) ToMap

func (o DescribeApiKeyReply) ToMap() (map[string]interface{}, error)

type DescribeApiKeyRequest

type DescribeApiKeyRequest struct {
	KeyId *string `json:"keyId,omitempty"`
}

DescribeApiKeyRequest struct for DescribeApiKeyRequest

func NewDescribeApiKeyRequest

func NewDescribeApiKeyRequest() *DescribeApiKeyRequest

NewDescribeApiKeyRequest instantiates a new DescribeApiKeyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeApiKeyRequestWithDefaults

func NewDescribeApiKeyRequestWithDefaults() *DescribeApiKeyRequest

NewDescribeApiKeyRequestWithDefaults instantiates a new DescribeApiKeyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeApiKeyRequest) GetKeyId

func (o *DescribeApiKeyRequest) GetKeyId() string

GetKeyId returns the KeyId field value if set, zero value otherwise.

func (*DescribeApiKeyRequest) GetKeyIdOk

func (o *DescribeApiKeyRequest) GetKeyIdOk() (*string, bool)

GetKeyIdOk returns a tuple with the KeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeApiKeyRequest) HasKeyId

func (o *DescribeApiKeyRequest) HasKeyId() bool

HasKeyId returns a boolean if a field has been set.

func (DescribeApiKeyRequest) MarshalJSON

func (o DescribeApiKeyRequest) MarshalJSON() ([]byte, error)

func (*DescribeApiKeyRequest) SetKeyId

func (o *DescribeApiKeyRequest) SetKeyId(v string)

SetKeyId gets a reference to the given string and assigns it to the KeyId field.

func (DescribeApiKeyRequest) ToMap

func (o DescribeApiKeyRequest) ToMap() (map[string]interface{}, error)

type DescribeDatabaseReply

type DescribeDatabaseReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Desc   *DatabaseDescription `json:"desc,omitempty"`
}

DescribeDatabaseReply struct for DescribeDatabaseReply

func NewDescribeDatabaseReply

func NewDescribeDatabaseReply() *DescribeDatabaseReply

NewDescribeDatabaseReply instantiates a new DescribeDatabaseReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeDatabaseReplyWithDefaults

func NewDescribeDatabaseReplyWithDefaults() *DescribeDatabaseReply

NewDescribeDatabaseReplyWithDefaults instantiates a new DescribeDatabaseReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeDatabaseReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribeDatabaseReply) GetDescOk

func (o *DescribeDatabaseReply) GetDescOk() (*DatabaseDescription, bool)

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDatabaseReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeDatabaseReply) GetResultOk

func (o *DescribeDatabaseReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDatabaseReply) HasDesc

func (o *DescribeDatabaseReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribeDatabaseReply) HasResult

func (o *DescribeDatabaseReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribeDatabaseReply) MarshalJSON

func (o DescribeDatabaseReply) MarshalJSON() ([]byte, error)

func (*DescribeDatabaseReply) SetDesc

SetDesc gets a reference to the given DatabaseDescription and assigns it to the Desc field.

func (*DescribeDatabaseReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribeDatabaseReply) ToMap

func (o DescribeDatabaseReply) ToMap() (map[string]interface{}, error)

type DescribeDatabaseRequest

type DescribeDatabaseRequest struct {
	DatabaseHeader *DatabaseHeader `json:"databaseHeader,omitempty"`
}

DescribeDatabaseRequest struct for DescribeDatabaseRequest

func NewDescribeDatabaseRequest

func NewDescribeDatabaseRequest() *DescribeDatabaseRequest

NewDescribeDatabaseRequest instantiates a new DescribeDatabaseRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeDatabaseRequestWithDefaults

func NewDescribeDatabaseRequestWithDefaults() *DescribeDatabaseRequest

NewDescribeDatabaseRequestWithDefaults instantiates a new DescribeDatabaseRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeDatabaseRequest) GetDatabaseHeader

func (o *DescribeDatabaseRequest) GetDatabaseHeader() DatabaseHeader

GetDatabaseHeader returns the DatabaseHeader field value if set, zero value otherwise.

func (*DescribeDatabaseRequest) GetDatabaseHeaderOk

func (o *DescribeDatabaseRequest) GetDatabaseHeaderOk() (*DatabaseHeader, bool)

GetDatabaseHeaderOk returns a tuple with the DatabaseHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDatabaseRequest) HasDatabaseHeader

func (o *DescribeDatabaseRequest) HasDatabaseHeader() bool

HasDatabaseHeader returns a boolean if a field has been set.

func (DescribeDatabaseRequest) MarshalJSON

func (o DescribeDatabaseRequest) MarshalJSON() ([]byte, error)

func (*DescribeDatabaseRequest) SetDatabaseHeader

func (o *DescribeDatabaseRequest) SetDatabaseHeader(v DatabaseHeader)

SetDatabaseHeader gets a reference to the given DatabaseHeader and assigns it to the DatabaseHeader field.

func (DescribeDatabaseRequest) ToMap

func (o DescribeDatabaseRequest) ToMap() (map[string]interface{}, error)

type DescribeDatastoreReply

type DescribeDatastoreReply struct {
	Result *ServiceRunnerResult  `json:"result,omitempty"`
	Desc   *DatastoreDescription `json:"desc,omitempty"`
}

DescribeDatastoreReply struct for DescribeDatastoreReply

func NewDescribeDatastoreReply

func NewDescribeDatastoreReply() *DescribeDatastoreReply

NewDescribeDatastoreReply instantiates a new DescribeDatastoreReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeDatastoreReplyWithDefaults

func NewDescribeDatastoreReplyWithDefaults() *DescribeDatastoreReply

NewDescribeDatastoreReplyWithDefaults instantiates a new DescribeDatastoreReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeDatastoreReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribeDatastoreReply) GetDescOk

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDatastoreReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeDatastoreReply) GetResultOk

func (o *DescribeDatastoreReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDatastoreReply) HasDesc

func (o *DescribeDatastoreReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribeDatastoreReply) HasResult

func (o *DescribeDatastoreReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribeDatastoreReply) MarshalJSON

func (o DescribeDatastoreReply) MarshalJSON() ([]byte, error)

func (*DescribeDatastoreReply) SetDesc

SetDesc gets a reference to the given DatastoreDescription and assigns it to the Desc field.

func (*DescribeDatastoreReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribeDatastoreReply) ToMap

func (o DescribeDatastoreReply) ToMap() (map[string]interface{}, error)

type DescribeDatastoreRequest

type DescribeDatastoreRequest struct {
	DatastoreHeader *DatastoreHeader `json:"datastoreHeader,omitempty"`
}

DescribeDatastoreRequest struct for DescribeDatastoreRequest

func NewDescribeDatastoreRequest

func NewDescribeDatastoreRequest() *DescribeDatastoreRequest

NewDescribeDatastoreRequest instantiates a new DescribeDatastoreRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeDatastoreRequestWithDefaults

func NewDescribeDatastoreRequestWithDefaults() *DescribeDatastoreRequest

NewDescribeDatastoreRequestWithDefaults instantiates a new DescribeDatastoreRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeDatastoreRequest) GetDatastoreHeader

func (o *DescribeDatastoreRequest) GetDatastoreHeader() DatastoreHeader

GetDatastoreHeader returns the DatastoreHeader field value if set, zero value otherwise.

func (*DescribeDatastoreRequest) GetDatastoreHeaderOk

func (o *DescribeDatastoreRequest) GetDatastoreHeaderOk() (*DatastoreHeader, bool)

GetDatastoreHeaderOk returns a tuple with the DatastoreHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDatastoreRequest) HasDatastoreHeader

func (o *DescribeDatastoreRequest) HasDatastoreHeader() bool

HasDatastoreHeader returns a boolean if a field has been set.

func (DescribeDatastoreRequest) MarshalJSON

func (o DescribeDatastoreRequest) MarshalJSON() ([]byte, error)

func (*DescribeDatastoreRequest) SetDatastoreHeader

func (o *DescribeDatastoreRequest) SetDatastoreHeader(v DatastoreHeader)

SetDatastoreHeader gets a reference to the given DatastoreHeader and assigns it to the DatastoreHeader field.

func (DescribeDatastoreRequest) ToMap

func (o DescribeDatastoreRequest) ToMap() (map[string]interface{}, error)

type DescribeDeploymentReply

type DescribeDeploymentReply struct {
	Result *ServiceRunnerResult   `json:"result,omitempty"`
	Desc   *DeploymentDescription `json:"desc,omitempty"`
}

DescribeDeploymentReply struct for DescribeDeploymentReply

func NewDescribeDeploymentReply

func NewDescribeDeploymentReply() *DescribeDeploymentReply

NewDescribeDeploymentReply instantiates a new DescribeDeploymentReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeDeploymentReplyWithDefaults

func NewDescribeDeploymentReplyWithDefaults() *DescribeDeploymentReply

NewDescribeDeploymentReplyWithDefaults instantiates a new DescribeDeploymentReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeDeploymentReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribeDeploymentReply) GetDescOk

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDeploymentReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeDeploymentReply) GetResultOk

func (o *DescribeDeploymentReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDeploymentReply) HasDesc

func (o *DescribeDeploymentReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribeDeploymentReply) HasResult

func (o *DescribeDeploymentReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribeDeploymentReply) MarshalJSON

func (o DescribeDeploymentReply) MarshalJSON() ([]byte, error)

func (*DescribeDeploymentReply) SetDesc

SetDesc gets a reference to the given DeploymentDescription and assigns it to the Desc field.

func (*DescribeDeploymentReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribeDeploymentReply) ToMap

func (o DescribeDeploymentReply) ToMap() (map[string]interface{}, error)

type DescribeDeploymentRequest

type DescribeDeploymentRequest struct {
	Id *string `json:"id,omitempty"`
}

DescribeDeploymentRequest struct for DescribeDeploymentRequest

func NewDescribeDeploymentRequest

func NewDescribeDeploymentRequest() *DescribeDeploymentRequest

NewDescribeDeploymentRequest instantiates a new DescribeDeploymentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeDeploymentRequestWithDefaults

func NewDescribeDeploymentRequestWithDefaults() *DescribeDeploymentRequest

NewDescribeDeploymentRequestWithDefaults instantiates a new DescribeDeploymentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeDeploymentRequest) GetId

func (o *DescribeDeploymentRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DescribeDeploymentRequest) GetIdOk

func (o *DescribeDeploymentRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeDeploymentRequest) HasId

func (o *DescribeDeploymentRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (DescribeDeploymentRequest) MarshalJSON

func (o DescribeDeploymentRequest) MarshalJSON() ([]byte, error)

func (*DescribeDeploymentRequest) SetId

func (o *DescribeDeploymentRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (DescribeDeploymentRequest) ToMap

func (o DescribeDeploymentRequest) ToMap() (map[string]interface{}, error)

type DescribeEnvironmentReply

type DescribeEnvironmentReply struct {
	Result *ServiceRunnerResult    `json:"result,omitempty"`
	Desc   *EnvironmentDescription `json:"desc,omitempty"`
}

DescribeEnvironmentReply struct for DescribeEnvironmentReply

func NewDescribeEnvironmentReply

func NewDescribeEnvironmentReply() *DescribeEnvironmentReply

NewDescribeEnvironmentReply instantiates a new DescribeEnvironmentReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeEnvironmentReplyWithDefaults

func NewDescribeEnvironmentReplyWithDefaults() *DescribeEnvironmentReply

NewDescribeEnvironmentReplyWithDefaults instantiates a new DescribeEnvironmentReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeEnvironmentReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribeEnvironmentReply) GetDescOk

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeEnvironmentReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeEnvironmentReply) GetResultOk

func (o *DescribeEnvironmentReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeEnvironmentReply) HasDesc

func (o *DescribeEnvironmentReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribeEnvironmentReply) HasResult

func (o *DescribeEnvironmentReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribeEnvironmentReply) MarshalJSON

func (o DescribeEnvironmentReply) MarshalJSON() ([]byte, error)

func (*DescribeEnvironmentReply) SetDesc

SetDesc gets a reference to the given EnvironmentDescription and assigns it to the Desc field.

func (*DescribeEnvironmentReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribeEnvironmentReply) ToMap

func (o DescribeEnvironmentReply) ToMap() (map[string]interface{}, error)

type DescribeEnvironmentRequest

type DescribeEnvironmentRequest struct {
	Id *string `json:"id,omitempty"`
}

DescribeEnvironmentRequest struct for DescribeEnvironmentRequest

func NewDescribeEnvironmentRequest

func NewDescribeEnvironmentRequest() *DescribeEnvironmentRequest

NewDescribeEnvironmentRequest instantiates a new DescribeEnvironmentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeEnvironmentRequestWithDefaults

func NewDescribeEnvironmentRequestWithDefaults() *DescribeEnvironmentRequest

NewDescribeEnvironmentRequestWithDefaults instantiates a new DescribeEnvironmentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeEnvironmentRequest) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*DescribeEnvironmentRequest) GetIdOk

func (o *DescribeEnvironmentRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeEnvironmentRequest) HasId

func (o *DescribeEnvironmentRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (DescribeEnvironmentRequest) MarshalJSON

func (o DescribeEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*DescribeEnvironmentRequest) SetId

func (o *DescribeEnvironmentRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (DescribeEnvironmentRequest) ToMap

func (o DescribeEnvironmentRequest) ToMap() (map[string]interface{}, error)

type DescribePackageReply

type DescribePackageReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Desc   *PackageDescription  `json:"desc,omitempty"`
}

DescribePackageReply struct for DescribePackageReply

func NewDescribePackageReply

func NewDescribePackageReply() *DescribePackageReply

NewDescribePackageReply instantiates a new DescribePackageReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribePackageReplyWithDefaults

func NewDescribePackageReplyWithDefaults() *DescribePackageReply

NewDescribePackageReplyWithDefaults instantiates a new DescribePackageReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribePackageReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribePackageReply) GetDescOk

func (o *DescribePackageReply) GetDescOk() (*PackageDescription, bool)

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribePackageReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribePackageReply) GetResultOk

func (o *DescribePackageReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribePackageReply) HasDesc

func (o *DescribePackageReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribePackageReply) HasResult

func (o *DescribePackageReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribePackageReply) MarshalJSON

func (o DescribePackageReply) MarshalJSON() ([]byte, error)

func (*DescribePackageReply) SetDesc

SetDesc gets a reference to the given PackageDescription and assigns it to the Desc field.

func (*DescribePackageReply) SetResult

func (o *DescribePackageReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribePackageReply) ToMap

func (o DescribePackageReply) ToMap() (map[string]interface{}, error)

type DescribePackageRequest

type DescribePackageRequest struct {
	PackageId *string `json:"packageId,omitempty"`
}

DescribePackageRequest struct for DescribePackageRequest

func NewDescribePackageRequest

func NewDescribePackageRequest() *DescribePackageRequest

NewDescribePackageRequest instantiates a new DescribePackageRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribePackageRequestWithDefaults

func NewDescribePackageRequestWithDefaults() *DescribePackageRequest

NewDescribePackageRequestWithDefaults instantiates a new DescribePackageRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribePackageRequest) GetPackageId

func (o *DescribePackageRequest) GetPackageId() string

GetPackageId returns the PackageId field value if set, zero value otherwise.

func (*DescribePackageRequest) GetPackageIdOk

func (o *DescribePackageRequest) GetPackageIdOk() (*string, bool)

GetPackageIdOk returns a tuple with the PackageId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribePackageRequest) HasPackageId

func (o *DescribePackageRequest) HasPackageId() bool

HasPackageId returns a boolean if a field has been set.

func (DescribePackageRequest) MarshalJSON

func (o DescribePackageRequest) MarshalJSON() ([]byte, error)

func (*DescribePackageRequest) SetPackageId

func (o *DescribePackageRequest) SetPackageId(v string)

SetPackageId gets a reference to the given string and assigns it to the PackageId field.

func (DescribePackageRequest) ToMap

func (o DescribePackageRequest) ToMap() (map[string]interface{}, error)

type DescribeProjectReply

type DescribeProjectReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Desc   *ProjectDescription  `json:"desc,omitempty"`
}

DescribeProjectReply struct for DescribeProjectReply

func NewDescribeProjectReply

func NewDescribeProjectReply() *DescribeProjectReply

NewDescribeProjectReply instantiates a new DescribeProjectReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeProjectReplyWithDefaults

func NewDescribeProjectReplyWithDefaults() *DescribeProjectReply

NewDescribeProjectReplyWithDefaults instantiates a new DescribeProjectReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeProjectReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribeProjectReply) GetDescOk

func (o *DescribeProjectReply) GetDescOk() (*ProjectDescription, bool)

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeProjectReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeProjectReply) GetResultOk

func (o *DescribeProjectReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeProjectReply) HasDesc

func (o *DescribeProjectReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribeProjectReply) HasResult

func (o *DescribeProjectReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribeProjectReply) MarshalJSON

func (o DescribeProjectReply) MarshalJSON() ([]byte, error)

func (*DescribeProjectReply) SetDesc

SetDesc gets a reference to the given ProjectDescription and assigns it to the Desc field.

func (*DescribeProjectReply) SetResult

func (o *DescribeProjectReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribeProjectReply) ToMap

func (o DescribeProjectReply) ToMap() (map[string]interface{}, error)

type DescribeProjectRequest

type DescribeProjectRequest struct {
	Id *string `json:"id,omitempty"`
}

DescribeProjectRequest struct for DescribeProjectRequest

func NewDescribeProjectRequest

func NewDescribeProjectRequest() *DescribeProjectRequest

NewDescribeProjectRequest instantiates a new DescribeProjectRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeProjectRequestWithDefaults

func NewDescribeProjectRequestWithDefaults() *DescribeProjectRequest

NewDescribeProjectRequestWithDefaults instantiates a new DescribeProjectRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeProjectRequest) GetId

func (o *DescribeProjectRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DescribeProjectRequest) GetIdOk

func (o *DescribeProjectRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeProjectRequest) HasId

func (o *DescribeProjectRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (DescribeProjectRequest) MarshalJSON

func (o DescribeProjectRequest) MarshalJSON() ([]byte, error)

func (*DescribeProjectRequest) SetId

func (o *DescribeProjectRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (DescribeProjectRequest) ToMap

func (o DescribeProjectRequest) ToMap() (map[string]interface{}, error)

type DescribeServiceReply

type DescribeServiceReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Desc   *ServiceDescription  `json:"desc,omitempty"`
}

DescribeServiceReply struct for DescribeServiceReply

func NewDescribeServiceReply

func NewDescribeServiceReply() *DescribeServiceReply

NewDescribeServiceReply instantiates a new DescribeServiceReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeServiceReplyWithDefaults

func NewDescribeServiceReplyWithDefaults() *DescribeServiceReply

NewDescribeServiceReplyWithDefaults instantiates a new DescribeServiceReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeServiceReply) GetDesc

GetDesc returns the Desc field value if set, zero value otherwise.

func (*DescribeServiceReply) GetDescOk

func (o *DescribeServiceReply) GetDescOk() (*ServiceDescription, bool)

GetDescOk returns a tuple with the Desc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeServiceReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeServiceReply) GetResultOk

func (o *DescribeServiceReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeServiceReply) HasDesc

func (o *DescribeServiceReply) HasDesc() bool

HasDesc returns a boolean if a field has been set.

func (*DescribeServiceReply) HasResult

func (o *DescribeServiceReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (DescribeServiceReply) MarshalJSON

func (o DescribeServiceReply) MarshalJSON() ([]byte, error)

func (*DescribeServiceReply) SetDesc

SetDesc gets a reference to the given ServiceDescription and assigns it to the Desc field.

func (*DescribeServiceReply) SetResult

func (o *DescribeServiceReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (DescribeServiceReply) ToMap

func (o DescribeServiceReply) ToMap() (map[string]interface{}, error)

type DescribeServiceRequest

type DescribeServiceRequest struct {
	SvcHeader *ServiceHeader `json:"svcHeader,omitempty"`
}

DescribeServiceRequest struct for DescribeServiceRequest

func NewDescribeServiceRequest

func NewDescribeServiceRequest() *DescribeServiceRequest

NewDescribeServiceRequest instantiates a new DescribeServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeServiceRequestWithDefaults

func NewDescribeServiceRequestWithDefaults() *DescribeServiceRequest

NewDescribeServiceRequestWithDefaults instantiates a new DescribeServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeServiceRequest) GetSvcHeader

func (o *DescribeServiceRequest) GetSvcHeader() ServiceHeader

GetSvcHeader returns the SvcHeader field value if set, zero value otherwise.

func (*DescribeServiceRequest) GetSvcHeaderOk

func (o *DescribeServiceRequest) GetSvcHeaderOk() (*ServiceHeader, bool)

GetSvcHeaderOk returns a tuple with the SvcHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeServiceRequest) HasSvcHeader

func (o *DescribeServiceRequest) HasSvcHeader() bool

HasSvcHeader returns a boolean if a field has been set.

func (DescribeServiceRequest) MarshalJSON

func (o DescribeServiceRequest) MarshalJSON() ([]byte, error)

func (*DescribeServiceRequest) SetSvcHeader

func (o *DescribeServiceRequest) SetSvcHeader(v ServiceHeader)

SetSvcHeader gets a reference to the given ServiceHeader and assigns it to the SvcHeader field.

func (DescribeServiceRequest) ToMap

func (o DescribeServiceRequest) ToMap() (map[string]interface{}, error)

type DescribeSiteReply

type DescribeSiteReply struct {
	Result        *ServiceRunnerResult `json:"result,omitempty"`
	ProjEnvHeader *ProjEnvHeader       `json:"projEnvHeader,omitempty"`
	SiteEndpoint  *string              `json:"siteEndpoint,omitempty"`
}

DescribeSiteReply struct for DescribeSiteReply

func NewDescribeSiteReply

func NewDescribeSiteReply() *DescribeSiteReply

NewDescribeSiteReply instantiates a new DescribeSiteReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeSiteReplyWithDefaults

func NewDescribeSiteReplyWithDefaults() *DescribeSiteReply

NewDescribeSiteReplyWithDefaults instantiates a new DescribeSiteReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeSiteReply) GetProjEnvHeader

func (o *DescribeSiteReply) GetProjEnvHeader() ProjEnvHeader

GetProjEnvHeader returns the ProjEnvHeader field value if set, zero value otherwise.

func (*DescribeSiteReply) GetProjEnvHeaderOk

func (o *DescribeSiteReply) GetProjEnvHeaderOk() (*ProjEnvHeader, bool)

GetProjEnvHeaderOk returns a tuple with the ProjEnvHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeSiteReply) GetResult

func (o *DescribeSiteReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*DescribeSiteReply) GetResultOk

func (o *DescribeSiteReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeSiteReply) GetSiteEndpoint

func (o *DescribeSiteReply) GetSiteEndpoint() string

GetSiteEndpoint returns the SiteEndpoint field value if set, zero value otherwise.

func (*DescribeSiteReply) GetSiteEndpointOk

func (o *DescribeSiteReply) GetSiteEndpointOk() (*string, bool)

GetSiteEndpointOk returns a tuple with the SiteEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeSiteReply) HasProjEnvHeader

func (o *DescribeSiteReply) HasProjEnvHeader() bool

HasProjEnvHeader returns a boolean if a field has been set.

func (*DescribeSiteReply) HasResult

func (o *DescribeSiteReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*DescribeSiteReply) HasSiteEndpoint

func (o *DescribeSiteReply) HasSiteEndpoint() bool

HasSiteEndpoint returns a boolean if a field has been set.

func (DescribeSiteReply) MarshalJSON

func (o DescribeSiteReply) MarshalJSON() ([]byte, error)

func (*DescribeSiteReply) SetProjEnvHeader

func (o *DescribeSiteReply) SetProjEnvHeader(v ProjEnvHeader)

SetProjEnvHeader gets a reference to the given ProjEnvHeader and assigns it to the ProjEnvHeader field.

func (*DescribeSiteReply) SetResult

func (o *DescribeSiteReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (*DescribeSiteReply) SetSiteEndpoint

func (o *DescribeSiteReply) SetSiteEndpoint(v string)

SetSiteEndpoint gets a reference to the given string and assigns it to the SiteEndpoint field.

func (DescribeSiteReply) ToMap

func (o DescribeSiteReply) ToMap() (map[string]interface{}, error)

type DescribeSiteRequest

type DescribeSiteRequest struct {
	ProjEnvHeader *ProjEnvHeader `json:"projEnvHeader,omitempty"`
}

DescribeSiteRequest struct for DescribeSiteRequest

func NewDescribeSiteRequest

func NewDescribeSiteRequest() *DescribeSiteRequest

NewDescribeSiteRequest instantiates a new DescribeSiteRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDescribeSiteRequestWithDefaults

func NewDescribeSiteRequestWithDefaults() *DescribeSiteRequest

NewDescribeSiteRequestWithDefaults instantiates a new DescribeSiteRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DescribeSiteRequest) GetProjEnvHeader

func (o *DescribeSiteRequest) GetProjEnvHeader() ProjEnvHeader

GetProjEnvHeader returns the ProjEnvHeader field value if set, zero value otherwise.

func (*DescribeSiteRequest) GetProjEnvHeaderOk

func (o *DescribeSiteRequest) GetProjEnvHeaderOk() (*ProjEnvHeader, bool)

GetProjEnvHeaderOk returns a tuple with the ProjEnvHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DescribeSiteRequest) HasProjEnvHeader

func (o *DescribeSiteRequest) HasProjEnvHeader() bool

HasProjEnvHeader returns a boolean if a field has been set.

func (DescribeSiteRequest) MarshalJSON

func (o DescribeSiteRequest) MarshalJSON() ([]byte, error)

func (*DescribeSiteRequest) SetProjEnvHeader

func (o *DescribeSiteRequest) SetProjEnvHeader(v ProjEnvHeader)

SetProjEnvHeader gets a reference to the given ProjEnvHeader and assigns it to the ProjEnvHeader field.

func (DescribeSiteRequest) ToMap

func (o DescribeSiteRequest) ToMap() (map[string]interface{}, error)

type EnvironmentDescription

type EnvironmentDescription struct {
	Id               *string            `json:"id,omitempty"`
	Header           *EnvironmentHeader `json:"header,omitempty"`
	CreateTime       *string            `json:"createTime,omitempty"`
	ActiveDeployIds  []string           `json:"activeDeployIds,omitempty"`
	PendingDeployIds []string           `json:"pendingDeployIds,omitempty"`
}

EnvironmentDescription struct for EnvironmentDescription

func NewEnvironmentDescription

func NewEnvironmentDescription() *EnvironmentDescription

NewEnvironmentDescription instantiates a new EnvironmentDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEnvironmentDescriptionWithDefaults

func NewEnvironmentDescriptionWithDefaults() *EnvironmentDescription

NewEnvironmentDescriptionWithDefaults instantiates a new EnvironmentDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EnvironmentDescription) GetActiveDeployIds

func (o *EnvironmentDescription) GetActiveDeployIds() []string

GetActiveDeployIds returns the ActiveDeployIds field value if set, zero value otherwise.

func (*EnvironmentDescription) GetActiveDeployIdsOk

func (o *EnvironmentDescription) GetActiveDeployIdsOk() ([]string, bool)

GetActiveDeployIdsOk returns a tuple with the ActiveDeployIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDescription) GetCreateTime

func (o *EnvironmentDescription) GetCreateTime() string

GetCreateTime returns the CreateTime field value if set, zero value otherwise.

func (*EnvironmentDescription) GetCreateTimeOk

func (o *EnvironmentDescription) GetCreateTimeOk() (*string, bool)

GetCreateTimeOk returns a tuple with the CreateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDescription) GetHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*EnvironmentDescription) GetHeaderOk

func (o *EnvironmentDescription) GetHeaderOk() (*EnvironmentHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDescription) GetId

func (o *EnvironmentDescription) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*EnvironmentDescription) GetIdOk

func (o *EnvironmentDescription) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDescription) GetPendingDeployIds

func (o *EnvironmentDescription) GetPendingDeployIds() []string

GetPendingDeployIds returns the PendingDeployIds field value if set, zero value otherwise.

func (*EnvironmentDescription) GetPendingDeployIdsOk

func (o *EnvironmentDescription) GetPendingDeployIdsOk() ([]string, bool)

GetPendingDeployIdsOk returns a tuple with the PendingDeployIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDescription) HasActiveDeployIds

func (o *EnvironmentDescription) HasActiveDeployIds() bool

HasActiveDeployIds returns a boolean if a field has been set.

func (*EnvironmentDescription) HasCreateTime

func (o *EnvironmentDescription) HasCreateTime() bool

HasCreateTime returns a boolean if a field has been set.

func (*EnvironmentDescription) HasHeader

func (o *EnvironmentDescription) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*EnvironmentDescription) HasId

func (o *EnvironmentDescription) HasId() bool

HasId returns a boolean if a field has been set.

func (*EnvironmentDescription) HasPendingDeployIds

func (o *EnvironmentDescription) HasPendingDeployIds() bool

HasPendingDeployIds returns a boolean if a field has been set.

func (EnvironmentDescription) MarshalJSON

func (o EnvironmentDescription) MarshalJSON() ([]byte, error)

func (*EnvironmentDescription) SetActiveDeployIds

func (o *EnvironmentDescription) SetActiveDeployIds(v []string)

SetActiveDeployIds gets a reference to the given []string and assigns it to the ActiveDeployIds field.

func (*EnvironmentDescription) SetCreateTime

func (o *EnvironmentDescription) SetCreateTime(v string)

SetCreateTime gets a reference to the given string and assigns it to the CreateTime field.

func (*EnvironmentDescription) SetHeader

func (o *EnvironmentDescription) SetHeader(v EnvironmentHeader)

SetHeader gets a reference to the given EnvironmentHeader and assigns it to the Header field.

func (*EnvironmentDescription) SetId

func (o *EnvironmentDescription) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*EnvironmentDescription) SetPendingDeployIds

func (o *EnvironmentDescription) SetPendingDeployIds(v []string)

SetPendingDeployIds gets a reference to the given []string and assigns it to the PendingDeployIds field.

func (EnvironmentDescription) ToMap

func (o EnvironmentDescription) ToMap() (map[string]interface{}, error)

type EnvironmentHeader

type EnvironmentHeader struct {
	Name      *string `json:"name,omitempty"`
	DnsPrefix *string `json:"dnsPrefix,omitempty"`
}

EnvironmentHeader struct for EnvironmentHeader

func NewEnvironmentHeader

func NewEnvironmentHeader() *EnvironmentHeader

NewEnvironmentHeader instantiates a new EnvironmentHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEnvironmentHeaderWithDefaults

func NewEnvironmentHeaderWithDefaults() *EnvironmentHeader

NewEnvironmentHeaderWithDefaults instantiates a new EnvironmentHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EnvironmentHeader) GetDnsPrefix

func (o *EnvironmentHeader) GetDnsPrefix() string

GetDnsPrefix returns the DnsPrefix field value if set, zero value otherwise.

func (*EnvironmentHeader) GetDnsPrefixOk

func (o *EnvironmentHeader) GetDnsPrefixOk() (*string, bool)

GetDnsPrefixOk returns a tuple with the DnsPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentHeader) GetName

func (o *EnvironmentHeader) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EnvironmentHeader) GetNameOk

func (o *EnvironmentHeader) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentHeader) HasDnsPrefix

func (o *EnvironmentHeader) HasDnsPrefix() bool

HasDnsPrefix returns a boolean if a field has been set.

func (*EnvironmentHeader) HasName

func (o *EnvironmentHeader) HasName() bool

HasName returns a boolean if a field has been set.

func (EnvironmentHeader) MarshalJSON

func (o EnvironmentHeader) MarshalJSON() ([]byte, error)

func (*EnvironmentHeader) SetDnsPrefix

func (o *EnvironmentHeader) SetDnsPrefix(v string)

SetDnsPrefix gets a reference to the given string and assigns it to the DnsPrefix field.

func (*EnvironmentHeader) SetName

func (o *EnvironmentHeader) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (EnvironmentHeader) ToMap

func (o EnvironmentHeader) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetLogsEntry

type GetLogsEntry struct {
	Timestamp *string `json:"timestamp,omitempty"`
	// log message
	Message *string `json:"message,omitempty"`
}

GetLogsEntry struct for GetLogsEntry

func NewGetLogsEntry

func NewGetLogsEntry() *GetLogsEntry

NewGetLogsEntry instantiates a new GetLogsEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetLogsEntryWithDefaults

func NewGetLogsEntryWithDefaults() *GetLogsEntry

NewGetLogsEntryWithDefaults instantiates a new GetLogsEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetLogsEntry) GetMessage

func (o *GetLogsEntry) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*GetLogsEntry) GetMessageOk

func (o *GetLogsEntry) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsEntry) GetTimestamp

func (o *GetLogsEntry) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*GetLogsEntry) GetTimestampOk

func (o *GetLogsEntry) GetTimestampOk() (*string, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsEntry) HasMessage

func (o *GetLogsEntry) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GetLogsEntry) HasTimestamp

func (o *GetLogsEntry) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (GetLogsEntry) MarshalJSON

func (o GetLogsEntry) MarshalJSON() ([]byte, error)

func (*GetLogsEntry) SetMessage

func (o *GetLogsEntry) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*GetLogsEntry) SetTimestamp

func (o *GetLogsEntry) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (GetLogsEntry) ToMap

func (o GetLogsEntry) ToMap() (map[string]interface{}, error)

type GetLogsReply

type GetLogsReply struct {
	Result  *ServiceRunnerResult `json:"result,omitempty"`
	Entries []GetLogsEntry       `json:"entries,omitempty"`
}

GetLogsReply struct for GetLogsReply

func NewGetLogsReply

func NewGetLogsReply() *GetLogsReply

NewGetLogsReply instantiates a new GetLogsReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetLogsReplyWithDefaults

func NewGetLogsReplyWithDefaults() *GetLogsReply

NewGetLogsReplyWithDefaults instantiates a new GetLogsReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetLogsReply) GetEntries

func (o *GetLogsReply) GetEntries() []GetLogsEntry

GetEntries returns the Entries field value if set, zero value otherwise.

func (*GetLogsReply) GetEntriesOk

func (o *GetLogsReply) GetEntriesOk() ([]GetLogsEntry, bool)

GetEntriesOk returns a tuple with the Entries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsReply) GetResult

func (o *GetLogsReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*GetLogsReply) GetResultOk

func (o *GetLogsReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsReply) HasEntries

func (o *GetLogsReply) HasEntries() bool

HasEntries returns a boolean if a field has been set.

func (*GetLogsReply) HasResult

func (o *GetLogsReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (GetLogsReply) MarshalJSON

func (o GetLogsReply) MarshalJSON() ([]byte, error)

func (*GetLogsReply) SetEntries

func (o *GetLogsReply) SetEntries(v []GetLogsEntry)

SetEntries gets a reference to the given []GetLogsEntry and assigns it to the Entries field.

func (*GetLogsReply) SetResult

func (o *GetLogsReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (GetLogsReply) ToMap

func (o GetLogsReply) ToMap() (map[string]interface{}, error)

type GetLogsRequest

type GetLogsRequest struct {
	ProjId      *string `json:"projId,omitempty"`
	EnvId       *string `json:"envId,omitempty"`
	ServiceName *string `json:"serviceName,omitempty"`
	StartTime   *string `json:"startTime,omitempty"`
	// latest log message to retrieve expressed as the number of
	EndTime *string `json:"endTime,omitempty"`
}

GetLogsRequest struct for GetLogsRequest

func NewGetLogsRequest

func NewGetLogsRequest() *GetLogsRequest

NewGetLogsRequest instantiates a new GetLogsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetLogsRequestWithDefaults

func NewGetLogsRequestWithDefaults() *GetLogsRequest

NewGetLogsRequestWithDefaults instantiates a new GetLogsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetLogsRequest) GetEndTime

func (o *GetLogsRequest) GetEndTime() string

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*GetLogsRequest) GetEndTimeOk

func (o *GetLogsRequest) GetEndTimeOk() (*string, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsRequest) GetEnvId

func (o *GetLogsRequest) GetEnvId() string

GetEnvId returns the EnvId field value if set, zero value otherwise.

func (*GetLogsRequest) GetEnvIdOk

func (o *GetLogsRequest) GetEnvIdOk() (*string, bool)

GetEnvIdOk returns a tuple with the EnvId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsRequest) GetProjId

func (o *GetLogsRequest) GetProjId() string

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*GetLogsRequest) GetProjIdOk

func (o *GetLogsRequest) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsRequest) GetServiceName

func (o *GetLogsRequest) GetServiceName() string

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*GetLogsRequest) GetServiceNameOk

func (o *GetLogsRequest) GetServiceNameOk() (*string, bool)

GetServiceNameOk returns a tuple with the ServiceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsRequest) GetStartTime

func (o *GetLogsRequest) GetStartTime() string

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*GetLogsRequest) GetStartTimeOk

func (o *GetLogsRequest) GetStartTimeOk() (*string, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLogsRequest) HasEndTime

func (o *GetLogsRequest) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*GetLogsRequest) HasEnvId

func (o *GetLogsRequest) HasEnvId() bool

HasEnvId returns a boolean if a field has been set.

func (*GetLogsRequest) HasProjId

func (o *GetLogsRequest) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (*GetLogsRequest) HasServiceName

func (o *GetLogsRequest) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (*GetLogsRequest) HasStartTime

func (o *GetLogsRequest) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (GetLogsRequest) MarshalJSON

func (o GetLogsRequest) MarshalJSON() ([]byte, error)

func (*GetLogsRequest) SetEndTime

func (o *GetLogsRequest) SetEndTime(v string)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*GetLogsRequest) SetEnvId

func (o *GetLogsRequest) SetEnvId(v string)

SetEnvId gets a reference to the given string and assigns it to the EnvId field.

func (*GetLogsRequest) SetProjId

func (o *GetLogsRequest) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (*GetLogsRequest) SetServiceName

func (o *GetLogsRequest) SetServiceName(v string)

SetServiceName gets a reference to the given string and assigns it to the ServiceName field.

func (*GetLogsRequest) SetStartTime

func (o *GetLogsRequest) SetStartTime(v string)

SetStartTime gets a reference to the given string and assigns it to the StartTime field.

func (GetLogsRequest) ToMap

func (o GetLogsRequest) ToMap() (map[string]interface{}, error)

type GetMetricSamplesReply

type GetMetricSamplesReply struct {
	Result    *ServiceRunnerResult `json:"result,omitempty"`
	MetricBuf *string              `json:"metricBuf,omitempty"`
}

GetMetricSamplesReply struct for GetMetricSamplesReply

func NewGetMetricSamplesReply

func NewGetMetricSamplesReply() *GetMetricSamplesReply

NewGetMetricSamplesReply instantiates a new GetMetricSamplesReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetMetricSamplesReplyWithDefaults

func NewGetMetricSamplesReplyWithDefaults() *GetMetricSamplesReply

NewGetMetricSamplesReplyWithDefaults instantiates a new GetMetricSamplesReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetMetricSamplesReply) GetMetricBuf

func (o *GetMetricSamplesReply) GetMetricBuf() string

GetMetricBuf returns the MetricBuf field value if set, zero value otherwise.

func (*GetMetricSamplesReply) GetMetricBufOk

func (o *GetMetricSamplesReply) GetMetricBufOk() (*string, bool)

GetMetricBufOk returns a tuple with the MetricBuf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*GetMetricSamplesReply) GetResultOk

func (o *GetMetricSamplesReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesReply) HasMetricBuf

func (o *GetMetricSamplesReply) HasMetricBuf() bool

HasMetricBuf returns a boolean if a field has been set.

func (*GetMetricSamplesReply) HasResult

func (o *GetMetricSamplesReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (GetMetricSamplesReply) MarshalJSON

func (o GetMetricSamplesReply) MarshalJSON() ([]byte, error)

func (*GetMetricSamplesReply) SetMetricBuf

func (o *GetMetricSamplesReply) SetMetricBuf(v string)

SetMetricBuf gets a reference to the given string and assigns it to the MetricBuf field.

func (*GetMetricSamplesReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (GetMetricSamplesReply) ToMap

func (o GetMetricSamplesReply) ToMap() (map[string]interface{}, error)

type GetMetricSamplesRequest

type GetMetricSamplesRequest struct {
	ProjId         *string       `json:"projId,omitempty"`
	EnvId          *string       `json:"envId,omitempty"`
	Scope          *MetricsScope `json:"scope,omitempty"`
	ScopeQualifier *string       `json:"scopeQualifier,omitempty"`
	MetricNames    []string      `json:"metricNames,omitempty"`
	StartTime      *string       `json:"startTime,omitempty"`
	// latest metric to retrieve expressed as the number of
	EndTime      *string        `json:"endTime,omitempty"`
	Format       *MetricsFormat `json:"format,omitempty"`
	SamplePeriod *string        `json:"samplePeriod,omitempty"`
}

GetMetricSamplesRequest struct for GetMetricSamplesRequest

func NewGetMetricSamplesRequest

func NewGetMetricSamplesRequest() *GetMetricSamplesRequest

NewGetMetricSamplesRequest instantiates a new GetMetricSamplesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetMetricSamplesRequestWithDefaults

func NewGetMetricSamplesRequestWithDefaults() *GetMetricSamplesRequest

NewGetMetricSamplesRequestWithDefaults instantiates a new GetMetricSamplesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetMetricSamplesRequest) GetEndTime

func (o *GetMetricSamplesRequest) GetEndTime() string

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetEndTimeOk

func (o *GetMetricSamplesRequest) GetEndTimeOk() (*string, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetEnvId

func (o *GetMetricSamplesRequest) GetEnvId() string

GetEnvId returns the EnvId field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetEnvIdOk

func (o *GetMetricSamplesRequest) GetEnvIdOk() (*string, bool)

GetEnvIdOk returns a tuple with the EnvId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetFormat

func (o *GetMetricSamplesRequest) GetFormat() MetricsFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetFormatOk

func (o *GetMetricSamplesRequest) GetFormatOk() (*MetricsFormat, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetMetricNames

func (o *GetMetricSamplesRequest) GetMetricNames() []string

GetMetricNames returns the MetricNames field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetMetricNamesOk

func (o *GetMetricSamplesRequest) GetMetricNamesOk() ([]string, bool)

GetMetricNamesOk returns a tuple with the MetricNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetProjId

func (o *GetMetricSamplesRequest) GetProjId() string

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetProjIdOk

func (o *GetMetricSamplesRequest) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetSamplePeriod

func (o *GetMetricSamplesRequest) GetSamplePeriod() string

GetSamplePeriod returns the SamplePeriod field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetSamplePeriodOk

func (o *GetMetricSamplesRequest) GetSamplePeriodOk() (*string, bool)

GetSamplePeriodOk returns a tuple with the SamplePeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetScope

func (o *GetMetricSamplesRequest) GetScope() MetricsScope

GetScope returns the Scope field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetScopeOk

func (o *GetMetricSamplesRequest) GetScopeOk() (*MetricsScope, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetScopeQualifier

func (o *GetMetricSamplesRequest) GetScopeQualifier() string

GetScopeQualifier returns the ScopeQualifier field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetScopeQualifierOk

func (o *GetMetricSamplesRequest) GetScopeQualifierOk() (*string, bool)

GetScopeQualifierOk returns a tuple with the ScopeQualifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) GetStartTime

func (o *GetMetricSamplesRequest) GetStartTime() string

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*GetMetricSamplesRequest) GetStartTimeOk

func (o *GetMetricSamplesRequest) GetStartTimeOk() (*string, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMetricSamplesRequest) HasEndTime

func (o *GetMetricSamplesRequest) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasEnvId

func (o *GetMetricSamplesRequest) HasEnvId() bool

HasEnvId returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasFormat

func (o *GetMetricSamplesRequest) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasMetricNames

func (o *GetMetricSamplesRequest) HasMetricNames() bool

HasMetricNames returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasProjId

func (o *GetMetricSamplesRequest) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasSamplePeriod

func (o *GetMetricSamplesRequest) HasSamplePeriod() bool

HasSamplePeriod returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasScope

func (o *GetMetricSamplesRequest) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasScopeQualifier

func (o *GetMetricSamplesRequest) HasScopeQualifier() bool

HasScopeQualifier returns a boolean if a field has been set.

func (*GetMetricSamplesRequest) HasStartTime

func (o *GetMetricSamplesRequest) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (GetMetricSamplesRequest) MarshalJSON

func (o GetMetricSamplesRequest) MarshalJSON() ([]byte, error)

func (*GetMetricSamplesRequest) SetEndTime

func (o *GetMetricSamplesRequest) SetEndTime(v string)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*GetMetricSamplesRequest) SetEnvId

func (o *GetMetricSamplesRequest) SetEnvId(v string)

SetEnvId gets a reference to the given string and assigns it to the EnvId field.

func (*GetMetricSamplesRequest) SetFormat

func (o *GetMetricSamplesRequest) SetFormat(v MetricsFormat)

SetFormat gets a reference to the given MetricsFormat and assigns it to the Format field.

func (*GetMetricSamplesRequest) SetMetricNames

func (o *GetMetricSamplesRequest) SetMetricNames(v []string)

SetMetricNames gets a reference to the given []string and assigns it to the MetricNames field.

func (*GetMetricSamplesRequest) SetProjId

func (o *GetMetricSamplesRequest) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (*GetMetricSamplesRequest) SetSamplePeriod

func (o *GetMetricSamplesRequest) SetSamplePeriod(v string)

SetSamplePeriod gets a reference to the given string and assigns it to the SamplePeriod field.

func (*GetMetricSamplesRequest) SetScope

func (o *GetMetricSamplesRequest) SetScope(v MetricsScope)

SetScope gets a reference to the given MetricsScope and assigns it to the Scope field.

func (*GetMetricSamplesRequest) SetScopeQualifier

func (o *GetMetricSamplesRequest) SetScopeQualifier(v string)

SetScopeQualifier gets a reference to the given string and assigns it to the ScopeQualifier field.

func (*GetMetricSamplesRequest) SetStartTime

func (o *GetMetricSamplesRequest) SetStartTime(v string)

SetStartTime gets a reference to the given string and assigns it to the StartTime field.

func (GetMetricSamplesRequest) ToMap

func (o GetMetricSamplesRequest) ToMap() (map[string]interface{}, error)

type GetUploadURLReply

type GetUploadURLReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	URL    *string              `json:"URL,omitempty"`
}

GetUploadURLReply struct for GetUploadURLReply

func NewGetUploadURLReply

func NewGetUploadURLReply() *GetUploadURLReply

NewGetUploadURLReply instantiates a new GetUploadURLReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetUploadURLReplyWithDefaults

func NewGetUploadURLReplyWithDefaults() *GetUploadURLReply

NewGetUploadURLReplyWithDefaults instantiates a new GetUploadURLReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetUploadURLReply) GetResult

func (o *GetUploadURLReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*GetUploadURLReply) GetResultOk

func (o *GetUploadURLReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUploadURLReply) GetURL

func (o *GetUploadURLReply) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*GetUploadURLReply) GetURLOk

func (o *GetUploadURLReply) GetURLOk() (*string, bool)

GetURLOk returns a tuple with the URL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUploadURLReply) HasResult

func (o *GetUploadURLReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*GetUploadURLReply) HasURL

func (o *GetUploadURLReply) HasURL() bool

HasURL returns a boolean if a field has been set.

func (GetUploadURLReply) MarshalJSON

func (o GetUploadURLReply) MarshalJSON() ([]byte, error)

func (*GetUploadURLReply) SetResult

func (o *GetUploadURLReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (*GetUploadURLReply) SetURL

func (o *GetUploadURLReply) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (GetUploadURLReply) ToMap

func (o GetUploadURLReply) ToMap() (map[string]interface{}, error)

type GetUploadURLRequest

type GetUploadURLRequest struct {
	Key *string `json:"key,omitempty"`
}

GetUploadURLRequest struct for GetUploadURLRequest

func NewGetUploadURLRequest

func NewGetUploadURLRequest() *GetUploadURLRequest

NewGetUploadURLRequest instantiates a new GetUploadURLRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetUploadURLRequestWithDefaults

func NewGetUploadURLRequestWithDefaults() *GetUploadURLRequest

NewGetUploadURLRequestWithDefaults instantiates a new GetUploadURLRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetUploadURLRequest) GetKey

func (o *GetUploadURLRequest) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*GetUploadURLRequest) GetKeyOk

func (o *GetUploadURLRequest) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUploadURLRequest) HasKey

func (o *GetUploadURLRequest) HasKey() bool

HasKey returns a boolean if a field has been set.

func (GetUploadURLRequest) MarshalJSON

func (o GetUploadURLRequest) MarshalJSON() ([]byte, error)

func (*GetUploadURLRequest) SetKey

func (o *GetUploadURLRequest) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (GetUploadURLRequest) ToMap

func (o GetUploadURLRequest) ToMap() (map[string]interface{}, error)

type ListApiKeysReply

type ListApiKeysReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	KeyIds []string             `json:"keyIds,omitempty"`
}

ListApiKeysReply struct for ListApiKeysReply

func NewListApiKeysReply

func NewListApiKeysReply() *ListApiKeysReply

NewListApiKeysReply instantiates a new ListApiKeysReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListApiKeysReplyWithDefaults

func NewListApiKeysReplyWithDefaults() *ListApiKeysReply

NewListApiKeysReplyWithDefaults instantiates a new ListApiKeysReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListApiKeysReply) GetKeyIds

func (o *ListApiKeysReply) GetKeyIds() []string

GetKeyIds returns the KeyIds field value if set, zero value otherwise.

func (*ListApiKeysReply) GetKeyIdsOk

func (o *ListApiKeysReply) GetKeyIdsOk() ([]string, bool)

GetKeyIdsOk returns a tuple with the KeyIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListApiKeysReply) GetResult

func (o *ListApiKeysReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListApiKeysReply) GetResultOk

func (o *ListApiKeysReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListApiKeysReply) HasKeyIds

func (o *ListApiKeysReply) HasKeyIds() bool

HasKeyIds returns a boolean if a field has been set.

func (*ListApiKeysReply) HasResult

func (o *ListApiKeysReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListApiKeysReply) MarshalJSON

func (o ListApiKeysReply) MarshalJSON() ([]byte, error)

func (*ListApiKeysReply) SetKeyIds

func (o *ListApiKeysReply) SetKeyIds(v []string)

SetKeyIds gets a reference to the given []string and assigns it to the KeyIds field.

func (*ListApiKeysReply) SetResult

func (o *ListApiKeysReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListApiKeysReply) ToMap

func (o ListApiKeysReply) ToMap() (map[string]interface{}, error)

type ListDatabasesReply

type ListDatabasesReply struct {
	Result        *ServiceRunnerResult `json:"result,omitempty"`
	Header        *ProjEnvHeader       `json:"header,omitempty"`
	DatabaseNames []string             `json:"databaseNames,omitempty"`
}

ListDatabasesReply struct for ListDatabasesReply

func NewListDatabasesReply

func NewListDatabasesReply() *ListDatabasesReply

NewListDatabasesReply instantiates a new ListDatabasesReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListDatabasesReplyWithDefaults

func NewListDatabasesReplyWithDefaults() *ListDatabasesReply

NewListDatabasesReplyWithDefaults instantiates a new ListDatabasesReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListDatabasesReply) GetDatabaseNames

func (o *ListDatabasesReply) GetDatabaseNames() []string

GetDatabaseNames returns the DatabaseNames field value if set, zero value otherwise.

func (*ListDatabasesReply) GetDatabaseNamesOk

func (o *ListDatabasesReply) GetDatabaseNamesOk() ([]string, bool)

GetDatabaseNamesOk returns a tuple with the DatabaseNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatabasesReply) GetHeader

func (o *ListDatabasesReply) GetHeader() ProjEnvHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*ListDatabasesReply) GetHeaderOk

func (o *ListDatabasesReply) GetHeaderOk() (*ProjEnvHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatabasesReply) GetResult

func (o *ListDatabasesReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListDatabasesReply) GetResultOk

func (o *ListDatabasesReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatabasesReply) HasDatabaseNames

func (o *ListDatabasesReply) HasDatabaseNames() bool

HasDatabaseNames returns a boolean if a field has been set.

func (*ListDatabasesReply) HasHeader

func (o *ListDatabasesReply) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*ListDatabasesReply) HasResult

func (o *ListDatabasesReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListDatabasesReply) MarshalJSON

func (o ListDatabasesReply) MarshalJSON() ([]byte, error)

func (*ListDatabasesReply) SetDatabaseNames

func (o *ListDatabasesReply) SetDatabaseNames(v []string)

SetDatabaseNames gets a reference to the given []string and assigns it to the DatabaseNames field.

func (*ListDatabasesReply) SetHeader

func (o *ListDatabasesReply) SetHeader(v ProjEnvHeader)

SetHeader gets a reference to the given ProjEnvHeader and assigns it to the Header field.

func (*ListDatabasesReply) SetResult

func (o *ListDatabasesReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListDatabasesReply) ToMap

func (o ListDatabasesReply) ToMap() (map[string]interface{}, error)

type ListDatabasesRequest

type ListDatabasesRequest struct {
	Header *ProjEnvHeader `json:"header,omitempty"`
}

ListDatabasesRequest struct for ListDatabasesRequest

func NewListDatabasesRequest

func NewListDatabasesRequest() *ListDatabasesRequest

NewListDatabasesRequest instantiates a new ListDatabasesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListDatabasesRequestWithDefaults

func NewListDatabasesRequestWithDefaults() *ListDatabasesRequest

NewListDatabasesRequestWithDefaults instantiates a new ListDatabasesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListDatabasesRequest) GetHeader

func (o *ListDatabasesRequest) GetHeader() ProjEnvHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*ListDatabasesRequest) GetHeaderOk

func (o *ListDatabasesRequest) GetHeaderOk() (*ProjEnvHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatabasesRequest) HasHeader

func (o *ListDatabasesRequest) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (ListDatabasesRequest) MarshalJSON

func (o ListDatabasesRequest) MarshalJSON() ([]byte, error)

func (*ListDatabasesRequest) SetHeader

func (o *ListDatabasesRequest) SetHeader(v ProjEnvHeader)

SetHeader gets a reference to the given ProjEnvHeader and assigns it to the Header field.

func (ListDatabasesRequest) ToMap

func (o ListDatabasesRequest) ToMap() (map[string]interface{}, error)

type ListDatastoresReply

type ListDatastoresReply struct {
	Result         *ServiceRunnerResult `json:"result,omitempty"`
	Header         *ProjEnvHeader       `json:"header,omitempty"`
	DatastoreNames []string             `json:"datastoreNames,omitempty"`
}

ListDatastoresReply struct for ListDatastoresReply

func NewListDatastoresReply

func NewListDatastoresReply() *ListDatastoresReply

NewListDatastoresReply instantiates a new ListDatastoresReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListDatastoresReplyWithDefaults

func NewListDatastoresReplyWithDefaults() *ListDatastoresReply

NewListDatastoresReplyWithDefaults instantiates a new ListDatastoresReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListDatastoresReply) GetDatastoreNames

func (o *ListDatastoresReply) GetDatastoreNames() []string

GetDatastoreNames returns the DatastoreNames field value if set, zero value otherwise.

func (*ListDatastoresReply) GetDatastoreNamesOk

func (o *ListDatastoresReply) GetDatastoreNamesOk() ([]string, bool)

GetDatastoreNamesOk returns a tuple with the DatastoreNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatastoresReply) GetHeader

func (o *ListDatastoresReply) GetHeader() ProjEnvHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*ListDatastoresReply) GetHeaderOk

func (o *ListDatastoresReply) GetHeaderOk() (*ProjEnvHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatastoresReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListDatastoresReply) GetResultOk

func (o *ListDatastoresReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatastoresReply) HasDatastoreNames

func (o *ListDatastoresReply) HasDatastoreNames() bool

HasDatastoreNames returns a boolean if a field has been set.

func (*ListDatastoresReply) HasHeader

func (o *ListDatastoresReply) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*ListDatastoresReply) HasResult

func (o *ListDatastoresReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListDatastoresReply) MarshalJSON

func (o ListDatastoresReply) MarshalJSON() ([]byte, error)

func (*ListDatastoresReply) SetDatastoreNames

func (o *ListDatastoresReply) SetDatastoreNames(v []string)

SetDatastoreNames gets a reference to the given []string and assigns it to the DatastoreNames field.

func (*ListDatastoresReply) SetHeader

func (o *ListDatastoresReply) SetHeader(v ProjEnvHeader)

SetHeader gets a reference to the given ProjEnvHeader and assigns it to the Header field.

func (*ListDatastoresReply) SetResult

func (o *ListDatastoresReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListDatastoresReply) ToMap

func (o ListDatastoresReply) ToMap() (map[string]interface{}, error)

type ListDatastoresRequest

type ListDatastoresRequest struct {
	Header *ProjEnvHeader `json:"header,omitempty"`
}

ListDatastoresRequest struct for ListDatastoresRequest

func NewListDatastoresRequest

func NewListDatastoresRequest() *ListDatastoresRequest

NewListDatastoresRequest instantiates a new ListDatastoresRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListDatastoresRequestWithDefaults

func NewListDatastoresRequestWithDefaults() *ListDatastoresRequest

NewListDatastoresRequestWithDefaults instantiates a new ListDatastoresRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListDatastoresRequest) GetHeader

func (o *ListDatastoresRequest) GetHeader() ProjEnvHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*ListDatastoresRequest) GetHeaderOk

func (o *ListDatastoresRequest) GetHeaderOk() (*ProjEnvHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatastoresRequest) HasHeader

func (o *ListDatastoresRequest) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (ListDatastoresRequest) MarshalJSON

func (o ListDatastoresRequest) MarshalJSON() ([]byte, error)

func (*ListDatastoresRequest) SetHeader

func (o *ListDatastoresRequest) SetHeader(v ProjEnvHeader)

SetHeader gets a reference to the given ProjEnvHeader and assigns it to the Header field.

func (ListDatastoresRequest) ToMap

func (o ListDatastoresRequest) ToMap() (map[string]interface{}, error)

type ListDeploymentsReply

type ListDeploymentsReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Ids    []string             `json:"ids,omitempty"`
}

ListDeploymentsReply struct for ListDeploymentsReply

func NewListDeploymentsReply

func NewListDeploymentsReply() *ListDeploymentsReply

NewListDeploymentsReply instantiates a new ListDeploymentsReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListDeploymentsReplyWithDefaults

func NewListDeploymentsReplyWithDefaults() *ListDeploymentsReply

NewListDeploymentsReplyWithDefaults instantiates a new ListDeploymentsReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListDeploymentsReply) GetIds

func (o *ListDeploymentsReply) GetIds() []string

GetIds returns the Ids field value if set, zero value otherwise.

func (*ListDeploymentsReply) GetIdsOk

func (o *ListDeploymentsReply) GetIdsOk() ([]string, bool)

GetIdsOk returns a tuple with the Ids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDeploymentsReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListDeploymentsReply) GetResultOk

func (o *ListDeploymentsReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDeploymentsReply) HasIds

func (o *ListDeploymentsReply) HasIds() bool

HasIds returns a boolean if a field has been set.

func (*ListDeploymentsReply) HasResult

func (o *ListDeploymentsReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListDeploymentsReply) MarshalJSON

func (o ListDeploymentsReply) MarshalJSON() ([]byte, error)

func (*ListDeploymentsReply) SetIds

func (o *ListDeploymentsReply) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*ListDeploymentsReply) SetResult

func (o *ListDeploymentsReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListDeploymentsReply) ToMap

func (o ListDeploymentsReply) ToMap() (map[string]interface{}, error)

type ListDeploymentsRequest

type ListDeploymentsRequest struct {
	ProjEnvHeader *ProjEnvHeader `json:"projEnvHeader,omitempty"`
}

ListDeploymentsRequest struct for ListDeploymentsRequest

func NewListDeploymentsRequest

func NewListDeploymentsRequest() *ListDeploymentsRequest

NewListDeploymentsRequest instantiates a new ListDeploymentsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListDeploymentsRequestWithDefaults

func NewListDeploymentsRequestWithDefaults() *ListDeploymentsRequest

NewListDeploymentsRequestWithDefaults instantiates a new ListDeploymentsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListDeploymentsRequest) GetProjEnvHeader

func (o *ListDeploymentsRequest) GetProjEnvHeader() ProjEnvHeader

GetProjEnvHeader returns the ProjEnvHeader field value if set, zero value otherwise.

func (*ListDeploymentsRequest) GetProjEnvHeaderOk

func (o *ListDeploymentsRequest) GetProjEnvHeaderOk() (*ProjEnvHeader, bool)

GetProjEnvHeaderOk returns a tuple with the ProjEnvHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDeploymentsRequest) HasProjEnvHeader

func (o *ListDeploymentsRequest) HasProjEnvHeader() bool

HasProjEnvHeader returns a boolean if a field has been set.

func (ListDeploymentsRequest) MarshalJSON

func (o ListDeploymentsRequest) MarshalJSON() ([]byte, error)

func (*ListDeploymentsRequest) SetProjEnvHeader

func (o *ListDeploymentsRequest) SetProjEnvHeader(v ProjEnvHeader)

SetProjEnvHeader gets a reference to the given ProjEnvHeader and assigns it to the ProjEnvHeader field.

func (ListDeploymentsRequest) ToMap

func (o ListDeploymentsRequest) ToMap() (map[string]interface{}, error)

type ListEnvironmentsReply

type ListEnvironmentsReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Ids    []string             `json:"ids,omitempty"`
}

ListEnvironmentsReply struct for ListEnvironmentsReply

func NewListEnvironmentsReply

func NewListEnvironmentsReply() *ListEnvironmentsReply

NewListEnvironmentsReply instantiates a new ListEnvironmentsReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListEnvironmentsReplyWithDefaults

func NewListEnvironmentsReplyWithDefaults() *ListEnvironmentsReply

NewListEnvironmentsReplyWithDefaults instantiates a new ListEnvironmentsReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListEnvironmentsReply) GetIds

func (o *ListEnvironmentsReply) GetIds() []string

GetIds returns the Ids field value if set, zero value otherwise.

func (*ListEnvironmentsReply) GetIdsOk

func (o *ListEnvironmentsReply) GetIdsOk() ([]string, bool)

GetIdsOk returns a tuple with the Ids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListEnvironmentsReply) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListEnvironmentsReply) GetResultOk

func (o *ListEnvironmentsReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListEnvironmentsReply) HasIds

func (o *ListEnvironmentsReply) HasIds() bool

HasIds returns a boolean if a field has been set.

func (*ListEnvironmentsReply) HasResult

func (o *ListEnvironmentsReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListEnvironmentsReply) MarshalJSON

func (o ListEnvironmentsReply) MarshalJSON() ([]byte, error)

func (*ListEnvironmentsReply) SetIds

func (o *ListEnvironmentsReply) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*ListEnvironmentsReply) SetResult

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListEnvironmentsReply) ToMap

func (o ListEnvironmentsReply) ToMap() (map[string]interface{}, error)

type ListMetricsEntry

type ListMetricsEntry struct {
	Name         *string       `json:"name,omitempty"`
	Description  *string       `json:"description,omitempty"`
	SamplePeriod *string       `json:"samplePeriod,omitempty"`
	Scope        *MetricsScope `json:"scope,omitempty"`
}

ListMetricsEntry struct for ListMetricsEntry

func NewListMetricsEntry

func NewListMetricsEntry() *ListMetricsEntry

NewListMetricsEntry instantiates a new ListMetricsEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMetricsEntryWithDefaults

func NewListMetricsEntryWithDefaults() *ListMetricsEntry

NewListMetricsEntryWithDefaults instantiates a new ListMetricsEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMetricsEntry) GetDescription

func (o *ListMetricsEntry) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ListMetricsEntry) GetDescriptionOk

func (o *ListMetricsEntry) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMetricsEntry) GetName

func (o *ListMetricsEntry) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ListMetricsEntry) GetNameOk

func (o *ListMetricsEntry) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMetricsEntry) GetSamplePeriod

func (o *ListMetricsEntry) GetSamplePeriod() string

GetSamplePeriod returns the SamplePeriod field value if set, zero value otherwise.

func (*ListMetricsEntry) GetSamplePeriodOk

func (o *ListMetricsEntry) GetSamplePeriodOk() (*string, bool)

GetSamplePeriodOk returns a tuple with the SamplePeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMetricsEntry) GetScope

func (o *ListMetricsEntry) GetScope() MetricsScope

GetScope returns the Scope field value if set, zero value otherwise.

func (*ListMetricsEntry) GetScopeOk

func (o *ListMetricsEntry) GetScopeOk() (*MetricsScope, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMetricsEntry) HasDescription

func (o *ListMetricsEntry) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ListMetricsEntry) HasName

func (o *ListMetricsEntry) HasName() bool

HasName returns a boolean if a field has been set.

func (*ListMetricsEntry) HasSamplePeriod

func (o *ListMetricsEntry) HasSamplePeriod() bool

HasSamplePeriod returns a boolean if a field has been set.

func (*ListMetricsEntry) HasScope

func (o *ListMetricsEntry) HasScope() bool

HasScope returns a boolean if a field has been set.

func (ListMetricsEntry) MarshalJSON

func (o ListMetricsEntry) MarshalJSON() ([]byte, error)

func (*ListMetricsEntry) SetDescription

func (o *ListMetricsEntry) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ListMetricsEntry) SetName

func (o *ListMetricsEntry) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ListMetricsEntry) SetSamplePeriod

func (o *ListMetricsEntry) SetSamplePeriod(v string)

SetSamplePeriod gets a reference to the given string and assigns it to the SamplePeriod field.

func (*ListMetricsEntry) SetScope

func (o *ListMetricsEntry) SetScope(v MetricsScope)

SetScope gets a reference to the given MetricsScope and assigns it to the Scope field.

func (ListMetricsEntry) ToMap

func (o ListMetricsEntry) ToMap() (map[string]interface{}, error)

type ListMetricsReply

type ListMetricsReply struct {
	Result  *ServiceRunnerResult `json:"result,omitempty"`
	Entries []ListMetricsEntry   `json:"entries,omitempty"`
}

ListMetricsReply struct for ListMetricsReply

func NewListMetricsReply

func NewListMetricsReply() *ListMetricsReply

NewListMetricsReply instantiates a new ListMetricsReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMetricsReplyWithDefaults

func NewListMetricsReplyWithDefaults() *ListMetricsReply

NewListMetricsReplyWithDefaults instantiates a new ListMetricsReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMetricsReply) GetEntries

func (o *ListMetricsReply) GetEntries() []ListMetricsEntry

GetEntries returns the Entries field value if set, zero value otherwise.

func (*ListMetricsReply) GetEntriesOk

func (o *ListMetricsReply) GetEntriesOk() ([]ListMetricsEntry, bool)

GetEntriesOk returns a tuple with the Entries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMetricsReply) GetResult

func (o *ListMetricsReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListMetricsReply) GetResultOk

func (o *ListMetricsReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMetricsReply) HasEntries

func (o *ListMetricsReply) HasEntries() bool

HasEntries returns a boolean if a field has been set.

func (*ListMetricsReply) HasResult

func (o *ListMetricsReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListMetricsReply) MarshalJSON

func (o ListMetricsReply) MarshalJSON() ([]byte, error)

func (*ListMetricsReply) SetEntries

func (o *ListMetricsReply) SetEntries(v []ListMetricsEntry)

SetEntries gets a reference to the given []ListMetricsEntry and assigns it to the Entries field.

func (*ListMetricsReply) SetResult

func (o *ListMetricsReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListMetricsReply) ToMap

func (o ListMetricsReply) ToMap() (map[string]interface{}, error)

type ListMetricsRequest

type ListMetricsRequest struct {
	Scope *MetricsScope `json:"scope,omitempty"`
}

ListMetricsRequest struct for ListMetricsRequest

func NewListMetricsRequest

func NewListMetricsRequest() *ListMetricsRequest

NewListMetricsRequest instantiates a new ListMetricsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMetricsRequestWithDefaults

func NewListMetricsRequestWithDefaults() *ListMetricsRequest

NewListMetricsRequestWithDefaults instantiates a new ListMetricsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMetricsRequest) GetScope

func (o *ListMetricsRequest) GetScope() MetricsScope

GetScope returns the Scope field value if set, zero value otherwise.

func (*ListMetricsRequest) GetScopeOk

func (o *ListMetricsRequest) GetScopeOk() (*MetricsScope, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMetricsRequest) HasScope

func (o *ListMetricsRequest) HasScope() bool

HasScope returns a boolean if a field has been set.

func (ListMetricsRequest) MarshalJSON

func (o ListMetricsRequest) MarshalJSON() ([]byte, error)

func (*ListMetricsRequest) SetScope

func (o *ListMetricsRequest) SetScope(v MetricsScope)

SetScope gets a reference to the given MetricsScope and assigns it to the Scope field.

func (ListMetricsRequest) ToMap

func (o ListMetricsRequest) ToMap() (map[string]interface{}, error)

type ListPackagesReply

type ListPackagesReply struct {
	Result *ServiceRunnerResult                `json:"result,omitempty"`
	Items  []ListPackagesReplyListPackagesItem `json:"items,omitempty"`
}

ListPackagesReply struct for ListPackagesReply

func NewListPackagesReply

func NewListPackagesReply() *ListPackagesReply

NewListPackagesReply instantiates a new ListPackagesReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListPackagesReplyWithDefaults

func NewListPackagesReplyWithDefaults() *ListPackagesReply

NewListPackagesReplyWithDefaults instantiates a new ListPackagesReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListPackagesReply) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListPackagesReply) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListPackagesReply) GetResult

func (o *ListPackagesReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListPackagesReply) GetResultOk

func (o *ListPackagesReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListPackagesReply) HasItems

func (o *ListPackagesReply) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListPackagesReply) HasResult

func (o *ListPackagesReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListPackagesReply) MarshalJSON

func (o ListPackagesReply) MarshalJSON() ([]byte, error)

func (*ListPackagesReply) SetItems

SetItems gets a reference to the given []ListPackagesReplyListPackagesItem and assigns it to the Items field.

func (*ListPackagesReply) SetResult

func (o *ListPackagesReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListPackagesReply) ToMap

func (o ListPackagesReply) ToMap() (map[string]interface{}, error)

type ListPackagesReplyListPackagesItem

type ListPackagesReplyListPackagesItem struct {
	ProjId    *string `json:"projId,omitempty"`
	PackageId *string `json:"packageId,omitempty"`
}

ListPackagesReplyListPackagesItem struct for ListPackagesReplyListPackagesItem

func NewListPackagesReplyListPackagesItem

func NewListPackagesReplyListPackagesItem() *ListPackagesReplyListPackagesItem

NewListPackagesReplyListPackagesItem instantiates a new ListPackagesReplyListPackagesItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListPackagesReplyListPackagesItemWithDefaults

func NewListPackagesReplyListPackagesItemWithDefaults() *ListPackagesReplyListPackagesItem

NewListPackagesReplyListPackagesItemWithDefaults instantiates a new ListPackagesReplyListPackagesItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListPackagesReplyListPackagesItem) GetPackageId

func (o *ListPackagesReplyListPackagesItem) GetPackageId() string

GetPackageId returns the PackageId field value if set, zero value otherwise.

func (*ListPackagesReplyListPackagesItem) GetPackageIdOk

func (o *ListPackagesReplyListPackagesItem) GetPackageIdOk() (*string, bool)

GetPackageIdOk returns a tuple with the PackageId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListPackagesReplyListPackagesItem) GetProjId

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*ListPackagesReplyListPackagesItem) GetProjIdOk

func (o *ListPackagesReplyListPackagesItem) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListPackagesReplyListPackagesItem) HasPackageId

func (o *ListPackagesReplyListPackagesItem) HasPackageId() bool

HasPackageId returns a boolean if a field has been set.

func (*ListPackagesReplyListPackagesItem) HasProjId

func (o *ListPackagesReplyListPackagesItem) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (ListPackagesReplyListPackagesItem) MarshalJSON

func (o ListPackagesReplyListPackagesItem) MarshalJSON() ([]byte, error)

func (*ListPackagesReplyListPackagesItem) SetPackageId

func (o *ListPackagesReplyListPackagesItem) SetPackageId(v string)

SetPackageId gets a reference to the given string and assigns it to the PackageId field.

func (*ListPackagesReplyListPackagesItem) SetProjId

func (o *ListPackagesReplyListPackagesItem) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (ListPackagesReplyListPackagesItem) ToMap

func (o ListPackagesReplyListPackagesItem) ToMap() (map[string]interface{}, error)

type ListPackagesRequest

type ListPackagesRequest struct {
	ProjId *string `json:"projId,omitempty"`
}

ListPackagesRequest struct for ListPackagesRequest

func NewListPackagesRequest

func NewListPackagesRequest() *ListPackagesRequest

NewListPackagesRequest instantiates a new ListPackagesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListPackagesRequestWithDefaults

func NewListPackagesRequestWithDefaults() *ListPackagesRequest

NewListPackagesRequestWithDefaults instantiates a new ListPackagesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListPackagesRequest) GetProjId

func (o *ListPackagesRequest) GetProjId() string

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*ListPackagesRequest) GetProjIdOk

func (o *ListPackagesRequest) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListPackagesRequest) HasProjId

func (o *ListPackagesRequest) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (ListPackagesRequest) MarshalJSON

func (o ListPackagesRequest) MarshalJSON() ([]byte, error)

func (*ListPackagesRequest) SetProjId

func (o *ListPackagesRequest) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (ListPackagesRequest) ToMap

func (o ListPackagesRequest) ToMap() (map[string]interface{}, error)

type ListProjectsReply

type ListProjectsReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	Ids    []string             `json:"ids,omitempty"`
}

ListProjectsReply struct for ListProjectsReply

func NewListProjectsReply

func NewListProjectsReply() *ListProjectsReply

NewListProjectsReply instantiates a new ListProjectsReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListProjectsReplyWithDefaults

func NewListProjectsReplyWithDefaults() *ListProjectsReply

NewListProjectsReplyWithDefaults instantiates a new ListProjectsReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListProjectsReply) GetIds

func (o *ListProjectsReply) GetIds() []string

GetIds returns the Ids field value if set, zero value otherwise.

func (*ListProjectsReply) GetIdsOk

func (o *ListProjectsReply) GetIdsOk() ([]string, bool)

GetIdsOk returns a tuple with the Ids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListProjectsReply) GetResult

func (o *ListProjectsReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListProjectsReply) GetResultOk

func (o *ListProjectsReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListProjectsReply) HasIds

func (o *ListProjectsReply) HasIds() bool

HasIds returns a boolean if a field has been set.

func (*ListProjectsReply) HasResult

func (o *ListProjectsReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ListProjectsReply) MarshalJSON

func (o ListProjectsReply) MarshalJSON() ([]byte, error)

func (*ListProjectsReply) SetIds

func (o *ListProjectsReply) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*ListProjectsReply) SetResult

func (o *ListProjectsReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (ListProjectsReply) ToMap

func (o ListProjectsReply) ToMap() (map[string]interface{}, error)

type ListServicesReply

type ListServicesReply struct {
	Result       *ServiceRunnerResult `json:"result,omitempty"`
	Header       *ProjEnvHeader       `json:"header,omitempty"`
	ServiceNames []string             `json:"serviceNames,omitempty"`
}

ListServicesReply struct for ListServicesReply

func NewListServicesReply

func NewListServicesReply() *ListServicesReply

NewListServicesReply instantiates a new ListServicesReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListServicesReplyWithDefaults

func NewListServicesReplyWithDefaults() *ListServicesReply

NewListServicesReplyWithDefaults instantiates a new ListServicesReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListServicesReply) GetHeader

func (o *ListServicesReply) GetHeader() ProjEnvHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*ListServicesReply) GetHeaderOk

func (o *ListServicesReply) GetHeaderOk() (*ProjEnvHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesReply) GetResult

func (o *ListServicesReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ListServicesReply) GetResultOk

func (o *ListServicesReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesReply) GetServiceNames

func (o *ListServicesReply) GetServiceNames() []string

GetServiceNames returns the ServiceNames field value if set, zero value otherwise.

func (*ListServicesReply) GetServiceNamesOk

func (o *ListServicesReply) GetServiceNamesOk() ([]string, bool)

GetServiceNamesOk returns a tuple with the ServiceNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesReply) HasHeader

func (o *ListServicesReply) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*ListServicesReply) HasResult

func (o *ListServicesReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*ListServicesReply) HasServiceNames

func (o *ListServicesReply) HasServiceNames() bool

HasServiceNames returns a boolean if a field has been set.

func (ListServicesReply) MarshalJSON

func (o ListServicesReply) MarshalJSON() ([]byte, error)

func (*ListServicesReply) SetHeader

func (o *ListServicesReply) SetHeader(v ProjEnvHeader)

SetHeader gets a reference to the given ProjEnvHeader and assigns it to the Header field.

func (*ListServicesReply) SetResult

func (o *ListServicesReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (*ListServicesReply) SetServiceNames

func (o *ListServicesReply) SetServiceNames(v []string)

SetServiceNames gets a reference to the given []string and assigns it to the ServiceNames field.

func (ListServicesReply) ToMap

func (o ListServicesReply) ToMap() (map[string]interface{}, error)

type ListServicesRequest

type ListServicesRequest struct {
	Header *ProjEnvHeader `json:"header,omitempty"`
}

ListServicesRequest struct for ListServicesRequest

func NewListServicesRequest

func NewListServicesRequest() *ListServicesRequest

NewListServicesRequest instantiates a new ListServicesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListServicesRequestWithDefaults

func NewListServicesRequestWithDefaults() *ListServicesRequest

NewListServicesRequestWithDefaults instantiates a new ListServicesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListServicesRequest) GetHeader

func (o *ListServicesRequest) GetHeader() ProjEnvHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*ListServicesRequest) GetHeaderOk

func (o *ListServicesRequest) GetHeaderOk() (*ProjEnvHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesRequest) HasHeader

func (o *ListServicesRequest) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (ListServicesRequest) MarshalJSON

func (o ListServicesRequest) MarshalJSON() ([]byte, error)

func (*ListServicesRequest) SetHeader

func (o *ListServicesRequest) SetHeader(v ProjEnvHeader)

SetHeader gets a reference to the given ProjEnvHeader and assigns it to the Header field.

func (ListServicesRequest) ToMap

func (o ListServicesRequest) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MetricsFormat

type MetricsFormat string

MetricsFormat the model 'MetricsFormat'

const (
	INVALID_METRIC_FORMAT     MetricsFormat = "INVALID_METRIC_FORMAT"
	METRIC_FORMAT_OPENMETRICS MetricsFormat = "METRIC_FORMAT_OPENMETRICS"
	UNKNOWN_METRIC_FORMAT     MetricsFormat = "UNKNOWN_METRIC_FORMAT"
)

List of MetricsFormat

func NewMetricsFormatFromValue

func NewMetricsFormatFromValue(v string) (*MetricsFormat, error)

NewMetricsFormatFromValue returns a pointer to a valid MetricsFormat for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MetricsFormat) IsValid

func (v MetricsFormat) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MetricsFormat) Ptr

func (v MetricsFormat) Ptr() *MetricsFormat

Ptr returns reference to MetricsFormat value

func (*MetricsFormat) UnmarshalJSON

func (v *MetricsFormat) UnmarshalJSON(src []byte) error

type MetricsScope

type MetricsScope string

MetricsScope the model 'MetricsScope'

const (
	INVALID_METRIC_SCOPE   MetricsScope = "INVALID_METRIC_SCOPE"
	METRIC_SCOPE_ALL       MetricsScope = "METRIC_SCOPE_ALL"
	METRIC_SCOPE_SERVICE   MetricsScope = "METRIC_SCOPE_SERVICE"
	METRIC_SCOPE_DATASTORE MetricsScope = "METRIC_SCOPE_DATASTORE"
	METRIC_SCOPE_DATABASE  MetricsScope = "METRIC_SCOPE_DATABASE"
	UNKNOWN_METRIC_SCOPE   MetricsScope = "UNKNOWN_METRIC_SCOPE"
)

List of MetricsScope

func NewMetricsScopeFromValue

func NewMetricsScopeFromValue(v string) (*MetricsScope, error)

NewMetricsScopeFromValue returns a pointer to a valid MetricsScope for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MetricsScope) IsValid

func (v MetricsScope) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MetricsScope) Ptr

func (v MetricsScope) Ptr() *MetricsScope

Ptr returns reference to MetricsScope value

func (*MetricsScope) UnmarshalJSON

func (v *MetricsScope) UnmarshalJSON(src []byte) error

type NullableApiKeyDescription

type NullableApiKeyDescription struct {
	// contains filtered or unexported fields
}

func NewNullableApiKeyDescription

func NewNullableApiKeyDescription(val *ApiKeyDescription) *NullableApiKeyDescription

func (NullableApiKeyDescription) Get

func (NullableApiKeyDescription) IsSet

func (v NullableApiKeyDescription) IsSet() bool

func (NullableApiKeyDescription) MarshalJSON

func (v NullableApiKeyDescription) MarshalJSON() ([]byte, error)

func (*NullableApiKeyDescription) Set

func (*NullableApiKeyDescription) UnmarshalJSON

func (v *NullableApiKeyDescription) UnmarshalJSON(src []byte) error

func (*NullableApiKeyDescription) Unset

func (v *NullableApiKeyDescription) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCreateApiKeyReply

type NullableCreateApiKeyReply struct {
	// contains filtered or unexported fields
}

func NewNullableCreateApiKeyReply

func NewNullableCreateApiKeyReply(val *CreateApiKeyReply) *NullableCreateApiKeyReply

func (NullableCreateApiKeyReply) Get

func (NullableCreateApiKeyReply) IsSet

func (v NullableCreateApiKeyReply) IsSet() bool

func (NullableCreateApiKeyReply) MarshalJSON

func (v NullableCreateApiKeyReply) MarshalJSON() ([]byte, error)

func (*NullableCreateApiKeyReply) Set

func (*NullableCreateApiKeyReply) UnmarshalJSON

func (v *NullableCreateApiKeyReply) UnmarshalJSON(src []byte) error

func (*NullableCreateApiKeyReply) Unset

func (v *NullableCreateApiKeyReply) Unset()

type NullableCreateApiKeyRequest

type NullableCreateApiKeyRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateApiKeyRequest

func NewNullableCreateApiKeyRequest(val *CreateApiKeyRequest) *NullableCreateApiKeyRequest

func (NullableCreateApiKeyRequest) Get

func (NullableCreateApiKeyRequest) IsSet

func (NullableCreateApiKeyRequest) MarshalJSON

func (v NullableCreateApiKeyRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateApiKeyRequest) Set

func (*NullableCreateApiKeyRequest) UnmarshalJSON

func (v *NullableCreateApiKeyRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateApiKeyRequest) Unset

func (v *NullableCreateApiKeyRequest) Unset()

type NullableCreateDeploymentReply

type NullableCreateDeploymentReply struct {
	// contains filtered or unexported fields
}

func (NullableCreateDeploymentReply) Get

func (NullableCreateDeploymentReply) IsSet

func (NullableCreateDeploymentReply) MarshalJSON

func (v NullableCreateDeploymentReply) MarshalJSON() ([]byte, error)

func (*NullableCreateDeploymentReply) Set

func (*NullableCreateDeploymentReply) UnmarshalJSON

func (v *NullableCreateDeploymentReply) UnmarshalJSON(src []byte) error

func (*NullableCreateDeploymentReply) Unset

func (v *NullableCreateDeploymentReply) Unset()

type NullableCreateDeploymentRequest

type NullableCreateDeploymentRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateDeploymentRequest) Get

func (NullableCreateDeploymentRequest) IsSet

func (NullableCreateDeploymentRequest) MarshalJSON

func (v NullableCreateDeploymentRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateDeploymentRequest) Set

func (*NullableCreateDeploymentRequest) UnmarshalJSON

func (v *NullableCreateDeploymentRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateDeploymentRequest) Unset

type NullableCreateEnvironmentReply

type NullableCreateEnvironmentReply struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironmentReply) Get

func (NullableCreateEnvironmentReply) IsSet

func (NullableCreateEnvironmentReply) MarshalJSON

func (v NullableCreateEnvironmentReply) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironmentReply) Set

func (*NullableCreateEnvironmentReply) UnmarshalJSON

func (v *NullableCreateEnvironmentReply) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironmentReply) Unset

func (v *NullableCreateEnvironmentReply) Unset()

type NullableCreateEnvironmentRequest

type NullableCreateEnvironmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironmentRequest) Get

func (NullableCreateEnvironmentRequest) IsSet

func (NullableCreateEnvironmentRequest) MarshalJSON

func (v NullableCreateEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironmentRequest) Set

func (*NullableCreateEnvironmentRequest) UnmarshalJSON

func (v *NullableCreateEnvironmentRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironmentRequest) Unset

type NullableCreateProjectReply

type NullableCreateProjectReply struct {
	// contains filtered or unexported fields
}

func NewNullableCreateProjectReply

func NewNullableCreateProjectReply(val *CreateProjectReply) *NullableCreateProjectReply

func (NullableCreateProjectReply) Get

func (NullableCreateProjectReply) IsSet

func (v NullableCreateProjectReply) IsSet() bool

func (NullableCreateProjectReply) MarshalJSON

func (v NullableCreateProjectReply) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectReply) Set

func (*NullableCreateProjectReply) UnmarshalJSON

func (v *NullableCreateProjectReply) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectReply) Unset

func (v *NullableCreateProjectReply) Unset()

type NullableCreateProjectRequest

type NullableCreateProjectRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateProjectRequest

func NewNullableCreateProjectRequest(val *CreateProjectRequest) *NullableCreateProjectRequest

func (NullableCreateProjectRequest) Get

func (NullableCreateProjectRequest) IsSet

func (NullableCreateProjectRequest) MarshalJSON

func (v NullableCreateProjectRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectRequest) Set

func (*NullableCreateProjectRequest) UnmarshalJSON

func (v *NullableCreateProjectRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectRequest) Unset

func (v *NullableCreateProjectRequest) Unset()

type NullableDatabaseDescription

type NullableDatabaseDescription struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseDescription

func NewNullableDatabaseDescription(val *DatabaseDescription) *NullableDatabaseDescription

func (NullableDatabaseDescription) Get

func (NullableDatabaseDescription) IsSet

func (NullableDatabaseDescription) MarshalJSON

func (v NullableDatabaseDescription) MarshalJSON() ([]byte, error)

func (*NullableDatabaseDescription) Set

func (*NullableDatabaseDescription) UnmarshalJSON

func (v *NullableDatabaseDescription) UnmarshalJSON(src []byte) error

func (*NullableDatabaseDescription) Unset

func (v *NullableDatabaseDescription) Unset()

type NullableDatabaseHeader

type NullableDatabaseHeader struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseHeader

func NewNullableDatabaseHeader(val *DatabaseHeader) *NullableDatabaseHeader

func (NullableDatabaseHeader) Get

func (NullableDatabaseHeader) IsSet

func (v NullableDatabaseHeader) IsSet() bool

func (NullableDatabaseHeader) MarshalJSON

func (v NullableDatabaseHeader) MarshalJSON() ([]byte, error)

func (*NullableDatabaseHeader) Set

func (*NullableDatabaseHeader) UnmarshalJSON

func (v *NullableDatabaseHeader) UnmarshalJSON(src []byte) error

func (*NullableDatabaseHeader) Unset

func (v *NullableDatabaseHeader) Unset()

type NullableDatabaseTableDescription

type NullableDatabaseTableDescription struct {
	// contains filtered or unexported fields
}

func (NullableDatabaseTableDescription) Get

func (NullableDatabaseTableDescription) IsSet

func (NullableDatabaseTableDescription) MarshalJSON

func (v NullableDatabaseTableDescription) MarshalJSON() ([]byte, error)

func (*NullableDatabaseTableDescription) Set

func (*NullableDatabaseTableDescription) UnmarshalJSON

func (v *NullableDatabaseTableDescription) UnmarshalJSON(src []byte) error

func (*NullableDatabaseTableDescription) Unset

type NullableDatastoreDescription

type NullableDatastoreDescription struct {
	// contains filtered or unexported fields
}

func NewNullableDatastoreDescription

func NewNullableDatastoreDescription(val *DatastoreDescription) *NullableDatastoreDescription

func (NullableDatastoreDescription) Get

func (NullableDatastoreDescription) IsSet

func (NullableDatastoreDescription) MarshalJSON

func (v NullableDatastoreDescription) MarshalJSON() ([]byte, error)

func (*NullableDatastoreDescription) Set

func (*NullableDatastoreDescription) UnmarshalJSON

func (v *NullableDatastoreDescription) UnmarshalJSON(src []byte) error

func (*NullableDatastoreDescription) Unset

func (v *NullableDatastoreDescription) Unset()

type NullableDatastoreHeader

type NullableDatastoreHeader struct {
	// contains filtered or unexported fields
}

func NewNullableDatastoreHeader

func NewNullableDatastoreHeader(val *DatastoreHeader) *NullableDatastoreHeader

func (NullableDatastoreHeader) Get

func (NullableDatastoreHeader) IsSet

func (v NullableDatastoreHeader) IsSet() bool

func (NullableDatastoreHeader) MarshalJSON

func (v NullableDatastoreHeader) MarshalJSON() ([]byte, error)

func (*NullableDatastoreHeader) Set

func (*NullableDatastoreHeader) UnmarshalJSON

func (v *NullableDatastoreHeader) UnmarshalJSON(src []byte) error

func (*NullableDatastoreHeader) Unset

func (v *NullableDatastoreHeader) Unset()

type NullableDeactivateProjectReply

type NullableDeactivateProjectReply struct {
	// contains filtered or unexported fields
}

func (NullableDeactivateProjectReply) Get

func (NullableDeactivateProjectReply) IsSet

func (NullableDeactivateProjectReply) MarshalJSON

func (v NullableDeactivateProjectReply) MarshalJSON() ([]byte, error)

func (*NullableDeactivateProjectReply) Set

func (*NullableDeactivateProjectReply) UnmarshalJSON

func (v *NullableDeactivateProjectReply) UnmarshalJSON(src []byte) error

func (*NullableDeactivateProjectReply) Unset

func (v *NullableDeactivateProjectReply) Unset()

type NullableDeactivateProjectRequest

type NullableDeactivateProjectRequest struct {
	// contains filtered or unexported fields
}

func (NullableDeactivateProjectRequest) Get

func (NullableDeactivateProjectRequest) IsSet

func (NullableDeactivateProjectRequest) MarshalJSON

func (v NullableDeactivateProjectRequest) MarshalJSON() ([]byte, error)

func (*NullableDeactivateProjectRequest) Set

func (*NullableDeactivateProjectRequest) UnmarshalJSON

func (v *NullableDeactivateProjectRequest) UnmarshalJSON(src []byte) error

func (*NullableDeactivateProjectRequest) Unset

type NullableDeleteApiKeyReply

type NullableDeleteApiKeyReply struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteApiKeyReply

func NewNullableDeleteApiKeyReply(val *DeleteApiKeyReply) *NullableDeleteApiKeyReply

func (NullableDeleteApiKeyReply) Get

func (NullableDeleteApiKeyReply) IsSet

func (v NullableDeleteApiKeyReply) IsSet() bool

func (NullableDeleteApiKeyReply) MarshalJSON

func (v NullableDeleteApiKeyReply) MarshalJSON() ([]byte, error)

func (*NullableDeleteApiKeyReply) Set

func (*NullableDeleteApiKeyReply) UnmarshalJSON

func (v *NullableDeleteApiKeyReply) UnmarshalJSON(src []byte) error

func (*NullableDeleteApiKeyReply) Unset

func (v *NullableDeleteApiKeyReply) Unset()

type NullableDeleteApiKeyRequest

type NullableDeleteApiKeyRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteApiKeyRequest

func NewNullableDeleteApiKeyRequest(val *DeleteApiKeyRequest) *NullableDeleteApiKeyRequest

func (NullableDeleteApiKeyRequest) Get

func (NullableDeleteApiKeyRequest) IsSet

func (NullableDeleteApiKeyRequest) MarshalJSON

func (v NullableDeleteApiKeyRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteApiKeyRequest) Set

func (*NullableDeleteApiKeyRequest) UnmarshalJSON

func (v *NullableDeleteApiKeyRequest) UnmarshalJSON(src []byte) error

func (*NullableDeleteApiKeyRequest) Unset

func (v *NullableDeleteApiKeyRequest) Unset()

type NullableDeleteEnvironmentReply

type NullableDeleteEnvironmentReply struct {
	// contains filtered or unexported fields
}

func (NullableDeleteEnvironmentReply) Get

func (NullableDeleteEnvironmentReply) IsSet

func (NullableDeleteEnvironmentReply) MarshalJSON

func (v NullableDeleteEnvironmentReply) MarshalJSON() ([]byte, error)

func (*NullableDeleteEnvironmentReply) Set

func (*NullableDeleteEnvironmentReply) UnmarshalJSON

func (v *NullableDeleteEnvironmentReply) UnmarshalJSON(src []byte) error

func (*NullableDeleteEnvironmentReply) Unset

func (v *NullableDeleteEnvironmentReply) Unset()

type NullableDeleteEnvironmentRequest

type NullableDeleteEnvironmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableDeleteEnvironmentRequest) Get

func (NullableDeleteEnvironmentRequest) IsSet

func (NullableDeleteEnvironmentRequest) MarshalJSON

func (v NullableDeleteEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteEnvironmentRequest) Set

func (*NullableDeleteEnvironmentRequest) UnmarshalJSON

func (v *NullableDeleteEnvironmentRequest) UnmarshalJSON(src []byte) error

func (*NullableDeleteEnvironmentRequest) Unset

type NullableDeletePackageReply

type NullableDeletePackageReply struct {
	// contains filtered or unexported fields
}

func NewNullableDeletePackageReply

func NewNullableDeletePackageReply(val *DeletePackageReply) *NullableDeletePackageReply

func (NullableDeletePackageReply) Get

func (NullableDeletePackageReply) IsSet

func (v NullableDeletePackageReply) IsSet() bool

func (NullableDeletePackageReply) MarshalJSON

func (v NullableDeletePackageReply) MarshalJSON() ([]byte, error)

func (*NullableDeletePackageReply) Set

func (*NullableDeletePackageReply) UnmarshalJSON

func (v *NullableDeletePackageReply) UnmarshalJSON(src []byte) error

func (*NullableDeletePackageReply) Unset

func (v *NullableDeletePackageReply) Unset()

type NullableDeletePackageRequest

type NullableDeletePackageRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDeletePackageRequest

func NewNullableDeletePackageRequest(val *DeletePackageRequest) *NullableDeletePackageRequest

func (NullableDeletePackageRequest) Get

func (NullableDeletePackageRequest) IsSet

func (NullableDeletePackageRequest) MarshalJSON

func (v NullableDeletePackageRequest) MarshalJSON() ([]byte, error)

func (*NullableDeletePackageRequest) Set

func (*NullableDeletePackageRequest) UnmarshalJSON

func (v *NullableDeletePackageRequest) UnmarshalJSON(src []byte) error

func (*NullableDeletePackageRequest) Unset

func (v *NullableDeletePackageRequest) Unset()

type NullableDeleteProjectReply

type NullableDeleteProjectReply struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteProjectReply

func NewNullableDeleteProjectReply(val *DeleteProjectReply) *NullableDeleteProjectReply

func (NullableDeleteProjectReply) Get

func (NullableDeleteProjectReply) IsSet

func (v NullableDeleteProjectReply) IsSet() bool

func (NullableDeleteProjectReply) MarshalJSON

func (v NullableDeleteProjectReply) MarshalJSON() ([]byte, error)

func (*NullableDeleteProjectReply) Set

func (*NullableDeleteProjectReply) UnmarshalJSON

func (v *NullableDeleteProjectReply) UnmarshalJSON(src []byte) error

func (*NullableDeleteProjectReply) Unset

func (v *NullableDeleteProjectReply) Unset()

type NullableDeleteProjectRequest

type NullableDeleteProjectRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteProjectRequest

func NewNullableDeleteProjectRequest(val *DeleteProjectRequest) *NullableDeleteProjectRequest

func (NullableDeleteProjectRequest) Get

func (NullableDeleteProjectRequest) IsSet

func (NullableDeleteProjectRequest) MarshalJSON

func (v NullableDeleteProjectRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteProjectRequest) Set

func (*NullableDeleteProjectRequest) UnmarshalJSON

func (v *NullableDeleteProjectRequest) UnmarshalJSON(src []byte) error

func (*NullableDeleteProjectRequest) Unset

func (v *NullableDeleteProjectRequest) Unset()

type NullableDeploymentDescription

type NullableDeploymentDescription struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentDescription) Get

func (NullableDeploymentDescription) IsSet

func (NullableDeploymentDescription) MarshalJSON

func (v NullableDeploymentDescription) MarshalJSON() ([]byte, error)

func (*NullableDeploymentDescription) Set

func (*NullableDeploymentDescription) UnmarshalJSON

func (v *NullableDeploymentDescription) UnmarshalJSON(src []byte) error

func (*NullableDeploymentDescription) Unset

func (v *NullableDeploymentDescription) Unset()

type NullableDeploymentHeader

type NullableDeploymentHeader struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentHeader

func NewNullableDeploymentHeader(val *DeploymentHeader) *NullableDeploymentHeader

func (NullableDeploymentHeader) Get

func (NullableDeploymentHeader) IsSet

func (v NullableDeploymentHeader) IsSet() bool

func (NullableDeploymentHeader) MarshalJSON

func (v NullableDeploymentHeader) MarshalJSON() ([]byte, error)

func (*NullableDeploymentHeader) Set

func (*NullableDeploymentHeader) UnmarshalJSON

func (v *NullableDeploymentHeader) UnmarshalJSON(src []byte) error

func (*NullableDeploymentHeader) Unset

func (v *NullableDeploymentHeader) Unset()

type NullableDeploymentInitiator

type NullableDeploymentInitiator struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentInitiator

func NewNullableDeploymentInitiator(val *DeploymentInitiator) *NullableDeploymentInitiator

func (NullableDeploymentInitiator) Get

func (NullableDeploymentInitiator) IsSet

func (NullableDeploymentInitiator) MarshalJSON

func (v NullableDeploymentInitiator) MarshalJSON() ([]byte, error)

func (*NullableDeploymentInitiator) Set

func (*NullableDeploymentInitiator) UnmarshalJSON

func (v *NullableDeploymentInitiator) UnmarshalJSON(src []byte) error

func (*NullableDeploymentInitiator) Unset

func (v *NullableDeploymentInitiator) Unset()

type NullableDeploymentState

type NullableDeploymentState struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentState

func NewNullableDeploymentState(val *DeploymentState) *NullableDeploymentState

func (NullableDeploymentState) Get

func (NullableDeploymentState) IsSet

func (v NullableDeploymentState) IsSet() bool

func (NullableDeploymentState) MarshalJSON

func (v NullableDeploymentState) MarshalJSON() ([]byte, error)

func (*NullableDeploymentState) Set

func (*NullableDeploymentState) UnmarshalJSON

func (v *NullableDeploymentState) UnmarshalJSON(src []byte) error

func (*NullableDeploymentState) Unset

func (v *NullableDeploymentState) Unset()

type NullableDeploymentStateDetail

type NullableDeploymentStateDetail struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentStateDetail) Get

func (NullableDeploymentStateDetail) IsSet

func (NullableDeploymentStateDetail) MarshalJSON

func (v NullableDeploymentStateDetail) MarshalJSON() ([]byte, error)

func (*NullableDeploymentStateDetail) Set

func (*NullableDeploymentStateDetail) UnmarshalJSON

func (v *NullableDeploymentStateDetail) UnmarshalJSON(src []byte) error

func (*NullableDeploymentStateDetail) Unset

func (v *NullableDeploymentStateDetail) Unset()

type NullableDeploymentType

type NullableDeploymentType struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentType

func NewNullableDeploymentType(val *DeploymentType) *NullableDeploymentType

func (NullableDeploymentType) Get

func (NullableDeploymentType) IsSet

func (v NullableDeploymentType) IsSet() bool

func (NullableDeploymentType) MarshalJSON

func (v NullableDeploymentType) MarshalJSON() ([]byte, error)

func (*NullableDeploymentType) Set

func (*NullableDeploymentType) UnmarshalJSON

func (v *NullableDeploymentType) UnmarshalJSON(src []byte) error

func (*NullableDeploymentType) Unset

func (v *NullableDeploymentType) Unset()

type NullableDescribeApiKeyReply

type NullableDescribeApiKeyReply struct {
	// contains filtered or unexported fields
}

func NewNullableDescribeApiKeyReply

func NewNullableDescribeApiKeyReply(val *DescribeApiKeyReply) *NullableDescribeApiKeyReply

func (NullableDescribeApiKeyReply) Get

func (NullableDescribeApiKeyReply) IsSet

func (NullableDescribeApiKeyReply) MarshalJSON

func (v NullableDescribeApiKeyReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeApiKeyReply) Set

func (*NullableDescribeApiKeyReply) UnmarshalJSON

func (v *NullableDescribeApiKeyReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeApiKeyReply) Unset

func (v *NullableDescribeApiKeyReply) Unset()

type NullableDescribeApiKeyRequest

type NullableDescribeApiKeyRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribeApiKeyRequest) Get

func (NullableDescribeApiKeyRequest) IsSet

func (NullableDescribeApiKeyRequest) MarshalJSON

func (v NullableDescribeApiKeyRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeApiKeyRequest) Set

func (*NullableDescribeApiKeyRequest) UnmarshalJSON

func (v *NullableDescribeApiKeyRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeApiKeyRequest) Unset

func (v *NullableDescribeApiKeyRequest) Unset()

type NullableDescribeDatabaseReply

type NullableDescribeDatabaseReply struct {
	// contains filtered or unexported fields
}

func (NullableDescribeDatabaseReply) Get

func (NullableDescribeDatabaseReply) IsSet

func (NullableDescribeDatabaseReply) MarshalJSON

func (v NullableDescribeDatabaseReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeDatabaseReply) Set

func (*NullableDescribeDatabaseReply) UnmarshalJSON

func (v *NullableDescribeDatabaseReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeDatabaseReply) Unset

func (v *NullableDescribeDatabaseReply) Unset()

type NullableDescribeDatabaseRequest

type NullableDescribeDatabaseRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribeDatabaseRequest) Get

func (NullableDescribeDatabaseRequest) IsSet

func (NullableDescribeDatabaseRequest) MarshalJSON

func (v NullableDescribeDatabaseRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeDatabaseRequest) Set

func (*NullableDescribeDatabaseRequest) UnmarshalJSON

func (v *NullableDescribeDatabaseRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeDatabaseRequest) Unset

type NullableDescribeDatastoreReply

type NullableDescribeDatastoreReply struct {
	// contains filtered or unexported fields
}

func (NullableDescribeDatastoreReply) Get

func (NullableDescribeDatastoreReply) IsSet

func (NullableDescribeDatastoreReply) MarshalJSON

func (v NullableDescribeDatastoreReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeDatastoreReply) Set

func (*NullableDescribeDatastoreReply) UnmarshalJSON

func (v *NullableDescribeDatastoreReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeDatastoreReply) Unset

func (v *NullableDescribeDatastoreReply) Unset()

type NullableDescribeDatastoreRequest

type NullableDescribeDatastoreRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribeDatastoreRequest) Get

func (NullableDescribeDatastoreRequest) IsSet

func (NullableDescribeDatastoreRequest) MarshalJSON

func (v NullableDescribeDatastoreRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeDatastoreRequest) Set

func (*NullableDescribeDatastoreRequest) UnmarshalJSON

func (v *NullableDescribeDatastoreRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeDatastoreRequest) Unset

type NullableDescribeDeploymentReply

type NullableDescribeDeploymentReply struct {
	// contains filtered or unexported fields
}

func (NullableDescribeDeploymentReply) Get

func (NullableDescribeDeploymentReply) IsSet

func (NullableDescribeDeploymentReply) MarshalJSON

func (v NullableDescribeDeploymentReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeDeploymentReply) Set

func (*NullableDescribeDeploymentReply) UnmarshalJSON

func (v *NullableDescribeDeploymentReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeDeploymentReply) Unset

type NullableDescribeDeploymentRequest

type NullableDescribeDeploymentRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribeDeploymentRequest) Get

func (NullableDescribeDeploymentRequest) IsSet

func (NullableDescribeDeploymentRequest) MarshalJSON

func (v NullableDescribeDeploymentRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeDeploymentRequest) Set

func (*NullableDescribeDeploymentRequest) UnmarshalJSON

func (v *NullableDescribeDeploymentRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeDeploymentRequest) Unset

type NullableDescribeEnvironmentReply

type NullableDescribeEnvironmentReply struct {
	// contains filtered or unexported fields
}

func (NullableDescribeEnvironmentReply) Get

func (NullableDescribeEnvironmentReply) IsSet

func (NullableDescribeEnvironmentReply) MarshalJSON

func (v NullableDescribeEnvironmentReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeEnvironmentReply) Set

func (*NullableDescribeEnvironmentReply) UnmarshalJSON

func (v *NullableDescribeEnvironmentReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeEnvironmentReply) Unset

type NullableDescribeEnvironmentRequest

type NullableDescribeEnvironmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribeEnvironmentRequest) Get

func (NullableDescribeEnvironmentRequest) IsSet

func (NullableDescribeEnvironmentRequest) MarshalJSON

func (v NullableDescribeEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeEnvironmentRequest) Set

func (*NullableDescribeEnvironmentRequest) UnmarshalJSON

func (v *NullableDescribeEnvironmentRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeEnvironmentRequest) Unset

type NullableDescribePackageReply

type NullableDescribePackageReply struct {
	// contains filtered or unexported fields
}

func NewNullableDescribePackageReply

func NewNullableDescribePackageReply(val *DescribePackageReply) *NullableDescribePackageReply

func (NullableDescribePackageReply) Get

func (NullableDescribePackageReply) IsSet

func (NullableDescribePackageReply) MarshalJSON

func (v NullableDescribePackageReply) MarshalJSON() ([]byte, error)

func (*NullableDescribePackageReply) Set

func (*NullableDescribePackageReply) UnmarshalJSON

func (v *NullableDescribePackageReply) UnmarshalJSON(src []byte) error

func (*NullableDescribePackageReply) Unset

func (v *NullableDescribePackageReply) Unset()

type NullableDescribePackageRequest

type NullableDescribePackageRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribePackageRequest) Get

func (NullableDescribePackageRequest) IsSet

func (NullableDescribePackageRequest) MarshalJSON

func (v NullableDescribePackageRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribePackageRequest) Set

func (*NullableDescribePackageRequest) UnmarshalJSON

func (v *NullableDescribePackageRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribePackageRequest) Unset

func (v *NullableDescribePackageRequest) Unset()

type NullableDescribeProjectReply

type NullableDescribeProjectReply struct {
	// contains filtered or unexported fields
}

func NewNullableDescribeProjectReply

func NewNullableDescribeProjectReply(val *DescribeProjectReply) *NullableDescribeProjectReply

func (NullableDescribeProjectReply) Get

func (NullableDescribeProjectReply) IsSet

func (NullableDescribeProjectReply) MarshalJSON

func (v NullableDescribeProjectReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeProjectReply) Set

func (*NullableDescribeProjectReply) UnmarshalJSON

func (v *NullableDescribeProjectReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeProjectReply) Unset

func (v *NullableDescribeProjectReply) Unset()

type NullableDescribeProjectRequest

type NullableDescribeProjectRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribeProjectRequest) Get

func (NullableDescribeProjectRequest) IsSet

func (NullableDescribeProjectRequest) MarshalJSON

func (v NullableDescribeProjectRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeProjectRequest) Set

func (*NullableDescribeProjectRequest) UnmarshalJSON

func (v *NullableDescribeProjectRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeProjectRequest) Unset

func (v *NullableDescribeProjectRequest) Unset()

type NullableDescribeServiceReply

type NullableDescribeServiceReply struct {
	// contains filtered or unexported fields
}

func NewNullableDescribeServiceReply

func NewNullableDescribeServiceReply(val *DescribeServiceReply) *NullableDescribeServiceReply

func (NullableDescribeServiceReply) Get

func (NullableDescribeServiceReply) IsSet

func (NullableDescribeServiceReply) MarshalJSON

func (v NullableDescribeServiceReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeServiceReply) Set

func (*NullableDescribeServiceReply) UnmarshalJSON

func (v *NullableDescribeServiceReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeServiceReply) Unset

func (v *NullableDescribeServiceReply) Unset()

type NullableDescribeServiceRequest

type NullableDescribeServiceRequest struct {
	// contains filtered or unexported fields
}

func (NullableDescribeServiceRequest) Get

func (NullableDescribeServiceRequest) IsSet

func (NullableDescribeServiceRequest) MarshalJSON

func (v NullableDescribeServiceRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeServiceRequest) Set

func (*NullableDescribeServiceRequest) UnmarshalJSON

func (v *NullableDescribeServiceRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeServiceRequest) Unset

func (v *NullableDescribeServiceRequest) Unset()

type NullableDescribeSiteReply

type NullableDescribeSiteReply struct {
	// contains filtered or unexported fields
}

func NewNullableDescribeSiteReply

func NewNullableDescribeSiteReply(val *DescribeSiteReply) *NullableDescribeSiteReply

func (NullableDescribeSiteReply) Get

func (NullableDescribeSiteReply) IsSet

func (v NullableDescribeSiteReply) IsSet() bool

func (NullableDescribeSiteReply) MarshalJSON

func (v NullableDescribeSiteReply) MarshalJSON() ([]byte, error)

func (*NullableDescribeSiteReply) Set

func (*NullableDescribeSiteReply) UnmarshalJSON

func (v *NullableDescribeSiteReply) UnmarshalJSON(src []byte) error

func (*NullableDescribeSiteReply) Unset

func (v *NullableDescribeSiteReply) Unset()

type NullableDescribeSiteRequest

type NullableDescribeSiteRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDescribeSiteRequest

func NewNullableDescribeSiteRequest(val *DescribeSiteRequest) *NullableDescribeSiteRequest

func (NullableDescribeSiteRequest) Get

func (NullableDescribeSiteRequest) IsSet

func (NullableDescribeSiteRequest) MarshalJSON

func (v NullableDescribeSiteRequest) MarshalJSON() ([]byte, error)

func (*NullableDescribeSiteRequest) Set

func (*NullableDescribeSiteRequest) UnmarshalJSON

func (v *NullableDescribeSiteRequest) UnmarshalJSON(src []byte) error

func (*NullableDescribeSiteRequest) Unset

func (v *NullableDescribeSiteRequest) Unset()

type NullableEnvironmentDescription

type NullableEnvironmentDescription struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentDescription) Get

func (NullableEnvironmentDescription) IsSet

func (NullableEnvironmentDescription) MarshalJSON

func (v NullableEnvironmentDescription) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentDescription) Set

func (*NullableEnvironmentDescription) UnmarshalJSON

func (v *NullableEnvironmentDescription) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentDescription) Unset

func (v *NullableEnvironmentDescription) Unset()

type NullableEnvironmentHeader

type NullableEnvironmentHeader struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentHeader

func NewNullableEnvironmentHeader(val *EnvironmentHeader) *NullableEnvironmentHeader

func (NullableEnvironmentHeader) Get

func (NullableEnvironmentHeader) IsSet

func (v NullableEnvironmentHeader) IsSet() bool

func (NullableEnvironmentHeader) MarshalJSON

func (v NullableEnvironmentHeader) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentHeader) Set

func (*NullableEnvironmentHeader) UnmarshalJSON

func (v *NullableEnvironmentHeader) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentHeader) Unset

func (v *NullableEnvironmentHeader) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetLogsEntry

type NullableGetLogsEntry struct {
	// contains filtered or unexported fields
}

func NewNullableGetLogsEntry

func NewNullableGetLogsEntry(val *GetLogsEntry) *NullableGetLogsEntry

func (NullableGetLogsEntry) Get

func (NullableGetLogsEntry) IsSet

func (v NullableGetLogsEntry) IsSet() bool

func (NullableGetLogsEntry) MarshalJSON

func (v NullableGetLogsEntry) MarshalJSON() ([]byte, error)

func (*NullableGetLogsEntry) Set

func (v *NullableGetLogsEntry) Set(val *GetLogsEntry)

func (*NullableGetLogsEntry) UnmarshalJSON

func (v *NullableGetLogsEntry) UnmarshalJSON(src []byte) error

func (*NullableGetLogsEntry) Unset

func (v *NullableGetLogsEntry) Unset()

type NullableGetLogsReply

type NullableGetLogsReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetLogsReply

func NewNullableGetLogsReply(val *GetLogsReply) *NullableGetLogsReply

func (NullableGetLogsReply) Get

func (NullableGetLogsReply) IsSet

func (v NullableGetLogsReply) IsSet() bool

func (NullableGetLogsReply) MarshalJSON

func (v NullableGetLogsReply) MarshalJSON() ([]byte, error)

func (*NullableGetLogsReply) Set

func (v *NullableGetLogsReply) Set(val *GetLogsReply)

func (*NullableGetLogsReply) UnmarshalJSON

func (v *NullableGetLogsReply) UnmarshalJSON(src []byte) error

func (*NullableGetLogsReply) Unset

func (v *NullableGetLogsReply) Unset()

type NullableGetLogsRequest

type NullableGetLogsRequest struct {
	// contains filtered or unexported fields
}

func NewNullableGetLogsRequest

func NewNullableGetLogsRequest(val *GetLogsRequest) *NullableGetLogsRequest

func (NullableGetLogsRequest) Get

func (NullableGetLogsRequest) IsSet

func (v NullableGetLogsRequest) IsSet() bool

func (NullableGetLogsRequest) MarshalJSON

func (v NullableGetLogsRequest) MarshalJSON() ([]byte, error)

func (*NullableGetLogsRequest) Set

func (*NullableGetLogsRequest) UnmarshalJSON

func (v *NullableGetLogsRequest) UnmarshalJSON(src []byte) error

func (*NullableGetLogsRequest) Unset

func (v *NullableGetLogsRequest) Unset()

type NullableGetMetricSamplesReply

type NullableGetMetricSamplesReply struct {
	// contains filtered or unexported fields
}

func (NullableGetMetricSamplesReply) Get

func (NullableGetMetricSamplesReply) IsSet

func (NullableGetMetricSamplesReply) MarshalJSON

func (v NullableGetMetricSamplesReply) MarshalJSON() ([]byte, error)

func (*NullableGetMetricSamplesReply) Set

func (*NullableGetMetricSamplesReply) UnmarshalJSON

func (v *NullableGetMetricSamplesReply) UnmarshalJSON(src []byte) error

func (*NullableGetMetricSamplesReply) Unset

func (v *NullableGetMetricSamplesReply) Unset()

type NullableGetMetricSamplesRequest

type NullableGetMetricSamplesRequest struct {
	// contains filtered or unexported fields
}

func (NullableGetMetricSamplesRequest) Get

func (NullableGetMetricSamplesRequest) IsSet

func (NullableGetMetricSamplesRequest) MarshalJSON

func (v NullableGetMetricSamplesRequest) MarshalJSON() ([]byte, error)

func (*NullableGetMetricSamplesRequest) Set

func (*NullableGetMetricSamplesRequest) UnmarshalJSON

func (v *NullableGetMetricSamplesRequest) UnmarshalJSON(src []byte) error

func (*NullableGetMetricSamplesRequest) Unset

type NullableGetUploadURLReply

type NullableGetUploadURLReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetUploadURLReply

func NewNullableGetUploadURLReply(val *GetUploadURLReply) *NullableGetUploadURLReply

func (NullableGetUploadURLReply) Get

func (NullableGetUploadURLReply) IsSet

func (v NullableGetUploadURLReply) IsSet() bool

func (NullableGetUploadURLReply) MarshalJSON

func (v NullableGetUploadURLReply) MarshalJSON() ([]byte, error)

func (*NullableGetUploadURLReply) Set

func (*NullableGetUploadURLReply) UnmarshalJSON

func (v *NullableGetUploadURLReply) UnmarshalJSON(src []byte) error

func (*NullableGetUploadURLReply) Unset

func (v *NullableGetUploadURLReply) Unset()

type NullableGetUploadURLRequest

type NullableGetUploadURLRequest struct {
	// contains filtered or unexported fields
}

func NewNullableGetUploadURLRequest

func NewNullableGetUploadURLRequest(val *GetUploadURLRequest) *NullableGetUploadURLRequest

func (NullableGetUploadURLRequest) Get

func (NullableGetUploadURLRequest) IsSet

func (NullableGetUploadURLRequest) MarshalJSON

func (v NullableGetUploadURLRequest) MarshalJSON() ([]byte, error)

func (*NullableGetUploadURLRequest) Set

func (*NullableGetUploadURLRequest) UnmarshalJSON

func (v *NullableGetUploadURLRequest) UnmarshalJSON(src []byte) error

func (*NullableGetUploadURLRequest) Unset

func (v *NullableGetUploadURLRequest) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableListApiKeysReply

type NullableListApiKeysReply struct {
	// contains filtered or unexported fields
}

func NewNullableListApiKeysReply

func NewNullableListApiKeysReply(val *ListApiKeysReply) *NullableListApiKeysReply

func (NullableListApiKeysReply) Get

func (NullableListApiKeysReply) IsSet

func (v NullableListApiKeysReply) IsSet() bool

func (NullableListApiKeysReply) MarshalJSON

func (v NullableListApiKeysReply) MarshalJSON() ([]byte, error)

func (*NullableListApiKeysReply) Set

func (*NullableListApiKeysReply) UnmarshalJSON

func (v *NullableListApiKeysReply) UnmarshalJSON(src []byte) error

func (*NullableListApiKeysReply) Unset

func (v *NullableListApiKeysReply) Unset()

type NullableListDatabasesReply

type NullableListDatabasesReply struct {
	// contains filtered or unexported fields
}

func NewNullableListDatabasesReply

func NewNullableListDatabasesReply(val *ListDatabasesReply) *NullableListDatabasesReply

func (NullableListDatabasesReply) Get

func (NullableListDatabasesReply) IsSet

func (v NullableListDatabasesReply) IsSet() bool

func (NullableListDatabasesReply) MarshalJSON

func (v NullableListDatabasesReply) MarshalJSON() ([]byte, error)

func (*NullableListDatabasesReply) Set

func (*NullableListDatabasesReply) UnmarshalJSON

func (v *NullableListDatabasesReply) UnmarshalJSON(src []byte) error

func (*NullableListDatabasesReply) Unset

func (v *NullableListDatabasesReply) Unset()

type NullableListDatabasesRequest

type NullableListDatabasesRequest struct {
	// contains filtered or unexported fields
}

func NewNullableListDatabasesRequest

func NewNullableListDatabasesRequest(val *ListDatabasesRequest) *NullableListDatabasesRequest

func (NullableListDatabasesRequest) Get

func (NullableListDatabasesRequest) IsSet

func (NullableListDatabasesRequest) MarshalJSON

func (v NullableListDatabasesRequest) MarshalJSON() ([]byte, error)

func (*NullableListDatabasesRequest) Set

func (*NullableListDatabasesRequest) UnmarshalJSON

func (v *NullableListDatabasesRequest) UnmarshalJSON(src []byte) error

func (*NullableListDatabasesRequest) Unset

func (v *NullableListDatabasesRequest) Unset()

type NullableListDatastoresReply

type NullableListDatastoresReply struct {
	// contains filtered or unexported fields
}

func NewNullableListDatastoresReply

func NewNullableListDatastoresReply(val *ListDatastoresReply) *NullableListDatastoresReply

func (NullableListDatastoresReply) Get

func (NullableListDatastoresReply) IsSet

func (NullableListDatastoresReply) MarshalJSON

func (v NullableListDatastoresReply) MarshalJSON() ([]byte, error)

func (*NullableListDatastoresReply) Set

func (*NullableListDatastoresReply) UnmarshalJSON

func (v *NullableListDatastoresReply) UnmarshalJSON(src []byte) error

func (*NullableListDatastoresReply) Unset

func (v *NullableListDatastoresReply) Unset()

type NullableListDatastoresRequest

type NullableListDatastoresRequest struct {
	// contains filtered or unexported fields
}

func (NullableListDatastoresRequest) Get

func (NullableListDatastoresRequest) IsSet

func (NullableListDatastoresRequest) MarshalJSON

func (v NullableListDatastoresRequest) MarshalJSON() ([]byte, error)

func (*NullableListDatastoresRequest) Set

func (*NullableListDatastoresRequest) UnmarshalJSON

func (v *NullableListDatastoresRequest) UnmarshalJSON(src []byte) error

func (*NullableListDatastoresRequest) Unset

func (v *NullableListDatastoresRequest) Unset()

type NullableListDeploymentsReply

type NullableListDeploymentsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListDeploymentsReply

func NewNullableListDeploymentsReply(val *ListDeploymentsReply) *NullableListDeploymentsReply

func (NullableListDeploymentsReply) Get

func (NullableListDeploymentsReply) IsSet

func (NullableListDeploymentsReply) MarshalJSON

func (v NullableListDeploymentsReply) MarshalJSON() ([]byte, error)

func (*NullableListDeploymentsReply) Set

func (*NullableListDeploymentsReply) UnmarshalJSON

func (v *NullableListDeploymentsReply) UnmarshalJSON(src []byte) error

func (*NullableListDeploymentsReply) Unset

func (v *NullableListDeploymentsReply) Unset()

type NullableListDeploymentsRequest

type NullableListDeploymentsRequest struct {
	// contains filtered or unexported fields
}

func (NullableListDeploymentsRequest) Get

func (NullableListDeploymentsRequest) IsSet

func (NullableListDeploymentsRequest) MarshalJSON

func (v NullableListDeploymentsRequest) MarshalJSON() ([]byte, error)

func (*NullableListDeploymentsRequest) Set

func (*NullableListDeploymentsRequest) UnmarshalJSON

func (v *NullableListDeploymentsRequest) UnmarshalJSON(src []byte) error

func (*NullableListDeploymentsRequest) Unset

func (v *NullableListDeploymentsRequest) Unset()

type NullableListEnvironmentsReply

type NullableListEnvironmentsReply struct {
	// contains filtered or unexported fields
}

func (NullableListEnvironmentsReply) Get

func (NullableListEnvironmentsReply) IsSet

func (NullableListEnvironmentsReply) MarshalJSON

func (v NullableListEnvironmentsReply) MarshalJSON() ([]byte, error)

func (*NullableListEnvironmentsReply) Set

func (*NullableListEnvironmentsReply) UnmarshalJSON

func (v *NullableListEnvironmentsReply) UnmarshalJSON(src []byte) error

func (*NullableListEnvironmentsReply) Unset

func (v *NullableListEnvironmentsReply) Unset()

type NullableListMetricsEntry

type NullableListMetricsEntry struct {
	// contains filtered or unexported fields
}

func NewNullableListMetricsEntry

func NewNullableListMetricsEntry(val *ListMetricsEntry) *NullableListMetricsEntry

func (NullableListMetricsEntry) Get

func (NullableListMetricsEntry) IsSet

func (v NullableListMetricsEntry) IsSet() bool

func (NullableListMetricsEntry) MarshalJSON

func (v NullableListMetricsEntry) MarshalJSON() ([]byte, error)

func (*NullableListMetricsEntry) Set

func (*NullableListMetricsEntry) UnmarshalJSON

func (v *NullableListMetricsEntry) UnmarshalJSON(src []byte) error

func (*NullableListMetricsEntry) Unset

func (v *NullableListMetricsEntry) Unset()

type NullableListMetricsReply

type NullableListMetricsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListMetricsReply

func NewNullableListMetricsReply(val *ListMetricsReply) *NullableListMetricsReply

func (NullableListMetricsReply) Get

func (NullableListMetricsReply) IsSet

func (v NullableListMetricsReply) IsSet() bool

func (NullableListMetricsReply) MarshalJSON

func (v NullableListMetricsReply) MarshalJSON() ([]byte, error)

func (*NullableListMetricsReply) Set

func (*NullableListMetricsReply) UnmarshalJSON

func (v *NullableListMetricsReply) UnmarshalJSON(src []byte) error

func (*NullableListMetricsReply) Unset

func (v *NullableListMetricsReply) Unset()

type NullableListMetricsRequest

type NullableListMetricsRequest struct {
	// contains filtered or unexported fields
}

func NewNullableListMetricsRequest

func NewNullableListMetricsRequest(val *ListMetricsRequest) *NullableListMetricsRequest

func (NullableListMetricsRequest) Get

func (NullableListMetricsRequest) IsSet

func (v NullableListMetricsRequest) IsSet() bool

func (NullableListMetricsRequest) MarshalJSON

func (v NullableListMetricsRequest) MarshalJSON() ([]byte, error)

func (*NullableListMetricsRequest) Set

func (*NullableListMetricsRequest) UnmarshalJSON

func (v *NullableListMetricsRequest) UnmarshalJSON(src []byte) error

func (*NullableListMetricsRequest) Unset

func (v *NullableListMetricsRequest) Unset()

type NullableListPackagesReply

type NullableListPackagesReply struct {
	// contains filtered or unexported fields
}

func NewNullableListPackagesReply

func NewNullableListPackagesReply(val *ListPackagesReply) *NullableListPackagesReply

func (NullableListPackagesReply) Get

func (NullableListPackagesReply) IsSet

func (v NullableListPackagesReply) IsSet() bool

func (NullableListPackagesReply) MarshalJSON

func (v NullableListPackagesReply) MarshalJSON() ([]byte, error)

func (*NullableListPackagesReply) Set

func (*NullableListPackagesReply) UnmarshalJSON

func (v *NullableListPackagesReply) UnmarshalJSON(src []byte) error

func (*NullableListPackagesReply) Unset

func (v *NullableListPackagesReply) Unset()

type NullableListPackagesReplyListPackagesItem

type NullableListPackagesReplyListPackagesItem struct {
	// contains filtered or unexported fields
}

func (NullableListPackagesReplyListPackagesItem) Get

func (NullableListPackagesReplyListPackagesItem) IsSet

func (NullableListPackagesReplyListPackagesItem) MarshalJSON

func (*NullableListPackagesReplyListPackagesItem) Set

func (*NullableListPackagesReplyListPackagesItem) UnmarshalJSON

func (v *NullableListPackagesReplyListPackagesItem) UnmarshalJSON(src []byte) error

func (*NullableListPackagesReplyListPackagesItem) Unset

type NullableListPackagesRequest

type NullableListPackagesRequest struct {
	// contains filtered or unexported fields
}

func NewNullableListPackagesRequest

func NewNullableListPackagesRequest(val *ListPackagesRequest) *NullableListPackagesRequest

func (NullableListPackagesRequest) Get

func (NullableListPackagesRequest) IsSet

func (NullableListPackagesRequest) MarshalJSON

func (v NullableListPackagesRequest) MarshalJSON() ([]byte, error)

func (*NullableListPackagesRequest) Set

func (*NullableListPackagesRequest) UnmarshalJSON

func (v *NullableListPackagesRequest) UnmarshalJSON(src []byte) error

func (*NullableListPackagesRequest) Unset

func (v *NullableListPackagesRequest) Unset()

type NullableListProjectsReply

type NullableListProjectsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListProjectsReply

func NewNullableListProjectsReply(val *ListProjectsReply) *NullableListProjectsReply

func (NullableListProjectsReply) Get

func (NullableListProjectsReply) IsSet

func (v NullableListProjectsReply) IsSet() bool

func (NullableListProjectsReply) MarshalJSON

func (v NullableListProjectsReply) MarshalJSON() ([]byte, error)

func (*NullableListProjectsReply) Set

func (*NullableListProjectsReply) UnmarshalJSON

func (v *NullableListProjectsReply) UnmarshalJSON(src []byte) error

func (*NullableListProjectsReply) Unset

func (v *NullableListProjectsReply) Unset()

type NullableListServicesReply

type NullableListServicesReply struct {
	// contains filtered or unexported fields
}

func NewNullableListServicesReply

func NewNullableListServicesReply(val *ListServicesReply) *NullableListServicesReply

func (NullableListServicesReply) Get

func (NullableListServicesReply) IsSet

func (v NullableListServicesReply) IsSet() bool

func (NullableListServicesReply) MarshalJSON

func (v NullableListServicesReply) MarshalJSON() ([]byte, error)

func (*NullableListServicesReply) Set

func (*NullableListServicesReply) UnmarshalJSON

func (v *NullableListServicesReply) UnmarshalJSON(src []byte) error

func (*NullableListServicesReply) Unset

func (v *NullableListServicesReply) Unset()

type NullableListServicesRequest

type NullableListServicesRequest struct {
	// contains filtered or unexported fields
}

func NewNullableListServicesRequest

func NewNullableListServicesRequest(val *ListServicesRequest) *NullableListServicesRequest

func (NullableListServicesRequest) Get

func (NullableListServicesRequest) IsSet

func (NullableListServicesRequest) MarshalJSON

func (v NullableListServicesRequest) MarshalJSON() ([]byte, error)

func (*NullableListServicesRequest) Set

func (*NullableListServicesRequest) UnmarshalJSON

func (v *NullableListServicesRequest) UnmarshalJSON(src []byte) error

func (*NullableListServicesRequest) Unset

func (v *NullableListServicesRequest) Unset()

type NullableMetricsFormat

type NullableMetricsFormat struct {
	// contains filtered or unexported fields
}

func NewNullableMetricsFormat

func NewNullableMetricsFormat(val *MetricsFormat) *NullableMetricsFormat

func (NullableMetricsFormat) Get

func (NullableMetricsFormat) IsSet

func (v NullableMetricsFormat) IsSet() bool

func (NullableMetricsFormat) MarshalJSON

func (v NullableMetricsFormat) MarshalJSON() ([]byte, error)

func (*NullableMetricsFormat) Set

func (v *NullableMetricsFormat) Set(val *MetricsFormat)

func (*NullableMetricsFormat) UnmarshalJSON

func (v *NullableMetricsFormat) UnmarshalJSON(src []byte) error

func (*NullableMetricsFormat) Unset

func (v *NullableMetricsFormat) Unset()

type NullableMetricsScope

type NullableMetricsScope struct {
	// contains filtered or unexported fields
}

func NewNullableMetricsScope

func NewNullableMetricsScope(val *MetricsScope) *NullableMetricsScope

func (NullableMetricsScope) Get

func (NullableMetricsScope) IsSet

func (v NullableMetricsScope) IsSet() bool

func (NullableMetricsScope) MarshalJSON

func (v NullableMetricsScope) MarshalJSON() ([]byte, error)

func (*NullableMetricsScope) Set

func (v *NullableMetricsScope) Set(val *MetricsScope)

func (*NullableMetricsScope) UnmarshalJSON

func (v *NullableMetricsScope) UnmarshalJSON(src []byte) error

func (*NullableMetricsScope) Unset

func (v *NullableMetricsScope) Unset()

type NullablePackageDescription

type NullablePackageDescription struct {
	// contains filtered or unexported fields
}

func NewNullablePackageDescription

func NewNullablePackageDescription(val *PackageDescription) *NullablePackageDescription

func (NullablePackageDescription) Get

func (NullablePackageDescription) IsSet

func (v NullablePackageDescription) IsSet() bool

func (NullablePackageDescription) MarshalJSON

func (v NullablePackageDescription) MarshalJSON() ([]byte, error)

func (*NullablePackageDescription) Set

func (*NullablePackageDescription) UnmarshalJSON

func (v *NullablePackageDescription) UnmarshalJSON(src []byte) error

func (*NullablePackageDescription) Unset

func (v *NullablePackageDescription) Unset()

type NullablePackageState

type NullablePackageState struct {
	// contains filtered or unexported fields
}

func NewNullablePackageState

func NewNullablePackageState(val *PackageState) *NullablePackageState

func (NullablePackageState) Get

func (NullablePackageState) IsSet

func (v NullablePackageState) IsSet() bool

func (NullablePackageState) MarshalJSON

func (v NullablePackageState) MarshalJSON() ([]byte, error)

func (*NullablePackageState) Set

func (v *NullablePackageState) Set(val *PackageState)

func (*NullablePackageState) UnmarshalJSON

func (v *NullablePackageState) UnmarshalJSON(src []byte) error

func (*NullablePackageState) Unset

func (v *NullablePackageState) Unset()

type NullableProjEnvHeader

type NullableProjEnvHeader struct {
	// contains filtered or unexported fields
}

func NewNullableProjEnvHeader

func NewNullableProjEnvHeader(val *ProjEnvHeader) *NullableProjEnvHeader

func (NullableProjEnvHeader) Get

func (NullableProjEnvHeader) IsSet

func (v NullableProjEnvHeader) IsSet() bool

func (NullableProjEnvHeader) MarshalJSON

func (v NullableProjEnvHeader) MarshalJSON() ([]byte, error)

func (*NullableProjEnvHeader) Set

func (v *NullableProjEnvHeader) Set(val *ProjEnvHeader)

func (*NullableProjEnvHeader) UnmarshalJSON

func (v *NullableProjEnvHeader) UnmarshalJSON(src []byte) error

func (*NullableProjEnvHeader) Unset

func (v *NullableProjEnvHeader) Unset()

type NullableProjectDescription

type NullableProjectDescription struct {
	// contains filtered or unexported fields
}

func NewNullableProjectDescription

func NewNullableProjectDescription(val *ProjectDescription) *NullableProjectDescription

func (NullableProjectDescription) Get

func (NullableProjectDescription) IsSet

func (v NullableProjectDescription) IsSet() bool

func (NullableProjectDescription) MarshalJSON

func (v NullableProjectDescription) MarshalJSON() ([]byte, error)

func (*NullableProjectDescription) Set

func (*NullableProjectDescription) UnmarshalJSON

func (v *NullableProjectDescription) UnmarshalJSON(src []byte) error

func (*NullableProjectDescription) Unset

func (v *NullableProjectDescription) Unset()

type NullableProjectHeader

type NullableProjectHeader struct {
	// contains filtered or unexported fields
}

func NewNullableProjectHeader

func NewNullableProjectHeader(val *ProjectHeader) *NullableProjectHeader

func (NullableProjectHeader) Get

func (NullableProjectHeader) IsSet

func (v NullableProjectHeader) IsSet() bool

func (NullableProjectHeader) MarshalJSON

func (v NullableProjectHeader) MarshalJSON() ([]byte, error)

func (*NullableProjectHeader) Set

func (v *NullableProjectHeader) Set(val *ProjectHeader)

func (*NullableProjectHeader) UnmarshalJSON

func (v *NullableProjectHeader) UnmarshalJSON(src []byte) error

func (*NullableProjectHeader) Unset

func (v *NullableProjectHeader) Unset()

type NullableProjectState

type NullableProjectState struct {
	// contains filtered or unexported fields
}

func NewNullableProjectState

func NewNullableProjectState(val *ProjectState) *NullableProjectState

func (NullableProjectState) Get

func (NullableProjectState) IsSet

func (v NullableProjectState) IsSet() bool

func (NullableProjectState) MarshalJSON

func (v NullableProjectState) MarshalJSON() ([]byte, error)

func (*NullableProjectState) Set

func (v *NullableProjectState) Set(val *ProjectState)

func (*NullableProjectState) UnmarshalJSON

func (v *NullableProjectState) UnmarshalJSON(src []byte) error

func (*NullableProjectState) Unset

func (v *NullableProjectState) Unset()

type NullableProtobufAny

type NullableProtobufAny struct {
	// contains filtered or unexported fields
}

func NewNullableProtobufAny

func NewNullableProtobufAny(val *ProtobufAny) *NullableProtobufAny

func (NullableProtobufAny) Get

func (NullableProtobufAny) IsSet

func (v NullableProtobufAny) IsSet() bool

func (NullableProtobufAny) MarshalJSON

func (v NullableProtobufAny) MarshalJSON() ([]byte, error)

func (*NullableProtobufAny) Set

func (v *NullableProtobufAny) Set(val *ProtobufAny)

func (*NullableProtobufAny) UnmarshalJSON

func (v *NullableProtobufAny) UnmarshalJSON(src []byte) error

func (*NullableProtobufAny) Unset

func (v *NullableProtobufAny) Unset()

type NullableRpcStatus

type NullableRpcStatus struct {
	// contains filtered or unexported fields
}

func NewNullableRpcStatus

func NewNullableRpcStatus(val *RpcStatus) *NullableRpcStatus

func (NullableRpcStatus) Get

func (v NullableRpcStatus) Get() *RpcStatus

func (NullableRpcStatus) IsSet

func (v NullableRpcStatus) IsSet() bool

func (NullableRpcStatus) MarshalJSON

func (v NullableRpcStatus) MarshalJSON() ([]byte, error)

func (*NullableRpcStatus) Set

func (v *NullableRpcStatus) Set(val *RpcStatus)

func (*NullableRpcStatus) UnmarshalJSON

func (v *NullableRpcStatus) UnmarshalJSON(src []byte) error

func (*NullableRpcStatus) Unset

func (v *NullableRpcStatus) Unset()

type NullableServiceDescription

type NullableServiceDescription struct {
	// contains filtered or unexported fields
}

func NewNullableServiceDescription

func NewNullableServiceDescription(val *ServiceDescription) *NullableServiceDescription

func (NullableServiceDescription) Get

func (NullableServiceDescription) IsSet

func (v NullableServiceDescription) IsSet() bool

func (NullableServiceDescription) MarshalJSON

func (v NullableServiceDescription) MarshalJSON() ([]byte, error)

func (*NullableServiceDescription) Set

func (*NullableServiceDescription) UnmarshalJSON

func (v *NullableServiceDescription) UnmarshalJSON(src []byte) error

func (*NullableServiceDescription) Unset

func (v *NullableServiceDescription) Unset()

type NullableServiceHeader

type NullableServiceHeader struct {
	// contains filtered or unexported fields
}

func NewNullableServiceHeader

func NewNullableServiceHeader(val *ServiceHeader) *NullableServiceHeader

func (NullableServiceHeader) Get

func (NullableServiceHeader) IsSet

func (v NullableServiceHeader) IsSet() bool

func (NullableServiceHeader) MarshalJSON

func (v NullableServiceHeader) MarshalJSON() ([]byte, error)

func (*NullableServiceHeader) Set

func (v *NullableServiceHeader) Set(val *ServiceHeader)

func (*NullableServiceHeader) UnmarshalJSON

func (v *NullableServiceHeader) UnmarshalJSON(src []byte) error

func (*NullableServiceHeader) Unset

func (v *NullableServiceHeader) Unset()

type NullableServiceRunnerResult

type NullableServiceRunnerResult struct {
	// contains filtered or unexported fields
}

func NewNullableServiceRunnerResult

func NewNullableServiceRunnerResult(val *ServiceRunnerResult) *NullableServiceRunnerResult

func (NullableServiceRunnerResult) Get

func (NullableServiceRunnerResult) IsSet

func (NullableServiceRunnerResult) MarshalJSON

func (v NullableServiceRunnerResult) MarshalJSON() ([]byte, error)

func (*NullableServiceRunnerResult) Set

func (*NullableServiceRunnerResult) UnmarshalJSON

func (v *NullableServiceRunnerResult) UnmarshalJSON(src []byte) error

func (*NullableServiceRunnerResult) Unset

func (v *NullableServiceRunnerResult) Unset()

type NullableServiceRunnerStatus

type NullableServiceRunnerStatus struct {
	// contains filtered or unexported fields
}

func NewNullableServiceRunnerStatus

func NewNullableServiceRunnerStatus(val *ServiceRunnerStatus) *NullableServiceRunnerStatus

func (NullableServiceRunnerStatus) Get

func (NullableServiceRunnerStatus) IsSet

func (NullableServiceRunnerStatus) MarshalJSON

func (v NullableServiceRunnerStatus) MarshalJSON() ([]byte, error)

func (*NullableServiceRunnerStatus) Set

func (*NullableServiceRunnerStatus) UnmarshalJSON

func (v *NullableServiceRunnerStatus) UnmarshalJSON(src []byte) error

func (*NullableServiceRunnerStatus) Unset

func (v *NullableServiceRunnerStatus) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUploadPackageReply

type NullableUploadPackageReply struct {
	// contains filtered or unexported fields
}

func NewNullableUploadPackageReply

func NewNullableUploadPackageReply(val *UploadPackageReply) *NullableUploadPackageReply

func (NullableUploadPackageReply) Get

func (NullableUploadPackageReply) IsSet

func (v NullableUploadPackageReply) IsSet() bool

func (NullableUploadPackageReply) MarshalJSON

func (v NullableUploadPackageReply) MarshalJSON() ([]byte, error)

func (*NullableUploadPackageReply) Set

func (*NullableUploadPackageReply) UnmarshalJSON

func (v *NullableUploadPackageReply) UnmarshalJSON(src []byte) error

func (*NullableUploadPackageReply) Unset

func (v *NullableUploadPackageReply) Unset()

type NullableUploadPackageRequest

type NullableUploadPackageRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUploadPackageRequest

func NewNullableUploadPackageRequest(val *UploadPackageRequest) *NullableUploadPackageRequest

func (NullableUploadPackageRequest) Get

func (NullableUploadPackageRequest) IsSet

func (NullableUploadPackageRequest) MarshalJSON

func (v NullableUploadPackageRequest) MarshalJSON() ([]byte, error)

func (*NullableUploadPackageRequest) Set

func (*NullableUploadPackageRequest) UnmarshalJSON

func (v *NullableUploadPackageRequest) UnmarshalJSON(src []byte) error

func (*NullableUploadPackageRequest) Unset

func (v *NullableUploadPackageRequest) Unset()

type PackageDescription

type PackageDescription struct {
	PackageId   *string       `json:"packageId,omitempty"`
	ProjId      *string       `json:"projId,omitempty"`
	State       *PackageState `json:"state,omitempty"`
	UploadTime  *string       `json:"uploadTime,omitempty"`
	PackageSize *string       `json:"packageSize,omitempty"`
}

PackageDescription struct for PackageDescription

func NewPackageDescription

func NewPackageDescription() *PackageDescription

NewPackageDescription instantiates a new PackageDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPackageDescriptionWithDefaults

func NewPackageDescriptionWithDefaults() *PackageDescription

NewPackageDescriptionWithDefaults instantiates a new PackageDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PackageDescription) GetPackageId

func (o *PackageDescription) GetPackageId() string

GetPackageId returns the PackageId field value if set, zero value otherwise.

func (*PackageDescription) GetPackageIdOk

func (o *PackageDescription) GetPackageIdOk() (*string, bool)

GetPackageIdOk returns a tuple with the PackageId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PackageDescription) GetPackageSize

func (o *PackageDescription) GetPackageSize() string

GetPackageSize returns the PackageSize field value if set, zero value otherwise.

func (*PackageDescription) GetPackageSizeOk

func (o *PackageDescription) GetPackageSizeOk() (*string, bool)

GetPackageSizeOk returns a tuple with the PackageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PackageDescription) GetProjId

func (o *PackageDescription) GetProjId() string

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*PackageDescription) GetProjIdOk

func (o *PackageDescription) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PackageDescription) GetState

func (o *PackageDescription) GetState() PackageState

GetState returns the State field value if set, zero value otherwise.

func (*PackageDescription) GetStateOk

func (o *PackageDescription) GetStateOk() (*PackageState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PackageDescription) GetUploadTime

func (o *PackageDescription) GetUploadTime() string

GetUploadTime returns the UploadTime field value if set, zero value otherwise.

func (*PackageDescription) GetUploadTimeOk

func (o *PackageDescription) GetUploadTimeOk() (*string, bool)

GetUploadTimeOk returns a tuple with the UploadTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PackageDescription) HasPackageId

func (o *PackageDescription) HasPackageId() bool

HasPackageId returns a boolean if a field has been set.

func (*PackageDescription) HasPackageSize

func (o *PackageDescription) HasPackageSize() bool

HasPackageSize returns a boolean if a field has been set.

func (*PackageDescription) HasProjId

func (o *PackageDescription) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (*PackageDescription) HasState

func (o *PackageDescription) HasState() bool

HasState returns a boolean if a field has been set.

func (*PackageDescription) HasUploadTime

func (o *PackageDescription) HasUploadTime() bool

HasUploadTime returns a boolean if a field has been set.

func (PackageDescription) MarshalJSON

func (o PackageDescription) MarshalJSON() ([]byte, error)

func (*PackageDescription) SetPackageId

func (o *PackageDescription) SetPackageId(v string)

SetPackageId gets a reference to the given string and assigns it to the PackageId field.

func (*PackageDescription) SetPackageSize

func (o *PackageDescription) SetPackageSize(v string)

SetPackageSize gets a reference to the given string and assigns it to the PackageSize field.

func (*PackageDescription) SetProjId

func (o *PackageDescription) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (*PackageDescription) SetState

func (o *PackageDescription) SetState(v PackageState)

SetState gets a reference to the given PackageState and assigns it to the State field.

func (*PackageDescription) SetUploadTime

func (o *PackageDescription) SetUploadTime(v string)

SetUploadTime gets a reference to the given string and assigns it to the UploadTime field.

func (PackageDescription) ToMap

func (o PackageDescription) ToMap() (map[string]interface{}, error)

type PackageState

type PackageState string

PackageState the package passed validation and is in the process of being built - PKG_SUPPORT_NEEDED: something went wrong and Bopmatic support is investigating - PKG_DELETED: the package has been deleted - BUILT: the package was successfully built and is eligible to be deployed - UNKNOWN_PKG_STATE: MAX_INT

const (
	INVALID_PKG_STATE  PackageState = "INVALID_PKG_STATE"
	UPLOADING          PackageState = "UPLOADING"
	UPLOADED           PackageState = "UPLOADED"
	PKG_VALIDATING     PackageState = "PKG_VALIDATING"
	INVALID            PackageState = "INVALID"
	PKG_BUILDING       PackageState = "PKG_BUILDING"
	PKG_SUPPORT_NEEDED PackageState = "PKG_SUPPORT_NEEDED"
	PKG_DELETED        PackageState = "PKG_DELETED"
	BUILT              PackageState = "BUILT"
	UNKNOWN_PKG_STATE  PackageState = "UNKNOWN_PKG_STATE"
)

List of PackageState

func NewPackageStateFromValue

func NewPackageStateFromValue(v string) (*PackageState, error)

NewPackageStateFromValue returns a pointer to a valid PackageState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PackageState) IsValid

func (v PackageState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PackageState) Ptr

func (v PackageState) Ptr() *PackageState

Ptr returns reference to PackageState value

func (*PackageState) UnmarshalJSON

func (v *PackageState) UnmarshalJSON(src []byte) error

type ProjEnvHeader

type ProjEnvHeader struct {
	ProjId *string `json:"projId,omitempty"`
	EnvId  *string `json:"envId,omitempty"`
}

ProjEnvHeader struct for ProjEnvHeader

func NewProjEnvHeader

func NewProjEnvHeader() *ProjEnvHeader

NewProjEnvHeader instantiates a new ProjEnvHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjEnvHeaderWithDefaults

func NewProjEnvHeaderWithDefaults() *ProjEnvHeader

NewProjEnvHeaderWithDefaults instantiates a new ProjEnvHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjEnvHeader) GetEnvId

func (o *ProjEnvHeader) GetEnvId() string

GetEnvId returns the EnvId field value if set, zero value otherwise.

func (*ProjEnvHeader) GetEnvIdOk

func (o *ProjEnvHeader) GetEnvIdOk() (*string, bool)

GetEnvIdOk returns a tuple with the EnvId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjEnvHeader) GetProjId

func (o *ProjEnvHeader) GetProjId() string

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*ProjEnvHeader) GetProjIdOk

func (o *ProjEnvHeader) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjEnvHeader) HasEnvId

func (o *ProjEnvHeader) HasEnvId() bool

HasEnvId returns a boolean if a field has been set.

func (*ProjEnvHeader) HasProjId

func (o *ProjEnvHeader) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (ProjEnvHeader) MarshalJSON

func (o ProjEnvHeader) MarshalJSON() ([]byte, error)

func (*ProjEnvHeader) SetEnvId

func (o *ProjEnvHeader) SetEnvId(v string)

SetEnvId gets a reference to the given string and assigns it to the EnvId field.

func (*ProjEnvHeader) SetProjId

func (o *ProjEnvHeader) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (ProjEnvHeader) ToMap

func (o ProjEnvHeader) ToMap() (map[string]interface{}, error)

type ProjectDescription

type ProjectDescription struct {
	Id               *string        `json:"id,omitempty"`
	Header           *ProjectHeader `json:"header,omitempty"`
	State            *ProjectState  `json:"state,omitempty"`
	CreateTime       *string        `json:"createTime,omitempty"`
	ActiveDeployIds  []string       `json:"activeDeployIds,omitempty"`
	PendingDeployIds []string       `json:"pendingDeployIds,omitempty"`
}

ProjectDescription struct for ProjectDescription

func NewProjectDescription

func NewProjectDescription() *ProjectDescription

NewProjectDescription instantiates a new ProjectDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectDescriptionWithDefaults

func NewProjectDescriptionWithDefaults() *ProjectDescription

NewProjectDescriptionWithDefaults instantiates a new ProjectDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectDescription) GetActiveDeployIds

func (o *ProjectDescription) GetActiveDeployIds() []string

GetActiveDeployIds returns the ActiveDeployIds field value if set, zero value otherwise.

func (*ProjectDescription) GetActiveDeployIdsOk

func (o *ProjectDescription) GetActiveDeployIdsOk() ([]string, bool)

GetActiveDeployIdsOk returns a tuple with the ActiveDeployIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectDescription) GetCreateTime

func (o *ProjectDescription) GetCreateTime() string

GetCreateTime returns the CreateTime field value if set, zero value otherwise.

func (*ProjectDescription) GetCreateTimeOk

func (o *ProjectDescription) GetCreateTimeOk() (*string, bool)

GetCreateTimeOk returns a tuple with the CreateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectDescription) GetHeader

func (o *ProjectDescription) GetHeader() ProjectHeader

GetHeader returns the Header field value if set, zero value otherwise.

func (*ProjectDescription) GetHeaderOk

func (o *ProjectDescription) GetHeaderOk() (*ProjectHeader, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectDescription) GetId

func (o *ProjectDescription) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ProjectDescription) GetIdOk

func (o *ProjectDescription) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectDescription) GetPendingDeployIds

func (o *ProjectDescription) GetPendingDeployIds() []string

GetPendingDeployIds returns the PendingDeployIds field value if set, zero value otherwise.

func (*ProjectDescription) GetPendingDeployIdsOk

func (o *ProjectDescription) GetPendingDeployIdsOk() ([]string, bool)

GetPendingDeployIdsOk returns a tuple with the PendingDeployIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectDescription) GetState

func (o *ProjectDescription) GetState() ProjectState

GetState returns the State field value if set, zero value otherwise.

func (*ProjectDescription) GetStateOk

func (o *ProjectDescription) GetStateOk() (*ProjectState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectDescription) HasActiveDeployIds

func (o *ProjectDescription) HasActiveDeployIds() bool

HasActiveDeployIds returns a boolean if a field has been set.

func (*ProjectDescription) HasCreateTime

func (o *ProjectDescription) HasCreateTime() bool

HasCreateTime returns a boolean if a field has been set.

func (*ProjectDescription) HasHeader

func (o *ProjectDescription) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*ProjectDescription) HasId

func (o *ProjectDescription) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProjectDescription) HasPendingDeployIds

func (o *ProjectDescription) HasPendingDeployIds() bool

HasPendingDeployIds returns a boolean if a field has been set.

func (*ProjectDescription) HasState

func (o *ProjectDescription) HasState() bool

HasState returns a boolean if a field has been set.

func (ProjectDescription) MarshalJSON

func (o ProjectDescription) MarshalJSON() ([]byte, error)

func (*ProjectDescription) SetActiveDeployIds

func (o *ProjectDescription) SetActiveDeployIds(v []string)

SetActiveDeployIds gets a reference to the given []string and assigns it to the ActiveDeployIds field.

func (*ProjectDescription) SetCreateTime

func (o *ProjectDescription) SetCreateTime(v string)

SetCreateTime gets a reference to the given string and assigns it to the CreateTime field.

func (*ProjectDescription) SetHeader

func (o *ProjectDescription) SetHeader(v ProjectHeader)

SetHeader gets a reference to the given ProjectHeader and assigns it to the Header field.

func (*ProjectDescription) SetId

func (o *ProjectDescription) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ProjectDescription) SetPendingDeployIds

func (o *ProjectDescription) SetPendingDeployIds(v []string)

SetPendingDeployIds gets a reference to the given []string and assigns it to the PendingDeployIds field.

func (*ProjectDescription) SetState

func (o *ProjectDescription) SetState(v ProjectState)

SetState gets a reference to the given ProjectState and assigns it to the State field.

func (ProjectDescription) ToMap

func (o ProjectDescription) ToMap() (map[string]interface{}, error)

type ProjectHeader

type ProjectHeader struct {
	Name      *string `json:"name,omitempty"`
	DnsPrefix *string `json:"dnsPrefix,omitempty"`
	DnsDomain *string `json:"dnsDomain,omitempty"`
}

ProjectHeader struct for ProjectHeader

func NewProjectHeader

func NewProjectHeader() *ProjectHeader

NewProjectHeader instantiates a new ProjectHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectHeaderWithDefaults

func NewProjectHeaderWithDefaults() *ProjectHeader

NewProjectHeaderWithDefaults instantiates a new ProjectHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectHeader) GetDnsDomain

func (o *ProjectHeader) GetDnsDomain() string

GetDnsDomain returns the DnsDomain field value if set, zero value otherwise.

func (*ProjectHeader) GetDnsDomainOk

func (o *ProjectHeader) GetDnsDomainOk() (*string, bool)

GetDnsDomainOk returns a tuple with the DnsDomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectHeader) GetDnsPrefix

func (o *ProjectHeader) GetDnsPrefix() string

GetDnsPrefix returns the DnsPrefix field value if set, zero value otherwise.

func (*ProjectHeader) GetDnsPrefixOk

func (o *ProjectHeader) GetDnsPrefixOk() (*string, bool)

GetDnsPrefixOk returns a tuple with the DnsPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectHeader) GetName

func (o *ProjectHeader) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ProjectHeader) GetNameOk

func (o *ProjectHeader) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectHeader) HasDnsDomain

func (o *ProjectHeader) HasDnsDomain() bool

HasDnsDomain returns a boolean if a field has been set.

func (*ProjectHeader) HasDnsPrefix

func (o *ProjectHeader) HasDnsPrefix() bool

HasDnsPrefix returns a boolean if a field has been set.

func (*ProjectHeader) HasName

func (o *ProjectHeader) HasName() bool

HasName returns a boolean if a field has been set.

func (ProjectHeader) MarshalJSON

func (o ProjectHeader) MarshalJSON() ([]byte, error)

func (*ProjectHeader) SetDnsDomain

func (o *ProjectHeader) SetDnsDomain(v string)

SetDnsDomain gets a reference to the given string and assigns it to the DnsDomain field.

func (*ProjectHeader) SetDnsPrefix

func (o *ProjectHeader) SetDnsPrefix(v string)

SetDnsPrefix gets a reference to the given string and assigns it to the DnsPrefix field.

func (*ProjectHeader) SetName

func (o *ProjectHeader) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ProjectHeader) ToMap

func (o ProjectHeader) ToMap() (map[string]interface{}, error)

type ProjectState

type ProjectState string

ProjectState the model 'ProjectState'

const (
	INVALID_PROJ_STATE ProjectState = "INVALID_PROJ_STATE"
	INACTIVE           ProjectState = "INACTIVE"
	ACTIVE             ProjectState = "ACTIVE"
	PROJ_STATE_DELETED ProjectState = "PROJ_STATE_DELETED"
	UNKNOWN_PROJ_STATE ProjectState = "UNKNOWN_PROJ_STATE"
)

List of ProjectState

func NewProjectStateFromValue

func NewProjectStateFromValue(v string) (*ProjectState, error)

NewProjectStateFromValue returns a pointer to a valid ProjectState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProjectState) IsValid

func (v ProjectState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProjectState) Ptr

func (v ProjectState) Ptr() *ProjectState

Ptr returns reference to ProjectState value

func (*ProjectState) UnmarshalJSON

func (v *ProjectState) UnmarshalJSON(src []byte) error

type ProtobufAny

type ProtobufAny struct {
	Type                 *string `json:"@type,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProtobufAny struct for ProtobufAny

func NewProtobufAny

func NewProtobufAny() *ProtobufAny

NewProtobufAny instantiates a new ProtobufAny object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProtobufAnyWithDefaults

func NewProtobufAnyWithDefaults() *ProtobufAny

NewProtobufAnyWithDefaults instantiates a new ProtobufAny object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProtobufAny) GetType

func (o *ProtobufAny) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProtobufAny) GetTypeOk

func (o *ProtobufAny) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProtobufAny) HasType

func (o *ProtobufAny) HasType() bool

HasType returns a boolean if a field has been set.

func (ProtobufAny) MarshalJSON

func (o ProtobufAny) MarshalJSON() ([]byte, error)

func (*ProtobufAny) SetType

func (o *ProtobufAny) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProtobufAny) ToMap

func (o ProtobufAny) ToMap() (map[string]interface{}, error)

func (*ProtobufAny) UnmarshalJSON

func (o *ProtobufAny) UnmarshalJSON(data []byte) (err error)

type RpcStatus

type RpcStatus struct {
	Code    *int32        `json:"code,omitempty"`
	Message *string       `json:"message,omitempty"`
	Details []ProtobufAny `json:"details,omitempty"`
}

RpcStatus struct for RpcStatus

func NewRpcStatus

func NewRpcStatus() *RpcStatus

NewRpcStatus instantiates a new RpcStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRpcStatusWithDefaults

func NewRpcStatusWithDefaults() *RpcStatus

NewRpcStatusWithDefaults instantiates a new RpcStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RpcStatus) GetCode

func (o *RpcStatus) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*RpcStatus) GetCodeOk

func (o *RpcStatus) GetCodeOk() (*int32, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RpcStatus) GetDetails

func (o *RpcStatus) GetDetails() []ProtobufAny

GetDetails returns the Details field value if set, zero value otherwise.

func (*RpcStatus) GetDetailsOk

func (o *RpcStatus) GetDetailsOk() ([]ProtobufAny, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RpcStatus) GetMessage

func (o *RpcStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RpcStatus) GetMessageOk

func (o *RpcStatus) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RpcStatus) HasCode

func (o *RpcStatus) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*RpcStatus) HasDetails

func (o *RpcStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*RpcStatus) HasMessage

func (o *RpcStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (RpcStatus) MarshalJSON

func (o RpcStatus) MarshalJSON() ([]byte, error)

func (*RpcStatus) SetCode

func (o *RpcStatus) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*RpcStatus) SetDetails

func (o *RpcStatus) SetDetails(v []ProtobufAny)

SetDetails gets a reference to the given []ProtobufAny and assigns it to the Details field.

func (*RpcStatus) SetMessage

func (o *RpcStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (RpcStatus) ToMap

func (o RpcStatus) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceDescription

type ServiceDescription struct {
	SvcHeader      *ServiceHeader `json:"svcHeader,omitempty"`
	RpcEndpoints   []string       `json:"rpcEndpoints,omitempty"`
	DatabaseNames  []string       `json:"databaseNames,omitempty"`
	DatastoreNames []string       `json:"datastoreNames,omitempty"`
	ApiDef         *string        `json:"apiDef,omitempty"`
	Port           *string        `json:"port,omitempty"`
}

ServiceDescription struct for ServiceDescription

func NewServiceDescription

func NewServiceDescription() *ServiceDescription

NewServiceDescription instantiates a new ServiceDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceDescriptionWithDefaults

func NewServiceDescriptionWithDefaults() *ServiceDescription

NewServiceDescriptionWithDefaults instantiates a new ServiceDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceDescription) GetApiDef

func (o *ServiceDescription) GetApiDef() string

GetApiDef returns the ApiDef field value if set, zero value otherwise.

func (*ServiceDescription) GetApiDefOk

func (o *ServiceDescription) GetApiDefOk() (*string, bool)

GetApiDefOk returns a tuple with the ApiDef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDescription) GetDatabaseNames

func (o *ServiceDescription) GetDatabaseNames() []string

GetDatabaseNames returns the DatabaseNames field value if set, zero value otherwise.

func (*ServiceDescription) GetDatabaseNamesOk

func (o *ServiceDescription) GetDatabaseNamesOk() ([]string, bool)

GetDatabaseNamesOk returns a tuple with the DatabaseNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDescription) GetDatastoreNames

func (o *ServiceDescription) GetDatastoreNames() []string

GetDatastoreNames returns the DatastoreNames field value if set, zero value otherwise.

func (*ServiceDescription) GetDatastoreNamesOk

func (o *ServiceDescription) GetDatastoreNamesOk() ([]string, bool)

GetDatastoreNamesOk returns a tuple with the DatastoreNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDescription) GetPort

func (o *ServiceDescription) GetPort() string

GetPort returns the Port field value if set, zero value otherwise.

func (*ServiceDescription) GetPortOk

func (o *ServiceDescription) GetPortOk() (*string, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDescription) GetRpcEndpoints

func (o *ServiceDescription) GetRpcEndpoints() []string

GetRpcEndpoints returns the RpcEndpoints field value if set, zero value otherwise.

func (*ServiceDescription) GetRpcEndpointsOk

func (o *ServiceDescription) GetRpcEndpointsOk() ([]string, bool)

GetRpcEndpointsOk returns a tuple with the RpcEndpoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDescription) GetSvcHeader

func (o *ServiceDescription) GetSvcHeader() ServiceHeader

GetSvcHeader returns the SvcHeader field value if set, zero value otherwise.

func (*ServiceDescription) GetSvcHeaderOk

func (o *ServiceDescription) GetSvcHeaderOk() (*ServiceHeader, bool)

GetSvcHeaderOk returns a tuple with the SvcHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDescription) HasApiDef

func (o *ServiceDescription) HasApiDef() bool

HasApiDef returns a boolean if a field has been set.

func (*ServiceDescription) HasDatabaseNames

func (o *ServiceDescription) HasDatabaseNames() bool

HasDatabaseNames returns a boolean if a field has been set.

func (*ServiceDescription) HasDatastoreNames

func (o *ServiceDescription) HasDatastoreNames() bool

HasDatastoreNames returns a boolean if a field has been set.

func (*ServiceDescription) HasPort

func (o *ServiceDescription) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ServiceDescription) HasRpcEndpoints

func (o *ServiceDescription) HasRpcEndpoints() bool

HasRpcEndpoints returns a boolean if a field has been set.

func (*ServiceDescription) HasSvcHeader

func (o *ServiceDescription) HasSvcHeader() bool

HasSvcHeader returns a boolean if a field has been set.

func (ServiceDescription) MarshalJSON

func (o ServiceDescription) MarshalJSON() ([]byte, error)

func (*ServiceDescription) SetApiDef

func (o *ServiceDescription) SetApiDef(v string)

SetApiDef gets a reference to the given string and assigns it to the ApiDef field.

func (*ServiceDescription) SetDatabaseNames

func (o *ServiceDescription) SetDatabaseNames(v []string)

SetDatabaseNames gets a reference to the given []string and assigns it to the DatabaseNames field.

func (*ServiceDescription) SetDatastoreNames

func (o *ServiceDescription) SetDatastoreNames(v []string)

SetDatastoreNames gets a reference to the given []string and assigns it to the DatastoreNames field.

func (*ServiceDescription) SetPort

func (o *ServiceDescription) SetPort(v string)

SetPort gets a reference to the given string and assigns it to the Port field.

func (*ServiceDescription) SetRpcEndpoints

func (o *ServiceDescription) SetRpcEndpoints(v []string)

SetRpcEndpoints gets a reference to the given []string and assigns it to the RpcEndpoints field.

func (*ServiceDescription) SetSvcHeader

func (o *ServiceDescription) SetSvcHeader(v ServiceHeader)

SetSvcHeader gets a reference to the given ServiceHeader and assigns it to the SvcHeader field.

func (ServiceDescription) ToMap

func (o ServiceDescription) ToMap() (map[string]interface{}, error)

type ServiceHeader

type ServiceHeader struct {
	ProjEnvHeader *ProjEnvHeader `json:"projEnvHeader,omitempty"`
	ServiceName   *string        `json:"serviceName,omitempty"`
}

ServiceHeader struct for ServiceHeader

func NewServiceHeader

func NewServiceHeader() *ServiceHeader

NewServiceHeader instantiates a new ServiceHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceHeaderWithDefaults

func NewServiceHeaderWithDefaults() *ServiceHeader

NewServiceHeaderWithDefaults instantiates a new ServiceHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceHeader) GetProjEnvHeader

func (o *ServiceHeader) GetProjEnvHeader() ProjEnvHeader

GetProjEnvHeader returns the ProjEnvHeader field value if set, zero value otherwise.

func (*ServiceHeader) GetProjEnvHeaderOk

func (o *ServiceHeader) GetProjEnvHeaderOk() (*ProjEnvHeader, bool)

GetProjEnvHeaderOk returns a tuple with the ProjEnvHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceHeader) GetServiceName

func (o *ServiceHeader) GetServiceName() string

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*ServiceHeader) GetServiceNameOk

func (o *ServiceHeader) GetServiceNameOk() (*string, bool)

GetServiceNameOk returns a tuple with the ServiceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceHeader) HasProjEnvHeader

func (o *ServiceHeader) HasProjEnvHeader() bool

HasProjEnvHeader returns a boolean if a field has been set.

func (*ServiceHeader) HasServiceName

func (o *ServiceHeader) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (ServiceHeader) MarshalJSON

func (o ServiceHeader) MarshalJSON() ([]byte, error)

func (*ServiceHeader) SetProjEnvHeader

func (o *ServiceHeader) SetProjEnvHeader(v ProjEnvHeader)

SetProjEnvHeader gets a reference to the given ProjEnvHeader and assigns it to the ProjEnvHeader field.

func (*ServiceHeader) SetServiceName

func (o *ServiceHeader) SetServiceName(v string)

SetServiceName gets a reference to the given string and assigns it to the ServiceName field.

func (ServiceHeader) ToMap

func (o ServiceHeader) ToMap() (map[string]interface{}, error)

type ServiceRunnerAPIService

type ServiceRunnerAPIService service

ServiceRunnerAPIService ServiceRunnerAPI service

func (*ServiceRunnerAPIService) CreateApiKey

CreateApiKey Method for CreateApiKey

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateApiKeyRequest

func (*ServiceRunnerAPIService) CreateApiKeyExecute

Execute executes the request

@return CreateApiKeyReply

func (*ServiceRunnerAPIService) CreateDeployment

CreateDeployment Method for CreateDeployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateDeploymentRequest

func (*ServiceRunnerAPIService) CreateDeploymentExecute

Execute executes the request

@return CreateDeploymentReply

func (*ServiceRunnerAPIService) CreateEnvironment

CreateEnvironment Method for CreateEnvironment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateEnvironmentRequest

func (*ServiceRunnerAPIService) CreateEnvironmentExecute

Execute executes the request

@return CreateEnvironmentReply

func (*ServiceRunnerAPIService) CreateProject

CreateProject Method for CreateProject

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateProjectRequest

func (*ServiceRunnerAPIService) CreateProjectExecute

Execute executes the request

@return CreateProjectReply

func (*ServiceRunnerAPIService) DeactivateProject

DeactivateProject Method for DeactivateProject

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeactivateProjectRequest

func (*ServiceRunnerAPIService) DeactivateProjectExecute

Execute executes the request

@return DeactivateProjectReply

func (*ServiceRunnerAPIService) DeleteApiKey

DeleteApiKey Method for DeleteApiKey

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteApiKeyRequest

func (*ServiceRunnerAPIService) DeleteApiKeyExecute

Execute executes the request

@return DeleteApiKeyReply

func (*ServiceRunnerAPIService) DeleteEnvironment

DeleteEnvironment Method for DeleteEnvironment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteEnvironmentRequest

func (*ServiceRunnerAPIService) DeleteEnvironmentExecute

Execute executes the request

@return DeleteEnvironmentReply

func (*ServiceRunnerAPIService) DeletePackage

DeletePackage Method for DeletePackage

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeletePackageRequest

func (*ServiceRunnerAPIService) DeletePackageExecute

Execute executes the request

@return DeletePackageReply

func (*ServiceRunnerAPIService) DeleteProject

DeleteProject Method for DeleteProject

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteProjectRequest

func (*ServiceRunnerAPIService) DeleteProjectExecute

Execute executes the request

@return DeleteProjectReply

func (*ServiceRunnerAPIService) DescribeApiKey

DescribeApiKey Method for DescribeApiKey

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeApiKeyRequest

func (*ServiceRunnerAPIService) DescribeApiKeyExecute

Execute executes the request

@return DescribeApiKeyReply

func (*ServiceRunnerAPIService) DescribeDatabase

DescribeDatabase Method for DescribeDatabase

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeDatabaseRequest

func (*ServiceRunnerAPIService) DescribeDatabaseExecute

Execute executes the request

@return DescribeDatabaseReply

func (*ServiceRunnerAPIService) DescribeDatastore

DescribeDatastore Method for DescribeDatastore

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeDatastoreRequest

func (*ServiceRunnerAPIService) DescribeDatastoreExecute

Execute executes the request

@return DescribeDatastoreReply

func (*ServiceRunnerAPIService) DescribeDeployment

DescribeDeployment Method for DescribeDeployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeDeploymentRequest

func (*ServiceRunnerAPIService) DescribeDeploymentExecute

Execute executes the request

@return DescribeDeploymentReply

func (*ServiceRunnerAPIService) DescribeEnvironment

DescribeEnvironment Method for DescribeEnvironment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeEnvironmentRequest

func (*ServiceRunnerAPIService) DescribeEnvironmentExecute

Execute executes the request

@return DescribeEnvironmentReply

func (*ServiceRunnerAPIService) DescribePackage

DescribePackage Method for DescribePackage

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribePackageRequest

func (*ServiceRunnerAPIService) DescribePackageExecute

Execute executes the request

@return DescribePackageReply

func (*ServiceRunnerAPIService) DescribeProject

DescribeProject Method for DescribeProject

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeProjectRequest

func (*ServiceRunnerAPIService) DescribeProjectExecute

Execute executes the request

@return DescribeProjectReply

func (*ServiceRunnerAPIService) DescribeService

DescribeService Method for DescribeService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeServiceRequest

func (*ServiceRunnerAPIService) DescribeServiceExecute

Execute executes the request

@return DescribeServiceReply

func (*ServiceRunnerAPIService) DescribeSite

DescribeSite Method for DescribeSite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDescribeSiteRequest

func (*ServiceRunnerAPIService) DescribeSiteExecute

Execute executes the request

@return DescribeSiteReply

func (*ServiceRunnerAPIService) GetLogs

GetLogs Method for GetLogs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetLogsRequest

func (*ServiceRunnerAPIService) GetLogsExecute

Execute executes the request

@return GetLogsReply

func (*ServiceRunnerAPIService) GetMetricSamples

GetMetricSamples Method for GetMetricSamples

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMetricSamplesRequest

func (*ServiceRunnerAPIService) GetMetricSamplesExecute

Execute executes the request

@return GetMetricSamplesReply

func (*ServiceRunnerAPIService) GetUploadURL

GetUploadURL Method for GetUploadURL

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUploadURLRequest

func (*ServiceRunnerAPIService) GetUploadURLExecute

Execute executes the request

@return GetUploadURLReply

func (*ServiceRunnerAPIService) ListApiKeys

ListApiKeys Method for ListApiKeys

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListApiKeysRequest

func (*ServiceRunnerAPIService) ListApiKeysExecute

Execute executes the request

@return ListApiKeysReply

func (*ServiceRunnerAPIService) ListDatabases

ListDatabases Method for ListDatabases

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDatabasesRequest

func (*ServiceRunnerAPIService) ListDatabasesExecute

Execute executes the request

@return ListDatabasesReply

func (*ServiceRunnerAPIService) ListDatastores

ListDatastores Method for ListDatastores

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDatastoresRequest

func (*ServiceRunnerAPIService) ListDatastoresExecute

Execute executes the request

@return ListDatastoresReply

func (*ServiceRunnerAPIService) ListDeployments

ListDeployments Method for ListDeployments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDeploymentsRequest

func (*ServiceRunnerAPIService) ListDeploymentsExecute

Execute executes the request

@return ListDeploymentsReply

func (*ServiceRunnerAPIService) ListEnvironments

ListEnvironments Method for ListEnvironments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListEnvironmentsRequest

func (*ServiceRunnerAPIService) ListEnvironmentsExecute

Execute executes the request

@return ListEnvironmentsReply

func (*ServiceRunnerAPIService) ListMetrics

ListMetrics Method for ListMetrics

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListMetricsRequest

func (*ServiceRunnerAPIService) ListMetricsExecute

Execute executes the request

@return ListMetricsReply

func (*ServiceRunnerAPIService) ListPackages

ListPackages Method for ListPackages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListPackagesRequest

func (*ServiceRunnerAPIService) ListPackagesExecute

Execute executes the request

@return ListPackagesReply

func (*ServiceRunnerAPIService) ListProjects

ListProjects Method for ListProjects

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListProjectsRequest

func (*ServiceRunnerAPIService) ListProjectsExecute

Execute executes the request

@return ListProjectsReply

func (*ServiceRunnerAPIService) ListServices

ListServices Method for ListServices

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListServicesRequest

func (*ServiceRunnerAPIService) ListServicesExecute

Execute executes the request

@return ListServicesReply

func (*ServiceRunnerAPIService) UploadPackage

UploadPackage Method for UploadPackage

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUploadPackageRequest

func (*ServiceRunnerAPIService) UploadPackageExecute

Execute executes the request

@return UploadPackageReply

type ServiceRunnerResult

type ServiceRunnerResult struct {
	Status       *ServiceRunnerStatus `json:"status,omitempty"`
	StatusDetail *string              `json:"statusDetail,omitempty"`
}

ServiceRunnerResult struct for ServiceRunnerResult

func NewServiceRunnerResult

func NewServiceRunnerResult() *ServiceRunnerResult

NewServiceRunnerResult instantiates a new ServiceRunnerResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceRunnerResultWithDefaults

func NewServiceRunnerResultWithDefaults() *ServiceRunnerResult

NewServiceRunnerResultWithDefaults instantiates a new ServiceRunnerResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceRunnerResult) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ServiceRunnerResult) GetStatusDetail

func (o *ServiceRunnerResult) GetStatusDetail() string

GetStatusDetail returns the StatusDetail field value if set, zero value otherwise.

func (*ServiceRunnerResult) GetStatusDetailOk

func (o *ServiceRunnerResult) GetStatusDetailOk() (*string, bool)

GetStatusDetailOk returns a tuple with the StatusDetail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceRunnerResult) GetStatusOk

func (o *ServiceRunnerResult) GetStatusOk() (*ServiceRunnerStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceRunnerResult) HasStatus

func (o *ServiceRunnerResult) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ServiceRunnerResult) HasStatusDetail

func (o *ServiceRunnerResult) HasStatusDetail() bool

HasStatusDetail returns a boolean if a field has been set.

func (ServiceRunnerResult) MarshalJSON

func (o ServiceRunnerResult) MarshalJSON() ([]byte, error)

func (*ServiceRunnerResult) SetStatus

func (o *ServiceRunnerResult) SetStatus(v ServiceRunnerStatus)

SetStatus gets a reference to the given ServiceRunnerStatus and assigns it to the Status field.

func (*ServiceRunnerResult) SetStatusDetail

func (o *ServiceRunnerResult) SetStatusDetail(v string)

SetStatusDetail gets a reference to the given string and assigns it to the StatusDetail field.

func (ServiceRunnerResult) ToMap

func (o ServiceRunnerResult) ToMap() (map[string]interface{}, error)

type ServiceRunnerStatus

type ServiceRunnerStatus string

ServiceRunnerStatus the model 'ServiceRunnerStatus'

const (
	INVALID            ServiceRunnerStatus = "STATUS_INVALID"
	OK                 ServiceRunnerStatus = "STATUS_OK"
	INTERNAL_ERR       ServiceRunnerStatus = "STATUS_INTERNAL_ERR"
	DNS_CONFLICT       ServiceRunnerStatus = "STATUS_DNS_CONFLICT"
	ACCT_LIMIT_REACHED ServiceRunnerStatus = "STATUS_ACCT_LIMIT_REACHED"
	EXISTS             ServiceRunnerStatus = "STATUS_EXISTS"
	NOT_EXISTS         ServiceRunnerStatus = "STATUS_NOT_EXISTS"
	INVALID_REQUEST    ServiceRunnerStatus = "STATUS_INVALID_REQUEST"
	UNKNOWN            ServiceRunnerStatus = "STATUS_UNKNOWN"
)

List of ServiceRunnerStatus

func NewServiceRunnerStatusFromValue

func NewServiceRunnerStatusFromValue(v string) (*ServiceRunnerStatus, error)

NewServiceRunnerStatusFromValue returns a pointer to a valid ServiceRunnerStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ServiceRunnerStatus) IsValid

func (v ServiceRunnerStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ServiceRunnerStatus) Ptr

Ptr returns reference to ServiceRunnerStatus value

func (*ServiceRunnerStatus) UnmarshalJSON

func (v *ServiceRunnerStatus) UnmarshalJSON(src []byte) error

type UploadPackageReply

type UploadPackageReply struct {
	Result *ServiceRunnerResult `json:"result,omitempty"`
	PkgId  *string              `json:"pkgId,omitempty"`
}

UploadPackageReply struct for UploadPackageReply

func NewUploadPackageReply

func NewUploadPackageReply() *UploadPackageReply

NewUploadPackageReply instantiates a new UploadPackageReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadPackageReplyWithDefaults

func NewUploadPackageReplyWithDefaults() *UploadPackageReply

NewUploadPackageReplyWithDefaults instantiates a new UploadPackageReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadPackageReply) GetPkgId

func (o *UploadPackageReply) GetPkgId() string

GetPkgId returns the PkgId field value if set, zero value otherwise.

func (*UploadPackageReply) GetPkgIdOk

func (o *UploadPackageReply) GetPkgIdOk() (*string, bool)

GetPkgIdOk returns a tuple with the PkgId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadPackageReply) GetResult

func (o *UploadPackageReply) GetResult() ServiceRunnerResult

GetResult returns the Result field value if set, zero value otherwise.

func (*UploadPackageReply) GetResultOk

func (o *UploadPackageReply) GetResultOk() (*ServiceRunnerResult, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadPackageReply) HasPkgId

func (o *UploadPackageReply) HasPkgId() bool

HasPkgId returns a boolean if a field has been set.

func (*UploadPackageReply) HasResult

func (o *UploadPackageReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (UploadPackageReply) MarshalJSON

func (o UploadPackageReply) MarshalJSON() ([]byte, error)

func (*UploadPackageReply) SetPkgId

func (o *UploadPackageReply) SetPkgId(v string)

SetPkgId gets a reference to the given string and assigns it to the PkgId field.

func (*UploadPackageReply) SetResult

func (o *UploadPackageReply) SetResult(v ServiceRunnerResult)

SetResult gets a reference to the given ServiceRunnerResult and assigns it to the Result field.

func (UploadPackageReply) ToMap

func (o UploadPackageReply) ToMap() (map[string]interface{}, error)

type UploadPackageRequest

type UploadPackageRequest struct {
	ProjId      *string `json:"projId,omitempty"`
	PackageXsum *string `json:"packageXsum,omitempty" validate:"regexp=^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$"`
	// package tarball content in .tar.xz format (limited to 6MiB);
	PackageTarballData *string `json:"packageTarballData,omitempty" validate:"regexp=^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$"`
	PackageTarballURL  *string `json:"packageTarballURL,omitempty"`
}

UploadPackageRequest struct for UploadPackageRequest

func NewUploadPackageRequest

func NewUploadPackageRequest() *UploadPackageRequest

NewUploadPackageRequest instantiates a new UploadPackageRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadPackageRequestWithDefaults

func NewUploadPackageRequestWithDefaults() *UploadPackageRequest

NewUploadPackageRequestWithDefaults instantiates a new UploadPackageRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadPackageRequest) GetPackageTarballData

func (o *UploadPackageRequest) GetPackageTarballData() string

GetPackageTarballData returns the PackageTarballData field value if set, zero value otherwise.

func (*UploadPackageRequest) GetPackageTarballDataOk

func (o *UploadPackageRequest) GetPackageTarballDataOk() (*string, bool)

GetPackageTarballDataOk returns a tuple with the PackageTarballData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadPackageRequest) GetPackageTarballURL

func (o *UploadPackageRequest) GetPackageTarballURL() string

GetPackageTarballURL returns the PackageTarballURL field value if set, zero value otherwise.

func (*UploadPackageRequest) GetPackageTarballURLOk

func (o *UploadPackageRequest) GetPackageTarballURLOk() (*string, bool)

GetPackageTarballURLOk returns a tuple with the PackageTarballURL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadPackageRequest) GetPackageXsum

func (o *UploadPackageRequest) GetPackageXsum() string

GetPackageXsum returns the PackageXsum field value if set, zero value otherwise.

func (*UploadPackageRequest) GetPackageXsumOk

func (o *UploadPackageRequest) GetPackageXsumOk() (*string, bool)

GetPackageXsumOk returns a tuple with the PackageXsum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadPackageRequest) GetProjId

func (o *UploadPackageRequest) GetProjId() string

GetProjId returns the ProjId field value if set, zero value otherwise.

func (*UploadPackageRequest) GetProjIdOk

func (o *UploadPackageRequest) GetProjIdOk() (*string, bool)

GetProjIdOk returns a tuple with the ProjId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadPackageRequest) HasPackageTarballData

func (o *UploadPackageRequest) HasPackageTarballData() bool

HasPackageTarballData returns a boolean if a field has been set.

func (*UploadPackageRequest) HasPackageTarballURL

func (o *UploadPackageRequest) HasPackageTarballURL() bool

HasPackageTarballURL returns a boolean if a field has been set.

func (*UploadPackageRequest) HasPackageXsum

func (o *UploadPackageRequest) HasPackageXsum() bool

HasPackageXsum returns a boolean if a field has been set.

func (*UploadPackageRequest) HasProjId

func (o *UploadPackageRequest) HasProjId() bool

HasProjId returns a boolean if a field has been set.

func (UploadPackageRequest) MarshalJSON

func (o UploadPackageRequest) MarshalJSON() ([]byte, error)

func (*UploadPackageRequest) SetPackageTarballData

func (o *UploadPackageRequest) SetPackageTarballData(v string)

SetPackageTarballData gets a reference to the given string and assigns it to the PackageTarballData field.

func (*UploadPackageRequest) SetPackageTarballURL

func (o *UploadPackageRequest) SetPackageTarballURL(v string)

SetPackageTarballURL gets a reference to the given string and assigns it to the PackageTarballURL field.

func (*UploadPackageRequest) SetPackageXsum

func (o *UploadPackageRequest) SetPackageXsum(v string)

SetPackageXsum gets a reference to the given string and assigns it to the PackageXsum field.

func (*UploadPackageRequest) SetProjId

func (o *UploadPackageRequest) SetProjId(v string)

SetProjId gets a reference to the given string and assigns it to the ProjId field.

func (UploadPackageRequest) ToMap

func (o UploadPackageRequest) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL